diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa9d277 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +build/ +dist/ +nbproject/private/ +target/ +cmake/ +pom.xml.asc +CMakeSettings.json +.vs/ +.project +.settings +.vscode/ +.classpath \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..55ce3d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +matrix: + include: + - language: cpp + addons: + apt: + packages: + - libxerces-c-dev + - valgrind + + script: + - mkdir build + - cd build + - cmake .. + - cmake --build . + - ctest . + - ctest -T memcheck . + - sudo make install + + - language: java + jdk: + - openjdk8 diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e84cb6c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,114 @@ +cmake_minimum_required (VERSION 3.6) +project (regxmllibc) +option(BUILD_SHARED_LIB Bool OFF) + +# Set build type +if(BUILD_SHARED_LIB) +set(LIB_TYPE SHARED) +if(WIN32 AND NOT CYGWIN) +set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) +endif(WIN32 AND NOT CYGWIN) +else(BUILD_SHARED_LIB) +set(LIB_TYPE STATIC) +add_definitions( -DUTILS_LIB_STATIC ) +endif(BUILD_SHARED_LIB) +message(STATUS "*** LIB_TYPE is ${LIB_TYPE}") + +include(FindXercesC) +find_package(XercesC REQUIRED) +if(NOT XercesC_LIBRARY_DEBUG) + if (XercesC_LIBRARY_RELEASE) + set(XercesC_LIBRARY_DEBUG ${XercesC_LIBRARY_RELEASE}) + message(WARNING "XercesC_LIBRARY_DEBUG library not found, setting XercesC_LIBRARY_DEBUG = XercesC_LIBRARY_RELEASE") + endif() +endif() + +include_directories( ${XercesC_INCLUDE_DIR} + src/main/cpp + ) + +# Append "_d" if debug lib. +set(CMAKE_DEBUG_POSTFIX _d) + +file(GLOB_RECURSE SRC_FILES src/main/cpp/*.cpp ) +file(GLOB_RECURSE INC_FILES src/main/cpp/*.h ) +add_library(${PROJECT_NAME} ${LIB_TYPE} ${SRC_FILES} ${INC_FILES}) + +set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 98) + +target_link_libraries ( ${PROJECT_NAME} optimized ${XercesC_LIBRARY_RELEASE} debug ${XercesC_LIBRARY_DEBUG} ) + +# Set Visual Studio filters for nested sourcce paths +foreach(source IN LISTS SRC_FILES INC_FILES) + file(RELATIVE_PATH rel_source ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/com/ ${source}) + get_filename_component(source_path ${rel_source} DIRECTORY) + string(REPLACE "\\" "/" source_path_msvc "${source_path}") + source_group("${source_path_msvc}" FILES "${source}") +endforeach() + +if(WIN32 AND NOT CYGWIN) + set(DEF_INSTALL_CMAKE_DIR CMake) +else() + set(DEF_INSTALL_CMAKE_DIR lib/CMake/${PROJECT_NAME}) +endif() +set(INSTALL_CMAKE_DIR ${DEF_INSTALL_CMAKE_DIR} CACHE PATH + "Installation directory for CMake files") +set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries") +set(INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files") + +# Make relative paths absolute (needed later on) +foreach(p LIB BIN INCLUDE CMAKE) + set(var INSTALL_${p}_DIR) + if(NOT IS_ABSOLUTE "${${var}}") + set(${var} "${CMAKE_INSTALL_PREFIX}/${${var}}") + endif() +endforeach() + +# Export the package for use from the build-tree +# (this registers the build-tree with a global CMake-registry) +export(PACKAGE ${PROJECT_NAME}) + +# Create the ${PROJECT_NAME}Config.cmake file in the install tree +file(RELATIVE_PATH REL_INCLUDE_DIR "${INSTALL_CMAKE_DIR}" "${INSTALL_INCLUDE_DIR}") +set(CONF_INCLUDE_DIRS "\${REGXMLLIBC_CMAKE_DIR}/${REL_INCLUDE_DIR}") +configure_file(${PROJECT_NAME}Config.cmake.in + "${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${PROJECT_NAME}Config.cmake" @ONLY) + + +install(EXPORT ${PROJECT_NAME}Targets DESTINATION + ${INSTALL_CMAKE_DIR} COMPONENT dev) + +install(TARGETS ${PROJECT_NAME} +EXPORT ${PROJECT_NAME}Targets DESTINATION ${INSTALL_LIB_DIR} +) + +foreach ( file ${INC_FILES} ) + get_filename_component( dir ${file} DIRECTORY ) + file(RELATIVE_PATH dir2 "${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp" ${dir}) + install( FILES ${file} DESTINATION "${INSTALL_INCLUDE_DIR}/${PROJECT_NAME}/${dir2}" ) +endforeach() + + +install(FILES + "${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${PROJECT_NAME}Config.cmake" + DESTINATION "${INSTALL_CMAKE_DIR}" COMPONENT dev) + +#unit tests + +enable_testing() + +#include(CTest) + +file( GLOB_RECURSE UNIT_TESTS src/test/cpp/*.cpp ) +file(COPY "src/test/resources" DESTINATION "${CMAKE_BINARY_DIR}") + +foreach( UNIT_TEST_PATH ${UNIT_TESTS} ) + get_filename_component(UNIT_TEST_NAME ${UNIT_TEST_PATH} NAME_WE) + + add_executable(${UNIT_TEST_NAME} ${UNIT_TEST_PATH} ) + + target_link_libraries( ${UNIT_TEST_NAME} regxmllibc ${XercesC_LIBRARY}) + add_test(${UNIT_TEST_NAME} ${UNIT_TEST_NAME} WORKINGDIRECTORY "${CMAKE_BINARY_DIR}") +endforeach( UNIT_TEST_PATH ${UNIT_TESTS} ) + +#install(DIRECTORY src/main/cpp/com DESTINATION include FILES_MATCHING PATTERN "*.h") diff --git a/CONTRIBUTING.txt b/CONTRIBUTING.txt new file mode 100644 index 0000000..eb6870e --- /dev/null +++ b/CONTRIBUTING.txt @@ -0,0 +1,11 @@ +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or + +(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or + +(c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. + +(d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved. + +Only contributions with a license compatible with the license at LICENSE.txt can be accepted. \ No newline at end of file diff --git a/CTestConfig.cmake b/CTestConfig.cmake new file mode 100644 index 0000000..48f8be8 --- /dev/null +++ b/CTestConfig.cmake @@ -0,0 +1 @@ +set(MEMORYCHECK_COMMAND_OPTIONS "--show-leak-kinds=definite --leak-check=full --error-exitcode=1") diff --git a/README.cmake.txt b/README.cmake.txt new file mode 100644 index 0000000..31b1769 --- /dev/null +++ b/README.cmake.txt @@ -0,0 +1,14 @@ +1 cmake options +-DBUILD_SHARED_LIB=(OFF|ON) default: OFF +-DCMAKE_BUILD_TYPE=(release|debug) default:release + +2 build options +make install or Visual Studio target INSTALL will install regxmllib + +3 using regxmllib in other applications +add +find_package(regxmllibc) +target_link_libraries(${EXECUTABLE} general regxmllibc) +to application's CMakeLists.txt + + diff --git a/README.txt b/README.txt index 02abba4..92c24fc 100644 --- a/README.txt +++ b/README.txt @@ -10,7 +10,7 @@ regxmllib is a collection of tools and libraries for the creation of RegXML (SMPTE ST 2001-1) representations of MXF header metadata (SMPTE ST 377-1). A RegXML Fragment example can be found at [1] -[1] /regxmllib/src/test/resources/reference-files +[1] src/test/resources/reference-files Two implementations of regxmllib are provided: @@ -45,18 +45,14 @@ REGXMLLIBJ Prerequisites ------------- -Java 7 language and SDK +Java 8 language and SDK -(recommended) Ant +Maven (recommended) Git -(recommended) Netbeans 8.0 - (recommended) SMPTE Metadata Registers (Types, Elements, Groups and Labels) -(optional) GnuPG, Maven and Maven Ant Task to deploy to OSSRH - Quick Start ----------- @@ -64,13 +60,13 @@ Quick Start The following outputs to path PATH_TO_FRAGMENT an XML representation of the header metadata of the MXF file at path PATH_TO_MXF_FILE -* build the 'jar' target using Netbeans or Ant, or run the Maven 'install' goal +* build the 'jar' target using Maven 'package' goal * choose one of the following: * OPTION 1 - * retrieve the four SMPTE Metadata Registers (see [2] above) + * retrieve the four SMPTE Metadata Registers (see [1] above) * build the metadictionaries from the SMPTE registers @@ -81,16 +77,25 @@ of the header metadata of the MXF file at path PATH_TO_MXF_FILE * retrieve metadictionaries from [3] - [3] https://github.com/sandflow/IMF/tree/master/registers + [3] https://github.com/sandflow/IMF/tree/master/dict * generate the RegXML fragment run java -cp com.sandflow.smpte.tools.RegXMLDump -all -d ... - -i PATH_TO_MXF_FILE > PATH_TO_FRAGMENT - -NOTE: Maven is only supported for testing and building the main project artifact, i.e. the JAR. Building -other artifacts requires Ant. - + -i > + +* (optional) generate XSDs for RegXML Fragments + + run java -cp com.sandflow.smpte.tools.GenerateDictionaryXMLSchema -d ... + -o + +* (optional) generate XSDs for SMPTE registers + + run java -cp com.sandflow.smpte.tools.GenerateXMLSchemaDocuments -cp + -d + + where is equal to com.sandflow.smpte.register.catsup.TypesRegisterModel, etc. + Architecture ------------ @@ -139,54 +144,6 @@ XMLRegistersToDict: converts XML-based SMPTE metadata registers to a RegXML meta GenerateXMLSchemaDocuments: generates XSDs for the SMPTE metadata registers GenerateDictionaryXMLSchema: generate XSDs for RegXML Fragments from the RegXML metadictionaries - - -Building Metadictionaries -------------------------- - -RegXML metadictionaries can be built directly from SMPTE metadata registers using the build -system. - -* store all four SMPTE registers at: - - /input/xml-registers/Elements.xml - /input/xml-registers/Types.xml - /input/xml-registers/Labels.xml - /input/xml-registers/Groups.xml - -* run the build-regxml-dict target - -* the metadictionaries are output at - - /output/regxml-dicts - - -Building RegXML XML Schemas ---------------------------- - -XML Schemas for RegXML Fragments can be built directly from SMPTE metadata registers -using the build system. - -* build the RegXML metadictionaries as described in BUILDING METADICTIONARIES - -* run the build-regxml-schemas target - -* the xml schemas are output at - - /output/regxml-schemas - - -Building Metadata Register Schemas ----------------------------------- - -The build-register-schemas build target can be used to generate XML Schemas for -SMPTE Metadata Registers directly from the classes at com.sandflow.smpte.register. - -* build the build-register-schemas target - -* the Metadata Register schemas are output at - - /output/register-schemas Unit Test @@ -196,12 +153,14 @@ Unit testing is performed by generating RegXML fragments from sample files locat at [1] and registers located at [2]. The resulting RegXML fragments are compared to reference RegXML fragments located at [3]. -Reference RegXML fragments can regenerated using by building the build-reference-test-files target. +[1] src/test/mxf-files +[2] src/test/registers +[3] src/test/regxml-files -[1] /regxmllib/src/test/sample-files -[2] /regxmllib/src/test/registers -[3] /regxmllib/src/test/reference-files +Reference RegXML fragments can regenerated by running the package goal with the build-reference-test-files profile: + mvn package -Pbuild-reference-files + Maven Artifacts --------------- @@ -239,7 +198,7 @@ regxmllibc generally follows the architecture and idioms of regxmllibj. Applications will typically call FragmentBuilder::fromTriplet() or MXFFragmentBuilder::fromInputStream(), and the unit test at [1] provides an example. -[1] /regxmllib/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp +[1] src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp regxmllibc does not however support the conversion of the SMPTE Metadata Registers to RegXML metadictionaries, and instead relies on the metadictionaries generated by @@ -253,72 +212,43 @@ As with regxmllibj, unit testing is performed by generating RegXML fragments fro at [1] and reference metadictionaries located at [2]. The resulting RegXML fragments are compared to reference RegXML fragments located at [3]. -[1] /regxmllib/src/test/sample-files -[2] /regxmllib/src/test/regxml-dicts -[3] /regxmllib/src/test/reference-files +[1] src/test/mxf-files +[2] src/test/regxml-dicts +[3] src/test/regxml-files DIRECTORIES AND NOTABLE FILES ============================= -/regxmllib Source code and build artifacts - -/regxmllib/build.xml Build script (Ant) - -/regxmllib/pom.xml Maven POM file (for building and deployment to OSSRH) - -/regxmllib/CMakeLists.txt CMake build file +build.xml Helper script (Ant) -/regxmllib/build.properties Constants, e.g. directory paths, used - by the build script +pom.xml Maven POM file -/regxmllib/nbproject Netbeans project files +CMakeLists.txt CMake build file -/regxmllib/build Output of the Ant build process - -/regxmllib/dist Location of the JAR output from the Ant build - process - -/regxmllib/target Output of the Maven build process, including the - JAR +target Output of the Maven build process, including the JAR -/regxmllib/src/java regxmllibj codebase +src/java regxmllibj codebase -/regxmllib/src/cpp regxmllibc codebase +src/cpp regxmllibc codebase -/regxmllib/src/main/config/repoversion.properties - Template Java properties file used to host the - a unique source code version generated using - git by the build system +src/main/config/repoversion.properties + Template Java properties file used to host the + a unique source code version generated using + git by the build system -/regxmllib/src/main/resources/reg.xsd - Common XML Schema definitions used when generating - XML Schemas for RegXML Fragments +src/main/resources/reg.xsd + Common XML Schema definitions used when generating + XML Schemas for RegXML Fragments -/regxmllib/src/test/resources/reference-files - Reference RegXML fragment used for unit testing +src/test/resources/regxml-files + Reference RegXML fragment used for unit testing -/regxmllib/src/test/resources/registers - Reference SMPTE registers used for unit testing +src/test/resources/registers + Reference SMPTE registers used for unit testing -/regxmllib/src/test/resources/sample-files - Sample MXF files used for unit testing +src/test/resources/mxf-files + Sample MXF files used for unit testing -/regxmllib/src/test/resources/regxml-dicts - Reference metadictionaries used for unit testing - -/output/register-schemas Stub directory containing XML Schemas - generated by the build system for the - SMPTE Metadata Registers - -/output/regxml-dicts Stub directory containing the RegXML metadictionaries - generated by the build system, from the SMPTE Metadata - Registers in /input/xml-registers - -/output/regxml-schemas Stub directory containing XML Schemas for RegXML Fragments - generated by the library from the RegXML metadictionaries - in /output/regxml-dicts - -/input/xml-registers Stub directory containing the (optional) - SMPTE Metadata Registers used to build - the metadictionaries +src/test/resources/regxml-dicts + Reference metadictionaries used for unit testing diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..0c30fbe --- /dev/null +++ b/build.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/input/.gitignore b/input/.gitignore deleted file mode 100644 index 466022a..0000000 --- a/input/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!xml-registers/ \ No newline at end of file diff --git a/input/xml-registers/.gitignore b/input/xml-registers/.gitignore deleted file mode 100644 index a3a0c8b..0000000 --- a/input/xml-registers/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/log4j.properties b/log4j.properties new file mode 100644 index 0000000..e5f1c83 --- /dev/null +++ b/log4j.properties @@ -0,0 +1 @@ +com.sandflow=SEVERE \ No newline at end of file diff --git a/output/register-schemas/.gitignore b/output/register-schemas/.gitignore deleted file mode 100644 index a3a0c8b..0000000 --- a/output/register-schemas/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/output/regxml-dicts/.gitignore b/output/regxml-dicts/.gitignore deleted file mode 100644 index a3a0c8b..0000000 --- a/output/regxml-dicts/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/output/regxml-schemas/.gitignore b/output/regxml-schemas/.gitignore deleted file mode 100644 index a3a0c8b..0000000 --- a/output/regxml-schemas/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1321ce4 --- /dev/null +++ b/pom.xml @@ -0,0 +1,215 @@ + + 4.0.0 + + com.sandflow + regxmllib + 1.1.4-SNAPSHOT + jar + + + 1.8 + 1.8 + UTF-8 + ${basedir}/src/main/config + ${basedir}/src/main/resources + ${basedir}/src/test/resources + + + regxmllib + https://github.com/sandflow/regxmllib + Tools and libraries for the creation of RegXML (SMPTE ST 2001-1) representations of MXF header metadata (SMPTE ST 377-1). + + + + BSD 2-clause "Simplified" License + http://choosealicense.com/licenses/bsd-2-clause/ + repo + + + + + + Pierre-Anthony Lemieux + pal@palemieux.com + + + + + scm:git:https://github.com/sandflow/regxmllib.git + scm:git:https://github.com/sandflow/regxmllib.git + https://github.com/sandflow/regxmllib.git + + + + Sandflow Consulting LLC + http://www.sandflow.com + + + + + junit + junit + 4.12 + test + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + + create + + + + + + maven-surefire-plugin + 3.0.0-M1 + + + log4j.properties + + + + + + + config + ${com.sandflow.config.dir} + true + + + resources + ${com.sandflow.resources.dir} + + + + + + + build-reference-files + + true + + + + javax.xml.bind + jaxb-api + 2.3.1 + runtime + + + com.sun.xml.bind + jaxb-impl + 2.3.1 + runtime + + + com.sun.xml.bind + jaxb-core + 2.3.0.1 + runtime + + + + + + maven-antrun-plugin + 1.8 + + + package + + + + + + + + + run + + + + + + + + + release + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + \ No newline at end of file diff --git a/regxmllib/.gitignore b/regxmllib/.gitignore deleted file mode 100644 index 766a5d9..0000000 --- a/regxmllib/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -/build/ -/dist/ -/nbproject/private/ -/target/ -/cmake/ -pom.xml.asc -CMakeSettings.json -/.vs/ \ No newline at end of file diff --git a/regxmllib/CMakeLists.txt b/regxmllib/CMakeLists.txt deleted file mode 100644 index 394c957..0000000 --- a/regxmllib/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ -cmake_minimum_required (VERSION 3.5) -project (regxmllibc) - -include(FindXercesC) -find_package(XercesC REQUIRED) -include_directories( ${XercesC_INCLUDE_DIR} - src/main/cpp - ) - - -file(GLOB_RECURSE SRC_FILES src/main/cpp/*.cpp src/main/cpp/*.h ) -add_library(${PROJECT_NAME} ${SRC_FILES}) -install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) -set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 98) - - - -target_link_libraries ( ${PROJECT_NAME} ${XercesC_LIBRARY} ) - -foreach(source IN LISTS SRC_FILES) - file(RELATIVE_PATH rel_source ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/com/ ${source}) - get_filename_component(source_path ${rel_source} DIRECTORY) - string(REPLACE "\\" "/" source_path_msvc "${source_path}") - source_group("${source_path_msvc}" FILES "${source}") -endforeach() - - - -#unit tests - -enable_testing() - -file( GLOB_RECURSE UNIT_TESTS src/test/cpp/*.cpp ) -file(COPY "src/test/resources" DESTINATION "${CMAKE_BINARY_DIR}") - -foreach( UNIT_TEST_PATH ${UNIT_TESTS} ) - get_filename_component(UNIT_TEST_NAME ${UNIT_TEST_PATH} NAME_WE) - - add_executable(${UNIT_TEST_NAME} ${UNIT_TEST_PATH} ) - - target_link_libraries( ${UNIT_TEST_NAME} regxmllibc ${XercesC_LIBRARY}) - add_test(${UNIT_TEST_NAME} ${UNIT_TEST_NAME} WORKINGDIRECTORY "${CMAKE_BINARY_DIR}") -endforeach( UNIT_TEST_PATH ${UNIT_TESTS} ) - -#add_executable(AUIDTest src/test/cpp/com/sandflow/smpte/util/AUIDTest.cpp) -#target_link_libraries(AUIDTest regxmllibc) -#add_test(AUIDTest AUIDTest) - -install(DIRECTORY src/main/cpp/com/sandflow DESTINATION include FILES_MATCHING PATTERN "*.h") diff --git a/regxmllib/build.properties b/regxmllib/build.properties deleted file mode 100644 index 362545a..0000000 --- a/regxmllib/build.properties +++ /dev/null @@ -1,13 +0,0 @@ -register.dir=../input/xml-registers -elements.register=${register.dir}/Elements.xml -types.register=${register.dir}/Types.xml -labels.register=${register.dir}/Labels.xml -groups.register=${register.dir}/Groups.xml -register.schema.dir=../output/register-schemas -dict.schema.dir=../output/regxml-schemas -dict.dir=../output/regxml-dicts -main.config.dir=src/main/config -main.resources.dir=src/main/resources -test.resources.dir=src/test/resources -repoversion.dir=${main.config.dir} -repoversion.name=repoversion.properties \ No newline at end of file diff --git a/regxmllib/build.xml b/regxmllib/build.xml deleted file mode 100644 index 35529e9..0000000 --- a/regxmllib/build.xml +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - - - - - Build scripts for regxmllib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/regxmllib/nbproject/build-impl.xml b/regxmllib/nbproject/build-impl.xml deleted file mode 100644 index d8b64c8..0000000 --- a/regxmllib/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.java.dir - Must set test.java.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/regxmllib/nbproject/genfiles.properties b/regxmllib/nbproject/genfiles.properties deleted file mode 100644 index a8904af..0000000 --- a/regxmllib/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=7d96b106 -build.xml.script.CRC32=ca51d1c4 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=a6d704c1 -nbproject/build-impl.xml.script.CRC32=73756721 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/regxmllib/nbproject/project.properties b/regxmllib/nbproject/project.properties deleted file mode 100644 index ccf65fa..0000000 --- a/regxmllib/nbproject/project.properties +++ /dev/null @@ -1,100 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -application.title=regxmllib -application.vendor=pal -auxiliary.com-junichi11-netbeans-changelf.use-global=false -auxiliary.com-junichi11-netbeans-changelf.use-project=true -auxiliary.org-netbeans-spi-editor-hints-projects.perProjectHintSettingsFile=nbproject/cfg_hints.xml -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/regxmllib.jar -dist.javadoc.dir=${dist.dir}/javadoc -endorsed.classpath=\ - ${libs.JAXB-ENDORSED.classpath} -excludes= -file.reference.src-test=src/test -includes=** -jar.archive.disabled=${jnlp.enabled} -jar.compress=false -jar.index=${jnlp.enabled} -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs=-Xlint:unchecked -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir}:\ - ${libs.junit.classpath} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -jaxbwiz.gensrc.classpath=${libs.jaxb.classpath} -jaxbwiz.xjcdef.classpath=${libs.jaxb.classpath} -jaxbwiz.xjcrun.classpath=${libs.jaxb.classpath} -jnlp.codebase.type=no.codebase -jnlp.descriptor=application -jnlp.enabled=false -jnlp.mixed.code=default -jnlp.offline-allowed=false -jnlp.signed=false -jnlp.signing= -jnlp.signing.alias= -jnlp.signing.keystore= -# Optional override of default Codebase manifest attribute, use to prevent RIAs from being repurposed -manifest.custom.codebase= -# Optional override of default Permissions manifest attribute (supported values: sandbox, all-permissions) -manifest.custom.permissions= -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=true -platform.active=default_platform -project.license=bsd -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir}:\ - ${file.reference.src-test} -source.encoding=UTF-8 -main.class=com.sandflow.smpte.tools.RegXMLDump -src.java.dir=src\\main\\java -test.java.dir=src\\test\\java diff --git a/regxmllib/nbproject/project.xml b/regxmllib/nbproject/project.xml deleted file mode 100644 index 3f8e40e..0000000 --- a/regxmllib/nbproject/project.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - - regxmllib - - - - - - - - - diff --git a/regxmllib/pom.xml b/regxmllib/pom.xml deleted file mode 100644 index 67f630b..0000000 --- a/regxmllib/pom.xml +++ /dev/null @@ -1,91 +0,0 @@ - - 4.0.0 - - com.sandflow - regxmllib - 1.1.2-SNAPSHOT - jar - - - 1.7 - 1.7 - UTF-8 - - - regxmllib - https://github.com/sandflow/regxmllib - Tools and libraries for the creation of RegXML (SMPTE ST 2001-1) representations of MXF header metadata (SMPTE ST 377-1). - - - - BSD 2-clause "Simplified" License - http://choosealicense.com/licenses/bsd-2-clause/ - repo - - - - - - Pierre-Anthony Lemieux - pal@sandflow.com - Sandflow Consulting LLC - http://www.sandflow.com - - - - - scm:git:https://github.com/sandflow/regxmllib.git - scm:git:https://github.com/sandflow/regxmllib.git - https://github.com/sandflow/regxmllib.git - - - - Sandflow Consulting LLC - http://www.sandflow.com - - - - - junit - junit - 3.8.2 - test - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.1 - - - - create - - - - - - - - config - ${basedir}/src/main/config - true - - - resources - ${basedir}/src/main/resources - - - - - resources - ${basedir}/src/test/resources - - - - - \ No newline at end of file diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml b/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml deleted file mode 100644 index afff397..0000000 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml +++ /dev/null @@ -1,28 +0,0 @@ - - -urn:uuid:3c1f888d-e658-5f03-7fe0-c96d7c354c75 -http://www.smpte-ra.org/reg/395/2014 - - -urn:smpte:ul:060e2b34.027f0101.0c020101.01010000 -LensUnitAcquisitionMetadata -Lens Unit Acquisition Metadata -Lens Unit Acquisition Metadata -true - - -urn:smpte:ul:060e2b34.027f0101.0c020101.02010000 -CameraUnitAcquisitionMetadata -Camera Unit Acquisition Metadata -Camera Unit Acquisition Metadata -true - - -urn:smpte:ul:060e2b34.027f0101.0c020101.7f010000 -UserDefinedAcquisitionMetadata -UserDefinedAcquisitionMetadata -UserDefinedAcquisitionMetadata -true - - - diff --git a/regxmllibcConfig.cmake.in b/regxmllibcConfig.cmake.in new file mode 100644 index 0000000..b922d72 --- /dev/null +++ b/regxmllibcConfig.cmake.in @@ -0,0 +1,18 @@ +# REGXMLLIBC_INCLUDE_DIRS - include directories for regxmllibc +# REGXMLLIBC_LIBRARIES - libraries to link against + +# Compute paths +get_filename_component(REGXMLLIBC_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +# set(regxmllibc_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@/regxmllibc") +set(REGXMLLIBC_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@/regxmllibc") + +# Our library dependencies (contains definitions for IMPORTED targets) +if(NOT TARGET regxmllibc AND NOT regxmllibc_BINARY_DIR) + include("${REGXMLLIBC_CMAKE_DIR}/regxmllibcTargets.cmake") +endif() + +# These are IMPORTED targets created by regxmllibcTargets.cmake +set(REGXMLLIBC_LIBRARIES + "$<$>:${PROJECT_NAME}>" + "$<$:${PROJECT_NAME}${CMAKE_DEBUG_POSTFIX}>" +) diff --git a/regxmllib/src/main/config/repoversion.properties b/src/main/config/repoversion.properties similarity index 100% rename from regxmllib/src/main/config/repoversion.properties rename to src/main/config/repoversion.properties diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/Group.h b/src/main/cpp/com/sandflow/smpte/klv/Group.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/Group.h rename to src/main/cpp/com/sandflow/smpte/klv/Group.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVException.h b/src/main/cpp/com/sandflow/smpte/klv/KLVException.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVException.h rename to src/main/cpp/com/sandflow/smpte/klv/KLVException.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp b/src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp similarity index 99% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp rename to src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp index 2e8a6bd..a49676a 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp +++ b/src/main/cpp/com/sandflow/smpte/klv/KLVStream.cpp @@ -102,7 +102,7 @@ namespace rxml { throw std::ios_base::failure("Max BER length exceeded"); } - unsigned char *buf = new unsigned char[bersz]; + unsigned char buf[8]; this->read((char*)buf, bersz); diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVStream.h b/src/main/cpp/com/sandflow/smpte/klv/KLVStream.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/KLVStream.h rename to src/main/cpp/com/sandflow/smpte/klv/KLVStream.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp b/src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp similarity index 95% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp rename to src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp index 7ed1a0c..510640d 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp +++ b/src/main/cpp/com/sandflow/smpte/klv/LocalSet.cpp @@ -61,14 +61,14 @@ namespace rxml { if (!t.getKey().isUL()) { - throw new KLVException("Triplet key " + rxml::to_string(t.getKey()) + " is not a UL"); + throw KLVException("Triplet key " + rxml::to_string(t.getKey()) + " is not a UL"); } UL ul = t.getKey().asUL(); if (!ul.isLocalSet()) { - throw new KLVException("Triplet with key " + rxml::to_string(t.getKey()) + " is not a Local Set"); + throw KLVException("Triplet with key " + rxml::to_string(t.getKey()) + " is not a Local Set"); } membuf mb((char*)t.getValue(), (char*)t.getValue() + t.getLength()); diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalSet.h b/src/main/cpp/com/sandflow/smpte/klv/LocalSet.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalSet.h rename to src/main/cpp/com/sandflow/smpte/klv/LocalSet.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalTagRegister.h b/src/main/cpp/com/sandflow/smpte/klv/LocalTagRegister.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/LocalTagRegister.h rename to src/main/cpp/com/sandflow/smpte/klv/LocalTagRegister.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.cpp b/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.cpp rename to src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.h b/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.h rename to src/main/cpp/com/sandflow/smpte/klv/MemoryTriplet.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/klv/Triplet.h b/src/main/cpp/com/sandflow/smpte/klv/Triplet.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/klv/Triplet.h rename to src/main/cpp/com/sandflow/smpte/klv/Triplet.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/FillItem.cpp b/src/main/cpp/com/sandflow/smpte/mxf/FillItem.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/FillItem.cpp rename to src/main/cpp/com/sandflow/smpte/mxf/FillItem.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/FillItem.h b/src/main/cpp/com/sandflow/smpte/mxf/FillItem.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/FillItem.h rename to src/main/cpp/com/sandflow/smpte/mxf/FillItem.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFException.h b/src/main/cpp/com/sandflow/smpte/mxf/MXFException.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFException.h rename to src/main/cpp/com/sandflow/smpte/mxf/MXFException.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.cpp b/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.cpp rename to src/main/cpp/com/sandflow/smpte/mxf/MXFStream.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.h b/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/MXFStream.h rename to src/main/cpp/com/sandflow/smpte/mxf/MXFStream.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp b/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp similarity index 95% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp rename to src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp index 77488c5..0ca610d 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp +++ b/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.cpp @@ -34,7 +34,7 @@ namespace rxml { if (!t.getKey().isUL()) { - throw new MXFException("Triplet key " + rxml::to_string(t.getKey()) + " is not a UL"); + throw MXFException("Triplet key " + rxml::to_string(t.getKey()) + " is not a UL"); } UL ul = t.getKey().asUL(); @@ -112,7 +112,7 @@ namespace rxml { this->essenceContainers = kis.readBatch(); } catch (std::exception e) { - throw new MXFException("Error reading partition pack"); + throw MXFException("Error reading partition pack"); } } diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.h b/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.h rename to src/main/cpp/com/sandflow/smpte/mxf/PartitionPack.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp b/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp similarity index 97% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp rename to src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp index 94c96ae..08fcd94 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp +++ b/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.cpp @@ -39,7 +39,7 @@ namespace rxml { unsigned long itemcount = kis.readUnsignedLong(); - unsigned long itemlength = kis.readUnsignedLong(); + kis.readUnsignedLong(); // item length for (unsigned long i = 0; i < itemcount; i++) { @@ -79,4 +79,4 @@ namespace rxml { return key.isUL() && KEY.equals(key.asUL(), UL::IGNORE_VERSION); } -} \ No newline at end of file +} diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.h b/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.h rename to src/main/cpp/com/sandflow/smpte/mxf/PrimerPack.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/Set.cpp b/src/main/cpp/com/sandflow/smpte/mxf/Set.cpp similarity index 97% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/Set.cpp rename to src/main/cpp/com/sandflow/smpte/mxf/Set.cpp index 37c3ffd..d19d00f 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/Set.cpp +++ b/src/main/cpp/com/sandflow/smpte/mxf/Set.cpp @@ -48,7 +48,7 @@ namespace rxml { if (!hasInstanceUID(g)) { - throw new MXFException("Group is missing an instance ID property"); + throw MXFException("Group is missing an instance ID property"); } diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/mxf/Set.h b/src/main/cpp/com/sandflow/smpte/mxf/Set.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/mxf/Set.h rename to src/main/cpp/com/sandflow/smpte/mxf/Set.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp b/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp similarity index 84% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp rename to src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp index a4bc46a..3098e53 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp +++ b/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.cpp @@ -26,6 +26,9 @@ #include "FragmentBuilder.h" #include "com/sandflow/smpte/util/IDAU.h" +#include +#include +#include namespace rxml { @@ -55,8 +58,10 @@ namespace rxml { const std::string FragmentBuilder::REGXML_NS = "http://sandflow.com/ns/SMPTEST2001-1/baseline"; const std::string FragmentBuilder::XMLNS_NS = "http://www.w3.org/2000/xmlns/"; + const std::string FragmentBuilder::ACTUALTYPE_ATTR = "actualType"; const std::string FragmentBuilder::UID_ATTR = "uid"; + const std::string FragmentBuilder::ESCAPE_ATTR = "escape"; const Definition * FragmentBuilder::findBaseTypeDefinition(const Definition * definition, const DefinitionResolver & defresolver) { @@ -110,9 +115,9 @@ namespace rxml { FragmentBuilder::FragmentBuilder(const DefinitionResolver & defresolver, const std::map& setresolver, const AUIDNameResolver * anameresolver, EventHandler * evthandler) : defresolver(defresolver), setresolver(setresolver), anameresolver(anameresolver), evthandler(evthandler) { } - DOMDocumentFragment * FragmentBuilder::fromTriplet(const Group & group, DOMDocument & document) { + xercesc::DOMDocumentFragment * FragmentBuilder::fromTriplet(const Group & group, xercesc::DOMDocument & document) { - DOMDocumentFragment *df = NULL; + xercesc::DOMDocumentFragment *df = NULL; try { @@ -125,7 +130,7 @@ namespace rxml { /* NOTE: Hack to clean-up namespace prefixes */ for (std::map::const_iterator it = this->nsprefixes.begin(); it != this->nsprefixes.end(); it++) { - ((DOMElement*)df->getFirstChild())->setAttributeNS(DOMHelper::fromUTF8(XMLNS_NS), DOMHelper::fromUTF8("xmlns:" + it->second), DOMHelper::fromUTF8(it->first)); + ((xercesc::DOMElement*)df->getFirstChild())->setAttributeNS(DOMHelper::fromUTF8(XMLNS_NS), DOMHelper::fromUTF8("xmlns:" + it->second), DOMHelper::fromUTF8(it->first)); } @@ -176,11 +181,11 @@ namespace rxml { } - void FragmentBuilder::addInformativeComment(DOMElement *element, std::string comment) { + void FragmentBuilder::addInformativeComment(xercesc::DOMElement *element, std::string comment) { element->appendChild(element->getOwnerDocument()->createComment(DOMHelper::fromUTF8(comment))); } - void FragmentBuilder::appendCommentWithAUIDName(AUID auid, DOMElement* elem) { + void FragmentBuilder::appendCommentWithAUIDName(AUID auid, xercesc::DOMElement* elem) { if (this->anameresolver != NULL) { const std::string *ename = this->anameresolver->getLocalName(auid); @@ -192,7 +197,7 @@ namespace rxml { } } - void FragmentBuilder::applyRule3(DOMNode * node, const Group & group) { + void FragmentBuilder::applyRule3(xercesc::DOMNode * node, const Group & group) { const Definition *definition = defresolver.getDefinition(group.getKey()); @@ -235,7 +240,7 @@ namespace rxml { /* create the element */ - DOMElement *objelem = node->getOwnerDocument()->createElementNS( + xercesc::DOMElement *objelem = node->getOwnerDocument()->createElementNS( DOMHelper::fromUTF8(definition->ns), DOMHelper::fromUTF8(definition->symbol) ); @@ -291,7 +296,7 @@ namespace rxml { } - DOMElement *elem = node->getOwnerDocument()->createElementNS( + xercesc::DOMElement *elem = node->getOwnerDocument()->createElementNS( DOMHelper::fromUTF8(itemdef->ns), DOMHelper::fromUTF8(itemdef->symbol) ); @@ -316,22 +321,22 @@ namespace rxml { const XMLCh* iid = objelem->getLastChild()->getTextContent(); /* look for identical instanceID in parent elements */ - DOMNode *parent = node; + xercesc::DOMNode *parent = node; - while (parent->getNodeType() == DOMNode::ELEMENT_NODE) { + while (parent->getNodeType() == xercesc::DOMNode::ELEMENT_NODE) { - for (DOMNode *n = parent->getFirstChild(); n != NULL; n = n->getNextSibling()) { + for (xercesc::DOMNode *n = parent->getFirstChild(); n != NULL; n = n->getNextSibling()) { - if (n->getNodeType() == DOMNode::ELEMENT_NODE - && XMLString::compareIString(iidname, n->getLocalName()) == 0 - && XMLString::compareIString(iidns, n->getNamespaceURI()) == 0 - && XMLString::compareIString(iid, n->getTextContent()) == 0) { + if (n->getNodeType() == xercesc::DOMNode::ELEMENT_NODE + && xercesc::XMLString::compareIString(iidname, n->getLocalName()) == 0 + && xercesc::XMLString::compareIString(iidns, n->getNamespaceURI()) == 0 + && xercesc::XMLString::compareIString(iid, n->getTextContent()) == 0) { CircularStrongReferenceError err(std::string(DOMHelper::toUTF8(iid)), "Group " + definition->symbol); evthandler->info(err); - addInformativeComment((DOMElement*)n, err.getReason()); + addInformativeComment((xercesc::DOMElement*)n, err.getReason()); return; } @@ -345,7 +350,7 @@ namespace rxml { /* add reg:uid if property is a unique ID */ if (((PropertyDefinition*)itemdef)->uniqueIdentifier.is_valid() && ((PropertyDefinition*)itemdef)->uniqueIdentifier.get()) { - DOMAttr *attr = node->getOwnerDocument()->createAttributeNS( + xercesc::DOMAttr *attr = node->getOwnerDocument()->createAttributeNS( DOMHelper::fromUTF8(REGXML_NS), DOMHelper::fromUTF8(UID_ATTR) ); @@ -361,7 +366,7 @@ namespace rxml { } - void FragmentBuilder::applyRule4(DOMElement * element, MXFInputStream & value, const PropertyDefinition * propdef) { + void FragmentBuilder::applyRule4(xercesc::DOMElement * element, MXFInputStream & value, const PropertyDefinition * propdef) { try { @@ -387,7 +392,7 @@ namespace rxml { addInformativeComment(element, err.getReason()); } else { - throw new FragmentBuilder::UnknownByteOrderError(ByteOrder_UL.to_string()); + throw FragmentBuilder::UnknownByteOrderError(ByteOrder_UL.to_string()); } } else { @@ -553,7 +558,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5(DOMElement * element, MXFInputStream & value, const Definition * definition) { + void FragmentBuilder::applyRule5(xercesc::DOMElement * element, MXFInputStream & value, const Definition * definition) { try { @@ -661,7 +666,7 @@ namespace rxml { } - void FragmentBuilder::readCharacters(DOMElement * element, MXFInputStream & value, const CharacterTypeDefinition * definition, bool isSingleChar) { + void FragmentBuilder::readCharacters(xercesc::DOMElement * element, MXFInputStream & value, const CharacterTypeDefinition * definition, bool isSingleChar) { std::vector sb; @@ -715,32 +720,73 @@ namespace rxml { ) ); - /*evthandler->error(err); + } - addInformativeComment(element, err.getReason()); + xercesc::TranscodeFromStr mxfchars((XMLByte*) sb.data(), sb.size(), codec.c_str()); + std::vector xmlchar; - return;*/ + /* do we need to use the escape mechanism specified in ST 2001-1? */ + bool isescaped = false; + + for (int i = 0; i < mxfchars.length(); i++) { + + XMLCh c = mxfchars.str()[i]; + + /* terminate on the first null character unless we are parsing a single character type */ + + if (c == 0 && (!isSingleChar)) break; + + if (c == 0x09 + || c == 0x0A + || (c >= 0x20 && c <= 0x23) + || c >= 0x25) { + + xmlchar.push_back(c); + + } else { + + isescaped = true; + + std::stringstream ss; + + /* c is guaranteed to be less than 0xFF */ + + ss << "$#x" << std::hex << c << ";"; + + std::copy(std::istream_iterator(ss), std::istream_iterator(), std::back_inserter(xmlchar)); + + } } - TranscodeFromStr xmlstr((XMLByte*)sb.data(), sb.size(), codec.c_str()); + if (isescaped) { - /* return if there is not text to add */ - if (xmlstr.length() == 0) return; + xercesc::DOMAttr *attr = element->getOwnerDocument()->createAttributeNS( + DOMHelper::fromUTF8(REGXML_NS), + DOMHelper::fromUTF8(ESCAPE_ATTR) + ); + + attr->setPrefix(DOMHelper::fromUTF8(getElementNSPrefix(REGXML_NS))); + attr->setTextContent(DOMHelper::fromUTF8("true")); + element->setAttributeNodeNS(attr); + + } + + xmlchar.push_back(0); - element->setTextContent(xmlstr.str()); + element->setTextContent(&(xmlchar[0])); } - void FragmentBuilder::applyRule5_1(DOMElement * element, MXFInputStream & value, const CharacterTypeDefinition * definition) { + void FragmentBuilder::applyRule5_1(xercesc::DOMElement * element, MXFInputStream & value, const CharacterTypeDefinition * definition) { - readCharacters(element, value, definition, false /* do not remove trailing zeroes for a single char */); + readCharacters(element, value, definition, true /* do not remove trailing zeroes for a single char */); } - void FragmentBuilder::applyRule5_2(DOMElement * element, MXFInputStream & value, const EnumerationTypeDefinition * definition) { + void FragmentBuilder::applyRule5_2(xercesc::DOMElement * element, MXFInputStream & value, const EnumerationTypeDefinition * definition) { const Definition *bdef = findBaseDefinition(defresolver.getDefinition(definition->elementType)); @@ -856,7 +902,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_3(DOMElement * element, MXFInputStream & value, const ExtendibleEnumerationTypeDefinition * definition) { + void FragmentBuilder::applyRule5_3(xercesc::DOMElement * element, MXFInputStream & value, const ExtendibleEnumerationTypeDefinition * definition) { UL ul = value.readUL(); @@ -868,7 +914,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_4(DOMElement * element, MXFInputStream & value, const FixedArrayTypeDefinition * definition) { + void FragmentBuilder::applyRule5_4(xercesc::DOMElement * element, MXFInputStream & value, const FixedArrayTypeDefinition * definition) { if (definition->identification.equals(UUID_UL)) { @@ -885,7 +931,7 @@ namespace rxml { } } - void FragmentBuilder::applyCoreRule5_4(DOMElement * element, MXFInputStream & value, const Definition * tdef, unsigned long elementcount) { + void FragmentBuilder::applyCoreRule5_4(xercesc::DOMElement * element, MXFInputStream & value, const Definition * tdef, unsigned long elementcount) { for (unsigned long i = 0; i < elementcount; i++) { @@ -897,7 +943,7 @@ namespace rxml { } else { /* Rule 5.4.2 */ - DOMElement *elem = element->getOwnerDocument()->createElementNS( + xercesc::DOMElement *elem = element->getOwnerDocument()->createElementNS( DOMHelper::fromUTF8(tdef->ns), DOMHelper::fromUTF8(tdef->symbol) ); @@ -912,7 +958,7 @@ namespace rxml { } } - void FragmentBuilder::applyRule5_5(DOMElement * element, MXFInputStream & value, const IndirectTypeDefinition * definition) { + void FragmentBuilder::applyRule5_5(xercesc::DOMElement * element, MXFInputStream & value, const IndirectTypeDefinition * definition) { /* see https://github.com/sandflow/regxmllib/issues/74 for a discussion on Indirect Type */ KLVStream::ByteOrder bo; @@ -957,7 +1003,7 @@ namespace rxml { } // create reg:actualType attribute - DOMAttr *attr = element->getOwnerDocument()->createAttributeNS( + xercesc::DOMAttr *attr = element->getOwnerDocument()->createAttributeNS( DOMHelper::fromUTF8(REGXML_NS), DOMHelper::fromUTF8(ACTUALTYPE_ATTR) ); @@ -971,7 +1017,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_6(DOMElement * element, MXFInputStream & value, const IntegerTypeDefinition * definition) { + void FragmentBuilder::applyRule5_6(xercesc::DOMElement * element, MXFInputStream & value, const IntegerTypeDefinition * definition) { switch (definition->size) { @@ -1064,7 +1110,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_7(DOMElement * element, MXFInputStream & value, const OpaqueTypeDefinition * definition) { + void FragmentBuilder::applyRule5_7(xercesc::DOMElement * element, MXFInputStream & value, const OpaqueTypeDefinition * definition) { /* NOTE: Opaque Types are not used in MXF */ throw FragmentBuilder::Exception("Opaque types are not supported."); @@ -1101,7 +1147,7 @@ namespace rxml { return sb.str(); } - void FragmentBuilder::applyRule5_8(DOMElement * element, MXFInputStream & value, const RecordTypeDefinition * definition) { + void FragmentBuilder::applyRule5_8(xercesc::DOMElement * element, MXFInputStream & value, const RecordTypeDefinition * definition) { if (definition->identification.equals(AUID_UL)) { @@ -1180,7 +1226,7 @@ namespace rxml { const Definition *itemdef = findBaseDefinition(defresolver.getDefinition(it->type)); - DOMElement *elem = element->getOwnerDocument()->createElementNS( + xercesc::DOMElement *elem = element->getOwnerDocument()->createElementNS( DOMHelper::fromUTF8(definition->ns), DOMHelper::fromUTF8(it->name) ); @@ -1197,7 +1243,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_9(DOMElement * element, MXFInputStream & value, const RenameTypeDefinition * definition) { + void FragmentBuilder::applyRule5_9(xercesc::DOMElement * element, MXFInputStream & value, const RenameTypeDefinition * definition) { const Definition *rdef = defresolver.getDefinition(definition->renamedType); @@ -1205,24 +1251,24 @@ namespace rxml { } - void FragmentBuilder::applyRule5_10(DOMElement * element, MXFInputStream & value, const SetTypeDefinition * definition) { + void FragmentBuilder::applyRule5_10(xercesc::DOMElement * element, MXFInputStream & value, const SetTypeDefinition * definition) { const Definition* tdef = findBaseDefinition(defresolver.getDefinition(definition->elementType)); unsigned long itemcount = value.readUnsignedLong(); - unsigned long itemlength = value.readUnsignedLong(); + value.readUnsignedLong(); // item length applyCoreRule5_4(element, value, tdef, (unsigned long)itemcount); } - void FragmentBuilder::applyRule5_11(DOMElement * element, MXFInputStream & value, const StreamTypeDefinition * definition) { + void FragmentBuilder::applyRule5_11(xercesc::DOMElement * element, MXFInputStream & value, const StreamTypeDefinition * definition) { throw FragmentBuilder::Exception("Rule 5.11 is not supported yet."); } - void FragmentBuilder::applyRule5_12(DOMElement * element, MXFInputStream & value, const StringTypeDefinition * definition) { + void FragmentBuilder::applyRule5_12(xercesc::DOMElement * element, MXFInputStream & value, const StringTypeDefinition * definition) { /* Rule 5.12 */ const Definition *chrdef = findBaseDefinition(defresolver.getDefinition(definition->elementType)); @@ -1246,12 +1292,12 @@ namespace rxml { element, value, (CharacterTypeDefinition*)chrdef, - true /* remove trailing zeroes */ + false /* remove trailing zeroes */ ); } - void FragmentBuilder::applyRule5_13(DOMElement * element, MXFInputStream & value, const StrongReferenceTypeDefinition * definition) { + void FragmentBuilder::applyRule5_13(xercesc::DOMElement * element, MXFInputStream & value, const StrongReferenceTypeDefinition * definition) { const Definition *tdef = findBaseDefinition(defresolver.getDefinition(definition->referencedType)); @@ -1289,7 +1335,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_beta(DOMElement * element, MXFInputStream & value, const LensSerialFloatTypeDefinition * definition) { + void FragmentBuilder::applyRule5_beta(xercesc::DOMElement * element, MXFInputStream & value, const LensSerialFloatTypeDefinition * definition) { throw FragmentBuilder::Exception("Lens serial floats not supported."); @@ -1318,7 +1364,7 @@ namespace rxml { return props; } - void FragmentBuilder::applyRule5_14(DOMElement * element, MXFInputStream & value, const VariableArrayTypeDefinition * definition) { + void FragmentBuilder::applyRule5_14(xercesc::DOMElement * element, MXFInputStream & value, const VariableArrayTypeDefinition * definition) { const Definition *tdef = findBaseDefinition(defresolver.getDefinition(definition->elementType)); @@ -1350,7 +1396,7 @@ namespace rxml { } else { unsigned long itemcount = value.readLong(); - unsigned long itemlength = value.readLong(); + value.readLong(); // item length applyCoreRule5_4(element, value, tdef, itemcount); } @@ -1359,7 +1405,7 @@ namespace rxml { } - void FragmentBuilder::applyRule5_15(DOMElement * element, MXFInputStream & value, const WeakReferenceTypeDefinition * typedefinition) { + void FragmentBuilder::applyRule5_15(xercesc::DOMElement * element, MXFInputStream & value, const WeakReferenceTypeDefinition * typedefinition) { const ClassDefinition *classdef = (ClassDefinition*)defresolver.getDefinition(typedefinition->referencedType); diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h b/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h similarity index 82% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h rename to src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h index ccae0ba..5e61d1d 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h +++ b/src/main/cpp/com/sandflow/smpte/regxml/FragmentBuilder.h @@ -65,8 +65,6 @@ #include -XERCES_CPP_NAMESPACE_USE - namespace rxml { class FragmentBuilder { @@ -337,7 +335,7 @@ namespace rxml { * @throws KLVException * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException */ - DOMDocumentFragment* fromTriplet(const Group &group, DOMDocument &document); + xercesc::DOMDocumentFragment* fromTriplet(const Group &group, xercesc::DOMDocument &document); private: @@ -371,6 +369,7 @@ namespace rxml { static const std::string XMLNS_NS; static const std::string UID_ATTR; static const std::string ACTUALTYPE_ATTR; + static const std::string ESCAPE_ATTR; /* METHODS */ @@ -386,49 +385,49 @@ namespace rxml { static std::string generateISO8601Date(int year, int month, int day); - void readCharacters(DOMElement *element, MXFInputStream &value, const CharacterTypeDefinition *definition, bool removeTrailingZeroes); + void readCharacters(xercesc::DOMElement *element, MXFInputStream &value, const CharacterTypeDefinition *definition, bool removeTrailingZeroes); - static void addInformativeComment(DOMElement * element, std::string comment); + static void addInformativeComment(xercesc::DOMElement * element, std::string comment); - void appendCommentWithAUIDName(AUID auid, DOMElement * elem); + void appendCommentWithAUIDName(AUID auid, xercesc::DOMElement * elem); - void applyRule3(DOMNode *node, const Group &group); + void applyRule3(xercesc::DOMNode *node, const Group &group); - void applyRule4(DOMElement *element, MXFInputStream &value, const PropertyDefinition *propdef); + void applyRule4(xercesc::DOMElement *element, MXFInputStream &value, const PropertyDefinition *propdef); - void applyRule5(DOMElement *element, MXFInputStream &value, const Definition *definition); + void applyRule5(xercesc::DOMElement *element, MXFInputStream &value, const Definition *definition); - void applyRule5_1(DOMElement *element, MXFInputStream &value, const CharacterTypeDefinition *definition); + void applyRule5_1(xercesc::DOMElement *element, MXFInputStream &value, const CharacterTypeDefinition *definition); - void applyRule5_2(DOMElement *element, MXFInputStream &value, const EnumerationTypeDefinition *definition); + void applyRule5_2(xercesc::DOMElement *element, MXFInputStream &value, const EnumerationTypeDefinition *definition); - void applyRule5_3(DOMElement *element, MXFInputStream &value, const ExtendibleEnumerationTypeDefinition* definition); + void applyRule5_3(xercesc::DOMElement *element, MXFInputStream &value, const ExtendibleEnumerationTypeDefinition* definition); - void applyRule5_4(DOMElement *element, MXFInputStream &value, const FixedArrayTypeDefinition *definition); + void applyRule5_4(xercesc::DOMElement *element, MXFInputStream &value, const FixedArrayTypeDefinition *definition); /* TODO: unsigned int or unsigned long for element count */ - void applyCoreRule5_4(DOMElement* element, MXFInputStream &value, const Definition *tdef, unsigned long elementcount); + void applyCoreRule5_4(xercesc::DOMElement* element, MXFInputStream &value, const Definition *tdef, unsigned long elementcount); - void applyRule5_5(DOMElement* element, MXFInputStream &value, const IndirectTypeDefinition *definition); + void applyRule5_5(xercesc::DOMElement* element, MXFInputStream &value, const IndirectTypeDefinition *definition); - void applyRule5_6(DOMElement *element, MXFInputStream &value, const IntegerTypeDefinition *definition); + void applyRule5_6(xercesc::DOMElement *element, MXFInputStream &value, const IntegerTypeDefinition *definition); - void applyRule5_7(DOMElement *element, MXFInputStream &value, const OpaqueTypeDefinition *definition); + void applyRule5_7(xercesc::DOMElement *element, MXFInputStream &value, const OpaqueTypeDefinition *definition); - void applyRule5_8(DOMElement *element, MXFInputStream &value, const RecordTypeDefinition *definition); + void applyRule5_8(xercesc::DOMElement *element, MXFInputStream &value, const RecordTypeDefinition *definition); - void applyRule5_9(DOMElement *element, MXFInputStream &value, const RenameTypeDefinition *definition); + void applyRule5_9(xercesc::DOMElement *element, MXFInputStream &value, const RenameTypeDefinition *definition); - void applyRule5_10(DOMElement *element, MXFInputStream &value, const SetTypeDefinition *definition); + void applyRule5_10(xercesc::DOMElement *element, MXFInputStream &value, const SetTypeDefinition *definition); - void applyRule5_11(DOMElement *element, MXFInputStream &value, const StreamTypeDefinition *definition); + void applyRule5_11(xercesc::DOMElement *element, MXFInputStream &value, const StreamTypeDefinition *definition); - void applyRule5_12(DOMElement *element, MXFInputStream &value, const StringTypeDefinition *definition); + void applyRule5_12(xercesc::DOMElement *element, MXFInputStream &value, const StringTypeDefinition *definition); - void applyRule5_13(DOMElement *element, MXFInputStream &value, const StrongReferenceTypeDefinition *definition); + void applyRule5_13(xercesc::DOMElement *element, MXFInputStream &value, const StrongReferenceTypeDefinition *definition); - /*void applyRule5_alpha(DOMElement *element, MXFInputStream &value, const FloatTypeDefinition *definition) { + /*void applyRule5_alpha(xercesc::DOMElement *element, MXFInputStream &value, const FloatTypeDefinition *definition) { double val = 0; @@ -452,11 +451,11 @@ namespace rxml { }*/ - void applyRule5_beta(DOMElement *element, MXFInputStream &value, const LensSerialFloatTypeDefinition *definition); + void applyRule5_beta(xercesc::DOMElement *element, MXFInputStream &value, const LensSerialFloatTypeDefinition *definition); - void applyRule5_14(DOMElement *element, MXFInputStream &value, const VariableArrayTypeDefinition *definition); + void applyRule5_14(xercesc::DOMElement *element, MXFInputStream &value, const VariableArrayTypeDefinition *definition); - void applyRule5_15(DOMElement *element, MXFInputStream &value, const WeakReferenceTypeDefinition *typedefinition); + void applyRule5_15(xercesc::DOMElement *element, MXFInputStream &value, const WeakReferenceTypeDefinition *typedefinition); /* MEMBERS */ diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp b/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp similarity index 98% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp rename to src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp index 7b0a344..9209186 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp +++ b/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.cpp @@ -146,12 +146,12 @@ namespace rxml { } - DOMDocumentFragment* MXFFragmentBuilder::fromInputStream( + xercesc::DOMDocumentFragment* MXFFragmentBuilder::fromInputStream( std::istream &mxfpartition, const DefinitionResolver &defresolver, const FragmentBuilder::AUIDNameResolver *enumnameresolver, const AUID *rootclasskey, - DOMDocument &document, + xercesc::DOMDocument &document, EventHandler *ev) { static const UL INDEX_TABLE_SEGMENT_UL = "urn:smpte:ul:060e2b34.02530101.0d010201.01100100"; diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h b/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h similarity index 98% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h rename to src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h index 6b2a156..44dcc38 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h +++ b/src/main/cpp/com/sandflow/smpte/regxml/MXFFragmentBuilder.h @@ -38,8 +38,6 @@ #include "com/sandflow/util/events/Event.h" #include "com/sandflow/util/strformat.h" -XERCES_CPP_NAMESPACE_USE - namespace rxml { @@ -172,12 +170,12 @@ namespace rxml { * * @return Document Fragment containing a single RegXML Fragment */ - static DOMDocumentFragment* fromInputStream( + static xercesc::DOMDocumentFragment* fromInputStream( std::istream &mxfpartition, const DefinitionResolver &defresolver, const FragmentBuilder::AUIDNameResolver *enumnameresolver, const AUID *rootclasskey, - DOMDocument &document, + xercesc::DOMDocument &document, EventHandler *ev = &NULL_EVENTHANDLER); }; diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/CharacterTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/CharacterTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/CharacterTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/CharacterTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/ClassDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/ClassDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/ClassDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/ClassDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h similarity index 98% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h index 69af6fc..97ab1d9 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h +++ b/src/main/cpp/com/sandflow/smpte/regxml/definitions/Definition.h @@ -36,7 +36,7 @@ namespace rxml { class DefinitionVisitor; struct Definition { - + virtual ~Definition() {} virtual void accept(DefinitionVisitor & v) const = 0; std::string symbol; @@ -48,4 +48,4 @@ namespace rxml { }; } -#endif \ No newline at end of file +#endif diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/DefinitionVisitor.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/DefinitionVisitor.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/DefinitionVisitor.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/DefinitionVisitor.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/EnumerationTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/EnumerationTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/EnumerationTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/EnumerationTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/ExtendibleEnumerationTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/ExtendibleEnumerationTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/ExtendibleEnumerationTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/ExtendibleEnumerationTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/FixedArrayTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/FixedArrayTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/FixedArrayTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/FixedArrayTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/IndirectTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/IndirectTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/IndirectTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/IndirectTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/IntegerTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/IntegerTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/IntegerTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/IntegerTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/LensSerialFloatTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/LensSerialFloatTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/LensSerialFloatTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/LensSerialFloatTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/OpaqueTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/OpaqueTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/OpaqueTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/OpaqueTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyAliasDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyAliasDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyAliasDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyAliasDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/PropertyDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/RecordTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/RecordTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/RecordTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/RecordTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/RenameTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/RenameTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/RenameTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/RenameTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/SetTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/SetTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/SetTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/SetTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StreamTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/StreamTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StreamTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/StreamTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StringTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/StringTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StringTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/StringTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StrongReferenceTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/StrongReferenceTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/StrongReferenceTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/StrongReferenceTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/VariableArrayTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/VariableArrayTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/VariableArrayTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/VariableArrayTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/WeakReferenceTypeDefinition.h b/src/main/cpp/com/sandflow/smpte/regxml/definitions/WeakReferenceTypeDefinition.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/definitions/WeakReferenceTypeDefinition.h rename to src/main/cpp/com/sandflow/smpte/regxml/definitions/WeakReferenceTypeDefinition.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/DefinitionResolver.h b/src/main/cpp/com/sandflow/smpte/regxml/dict/DefinitionResolver.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/DefinitionResolver.h rename to src/main/cpp/com/sandflow/smpte/regxml/dict/DefinitionResolver.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp b/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp similarity index 92% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp rename to src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp index 19b1c69..548bb67 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp +++ b/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.cpp @@ -95,6 +95,10 @@ namespace rxml { meta_dictionary.subclassesOf[parentauid].insert(def.identification); } + } else { + + delete def_copy; + } } @@ -111,6 +115,11 @@ namespace rxml { const AUID parentauid = MetaDictionary::createNormalizedAUID(def.memberOf); meta_dictionary.membersOf[parentauid].insert(def.identification); + + } else { + + delete def_copy; + } @@ -118,72 +127,69 @@ namespace rxml { virtual void visit(const PropertyAliasDefinition & def) { - Definition *def_copy = new PropertyAliasDefinition(def); - const AUID parentauid = MetaDictionary::createNormalizedAUID(def.memberOf); meta_dictionary.membersOf[parentauid].insert(def.identification); - } virtual void visit(const EnumerationTypeDefinition &def) { Definition *def_copy = new EnumerationTypeDefinition(def); - _visit(def_copy); + if (! _visit(def_copy)) delete def_copy; } virtual void visit(const CharacterTypeDefinition &def) { Definition *def_copy = new CharacterTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const RenameTypeDefinition & def) { Definition *def_copy = new RenameTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const RecordTypeDefinition & def) { Definition *def_copy = new RecordTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const StringTypeDefinition & def) { Definition *def_copy = new StringTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const LensSerialFloatTypeDefinition & def) { Definition *def_copy = new LensSerialFloatTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const IntegerTypeDefinition & def) { Definition *def_copy = new IntegerTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const StrongReferenceTypeDefinition & def) { Definition *def_copy = new StrongReferenceTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const WeakReferenceTypeDefinition & def) { Definition *def_copy = new WeakReferenceTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const ExtendibleEnumerationTypeDefinition & def) { Definition *def_copy = new ExtendibleEnumerationTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const VariableArrayTypeDefinition & def) { @@ -195,31 +201,31 @@ namespace rxml { virtual void visit(const FixedArrayTypeDefinition & def) { Definition *def_copy = new FixedArrayTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const OpaqueTypeDefinition & def) { Definition *def_copy = new OpaqueTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const IndirectTypeDefinition & def) { Definition *def_copy = new IndirectTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const StreamTypeDefinition & def) { Definition *def_copy = new StreamTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } virtual void visit(const SetTypeDefinition & def) { Definition *def_copy = new SetTypeDefinition(def); - _visit(def_copy); + if (!_visit(def_copy)) delete def_copy; } private: diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.h b/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.h rename to src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionary.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.cpp b/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.cpp rename to src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.h b/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.h rename to src/main/cpp/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp b/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp similarity index 81% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp rename to src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp index aea9d2e..b859a94 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp +++ b/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.cpp @@ -95,7 +95,7 @@ namespace rxml { * @throws XMLImporter::Exception */ template void _readPropertyOfElement( - DOMElement *parent, + xercesc::DOMElement *parent, const char *namespaceURI, const char *localName, T& field, @@ -118,7 +118,7 @@ namespace rxml { } template void _readPropertyOfElement( - DOMElement *parent, + xercesc::DOMElement *parent, const char *namespaceURI, const char *localName, Optional& field, @@ -139,7 +139,7 @@ namespace rxml { } - void _readDefinition(DOMElement *element, Definition &def) { + void _readDefinition(xercesc::DOMElement *element, Definition &def) { _readPropertyOfElement(element, XML_NS.c_str(), "Identification", def.identification); @@ -149,7 +149,7 @@ namespace rxml { } - void _readClassDefinition(DOMElement *element, ClassDefinition &def) { + void _readClassDefinition(xercesc::DOMElement *element, ClassDefinition &def) { _readDefinition(element, def); @@ -158,14 +158,10 @@ namespace rxml { } - void _readPropertyDefinition(DOMElement *element, PropertyDefinition &def) { + void _readPropertyDefinition(xercesc::DOMElement *element, PropertyDefinition &def) { _readDefinition(element, def); - if (def.symbol == "FormatVersion") { - int b = 0; - } - _readPropertyOfElement(element, XML_NS.c_str(), "Type", def.type); _readPropertyOfElement(element, XML_NS.c_str(), "MemberOf", def.memberOf); _readPropertyOfElement(element, XML_NS.c_str(), "LocalIdentification", def.localIdentification); @@ -174,7 +170,7 @@ namespace rxml { } - void _readPropertyAliasDefinition(DOMElement *element, PropertyAliasDefinition &def) { + void _readPropertyAliasDefinition(xercesc::DOMElement *element, PropertyAliasDefinition &def) { _readPropertyDefinition(element, def); @@ -182,7 +178,7 @@ namespace rxml { } - void _readIntegerTypeDefinition(DOMElement *element, IntegerTypeDefinition &def) { + void _readIntegerTypeDefinition(xercesc::DOMElement *element, IntegerTypeDefinition &def) { _readDefinition(element, def); @@ -192,7 +188,7 @@ namespace rxml { } - void _readRenameTypeDefinition(DOMElement *element, RenameTypeDefinition &def) { + void _readRenameTypeDefinition(xercesc::DOMElement *element, RenameTypeDefinition &def) { _readDefinition(element, def); @@ -200,7 +196,7 @@ namespace rxml { } - void _readSetTypeDefinition(DOMElement *element, SetTypeDefinition &def) { + void _readSetTypeDefinition(xercesc::DOMElement *element, SetTypeDefinition &def) { _readDefinition(element, def); @@ -208,7 +204,7 @@ namespace rxml { } - void _readStringTypeDefinition(DOMElement *element, StringTypeDefinition &def) { + void _readStringTypeDefinition(xercesc::DOMElement *element, StringTypeDefinition &def) { _readDefinition(element, def); @@ -217,7 +213,7 @@ namespace rxml { } - void _readStrongReferenceTypeDefinition(DOMElement *element, StrongReferenceTypeDefinition &def) { + void _readStrongReferenceTypeDefinition(xercesc::DOMElement *element, StrongReferenceTypeDefinition &def) { _readDefinition(element, def); @@ -225,7 +221,7 @@ namespace rxml { } - void _readVariableTypeDefinition(DOMElement *element, VariableArrayTypeDefinition &def) { + void _readVariableTypeDefinition(xercesc::DOMElement *element, VariableArrayTypeDefinition &def) { _readDefinition(element, def); @@ -233,13 +229,13 @@ namespace rxml { } - void _readTypeDefinitionCharacter(DOMElement *element, CharacterTypeDefinition &def) { + void _readTypeDefinitionCharacter(xercesc::DOMElement *element, CharacterTypeDefinition &def) { _readDefinition(element, def); } - void _readFixedArrayTypeDefinition(DOMElement *element, FixedArrayTypeDefinition &def) { + void _readFixedArrayTypeDefinition(xercesc::DOMElement *element, FixedArrayTypeDefinition &def) { _readDefinition(element, def); @@ -248,14 +244,14 @@ namespace rxml { } - void _readRecordTypeDefinition(DOMElement *element, RecordTypeDefinition &def) { + void _readRecordTypeDefinition(xercesc::DOMElement *element, RecordTypeDefinition &def) { _readDefinition(element, def); /* read Members */ - DOMElement *membersElem = DOMHelper::getElementByTagNameNS( + xercesc::DOMElement *membersElem = DOMHelper::getElementByTagNameNS( element, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("Members") @@ -263,23 +259,23 @@ namespace rxml { if (!membersElem) { - throw new XMLImporter::Exception("Elements property missing"); + throw XMLImporter::Exception("Elements property missing"); } - DOMElement *memberElem = membersElem->getFirstElementChild(); + xercesc::DOMElement *memberElem = membersElem->getFirstElementChild(); while (memberElem) { - if (XMLString::compareIString(DOMHelper::fromUTF8("Name"), memberElem->getLocalName()) == 0) { + if (xercesc::XMLString::compareIString(DOMHelper::fromUTF8("Name"), memberElem->getLocalName()) == 0) { def.members.resize(def.members.size() + 1); xmlAdapter(DOMHelper::toUTF8(memberElem->getTextContent()), def.members.back().name); - } else if (XMLString::compareIString(DOMHelper::fromUTF8("Type"), memberElem->getLocalName()) == 0) { + } else if (xercesc::XMLString::compareIString(DOMHelper::fromUTF8("Type"), memberElem->getLocalName()) == 0) { xmlAdapter(DOMHelper::toUTF8(memberElem->getTextContent()), def.members.back().type); @@ -292,13 +288,13 @@ namespace rxml { } - void _readWeakReferenceTypeDefinition(DOMElement *element, WeakReferenceTypeDefinition &def) { + void _readWeakReferenceTypeDefinition(xercesc::DOMElement *element, WeakReferenceTypeDefinition &def) { _readDefinition(element, def); _readPropertyOfElement(element, XML_NS.c_str(), "ReferencedType", def.referencedType); - DOMElement *tsetelem = DOMHelper::getElementByTagNameNS( + xercesc::DOMElement *tsetelem = DOMHelper::getElementByTagNameNS( element, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("TargetSet") @@ -313,7 +309,7 @@ namespace rxml { /* check if there is any text content */ /* xerces fails on transcoding zero-length streams in some versions */ - if (XMLString::stringLen(tsetelem->getTextContent()) != 0) { + if (xercesc::XMLString::stringLen(tsetelem->getTextContent()) != 0) { std::istringstream ss(DOMHelper::toUTF8(tsetelem->getTextContent()).c_str()); @@ -327,7 +323,7 @@ namespace rxml { } - void _readEnumerationTypeDefinition(DOMElement *element, EnumerationTypeDefinition &def) { + void _readEnumerationTypeDefinition(xercesc::DOMElement *element, EnumerationTypeDefinition &def) { _readDefinition(element, def); @@ -336,7 +332,7 @@ namespace rxml { /* read Elements */ - DOMElement *elementsElem = DOMHelper::getElementByTagNameNS( + xercesc::DOMElement *elementsElem = DOMHelper::getElementByTagNameNS( element, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("Elements") @@ -344,27 +340,27 @@ namespace rxml { if (!elementsElem) { - throw new XMLImporter::Exception("Elements property missing"); + throw XMLImporter::Exception("Elements property missing"); } - DOMElement *elementElem = elementsElem->getFirstElementChild(); + xercesc::DOMElement *elementElem = elementsElem->getFirstElementChild(); while (elementElem) { - if (XMLString::compareIString(DOMHelper::fromUTF8("Name"), elementElem->getLocalName()) == 0) { + if (xercesc::XMLString::compareIString(DOMHelper::fromUTF8("Name"), elementElem->getLocalName()) == 0) { def.elements.resize(def.elements.size() + 1); xmlAdapter(DOMHelper::toUTF8(elementElem->getTextContent()), def.elements.back().name); - } else if (XMLString::compareIString(DOMHelper::fromUTF8("Value"), elementElem->getLocalName()) == 0) { + } else if (xercesc::XMLString::compareIString(DOMHelper::fromUTF8("Value"), elementElem->getLocalName()) == 0) { xmlAdapter(DOMHelper::toUTF8(elementElem->getTextContent()), def.elements.back().value); - } else if (XMLString::compareIString(DOMHelper::fromUTF8("Description"), elementElem->getLocalName()) == 0) { + } else if (xercesc::XMLString::compareIString(DOMHelper::fromUTF8("Description"), elementElem->getLocalName()) == 0) { xmlAdapter(DOMHelper::toUTF8(elementElem->getTextContent()), def.elements.back().description); @@ -377,9 +373,9 @@ namespace rxml { } - void XMLImporter::fromDOM(DOMDocument & dom, MetaDictionary &md, EventHandler * ev) + void XMLImporter::fromDOM(xercesc::DOMDocument & dom, MetaDictionary &md, EventHandler * ev) { - DOMElement *root = dom.getDocumentElement(); + xercesc::DOMElement *root = dom.getDocumentElement(); if (NAME != DOMHelper::toUTF8(root->getLocalName()).c_str() || XML_NS != DOMHelper::toUTF8(root->getNamespaceURI()).c_str()) { @@ -388,7 +384,7 @@ namespace rxml { /* read SchemeID */ - DOMElement *schemeIDElement = DOMHelper::getElementByTagNameNS(root, + xercesc::DOMElement *schemeIDElement = DOMHelper::getElementByTagNameNS(root, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("SchemeID") ); @@ -399,13 +395,13 @@ namespace rxml { return; } - AUID schemeID = TranscodeToStr(schemeIDElement->getTextContent(), "utf-8").str(); + AUID schemeID = xercesc::TranscodeToStr(schemeIDElement->getTextContent(), "utf-8").str(); md.setSchemeID(schemeID); /* read SchemeURI */ - DOMElement *schemeURIElement = DOMHelper::getElementByTagNameNS( + xercesc::DOMElement *schemeURIElement = DOMHelper::getElementByTagNameNS( root, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("SchemeURI") @@ -423,7 +419,7 @@ namespace rxml { /* read and index definitions */ - DOMElement *definitions = DOMHelper::getElementByTagNameNS( + xercesc::DOMElement *definitions = DOMHelper::getElementByTagNameNS( root, DOMHelper::fromUTF8(XML_NS), DOMHelper::fromUTF8("MetaDefinitions") @@ -435,7 +431,7 @@ namespace rxml { return; } - DOMElement *curelement = definitions->getFirstElementChild(); + xercesc::DOMElement *curelement = definitions->getFirstElementChild(); while (curelement) { diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h b/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h similarity index 93% rename from regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h rename to src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h index c66b118..7ee1a50 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h +++ b/src/main/cpp/com/sandflow/smpte/regxml/dict/importers/XMLImporter.h @@ -32,8 +32,6 @@ #include #include -XERCES_CPP_NAMESPACE_USE - namespace rxml { class XMLImporter { @@ -47,7 +45,7 @@ namespace rxml { Exception(const char* reason) : std::runtime_error(reason) {} }; - static void fromDOM(DOMDocument &dom, MetaDictionary& md, EventHandler *ev = &NULL_EVENTHANDLER); + static void fromDOM(xercesc::DOMDocument &dom, MetaDictionary& md, EventHandler *ev = &NULL_EVENTHANDLER); }; diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/AUID.cpp b/src/main/cpp/com/sandflow/smpte/util/AUID.cpp similarity index 96% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/AUID.cpp rename to src/main/cpp/com/sandflow/smpte/util/AUID.cpp index b8ea7fb..107d961 100644 --- a/regxmllib/src/main/cpp/com/sandflow/smpte/util/AUID.cpp +++ b/src/main/cpp/com/sandflow/smpte/util/AUID.cpp @@ -98,7 +98,7 @@ namespace rxml { UL AUID::asUL() const { if (!isUL()) { - throw new std::invalid_argument("AUID is not a UL"); + throw std::invalid_argument("AUID is not a UL"); } return UL(this->value); @@ -107,7 +107,7 @@ namespace rxml { UUID AUID::asUUID() const { if (!isUUID()) { - throw new std::invalid_argument("AUID is not a UUID"); + throw std::invalid_argument("AUID is not a UUID"); } unsigned char tmp[16]; diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/AUID.h b/src/main/cpp/com/sandflow/smpte/util/AUID.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/AUID.h rename to src/main/cpp/com/sandflow/smpte/util/AUID.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/IDAU.cpp b/src/main/cpp/com/sandflow/smpte/util/IDAU.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/IDAU.cpp rename to src/main/cpp/com/sandflow/smpte/util/IDAU.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/IDAU.h b/src/main/cpp/com/sandflow/smpte/util/IDAU.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/IDAU.h rename to src/main/cpp/com/sandflow/smpte/util/IDAU.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UL.cpp b/src/main/cpp/com/sandflow/smpte/util/UL.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UL.cpp rename to src/main/cpp/com/sandflow/smpte/util/UL.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UL.h b/src/main/cpp/com/sandflow/smpte/util/UL.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UL.h rename to src/main/cpp/com/sandflow/smpte/util/UL.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UMID.cpp b/src/main/cpp/com/sandflow/smpte/util/UMID.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UMID.cpp rename to src/main/cpp/com/sandflow/smpte/util/UMID.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UMID.h b/src/main/cpp/com/sandflow/smpte/util/UMID.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UMID.h rename to src/main/cpp/com/sandflow/smpte/util/UMID.h diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UUID.cpp b/src/main/cpp/com/sandflow/smpte/util/UUID.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UUID.cpp rename to src/main/cpp/com/sandflow/smpte/util/UUID.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/smpte/util/UUID.h b/src/main/cpp/com/sandflow/smpte/util/UUID.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/smpte/util/UUID.h rename to src/main/cpp/com/sandflow/smpte/util/UUID.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/CountingStreamBuf.h b/src/main/cpp/com/sandflow/util/CountingStreamBuf.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/CountingStreamBuf.h rename to src/main/cpp/com/sandflow/util/CountingStreamBuf.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.cpp b/src/main/cpp/com/sandflow/util/DOMHelper.cpp similarity index 69% rename from regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.cpp rename to src/main/cpp/com/sandflow/util/DOMHelper.cpp index 47e3451..2e9a871 100644 --- a/regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.cpp +++ b/src/main/cpp/com/sandflow/util/DOMHelper.cpp @@ -29,17 +29,17 @@ namespace rxml { - DOMElement * DOMHelper::getElementByTagNameNS(DOMElement * parent, const XMLCh * namespaceURI, const XMLCh * localName) { + xercesc::DOMElement * DOMHelper::getElementByTagNameNS(xercesc::DOMElement * parent, const XMLCh * namespaceURI, const XMLCh * localName) { - DOMNode *child = parent->getFirstElementChild(); + xercesc::DOMNode *child = parent->getFirstElementChild(); while (child) { - if (child->getNodeType() == DOMNode::ELEMENT_NODE && - XMLString::compareIString(child->getNodeName(), localName) == 0 && - XMLString::compareIString(child->getNamespaceURI(), namespaceURI) == 0) { + if (child->getNodeType() == xercesc::DOMNode::ELEMENT_NODE && + xercesc::XMLString::compareIString(child->getNodeName(), localName) == 0 && + xercesc::XMLString::compareIString(child->getNamespaceURI(), namespaceURI) == 0) { - return (DOMElement*)child; + return (xercesc::DOMElement*)child; } @@ -50,8 +50,8 @@ namespace rxml { return NULL; } - const XMLCh * DOMHelper::getElementTextContentByTagNameNS(DOMElement * parent, const XMLCh * namespaceURI, const XMLCh * localName) { - DOMElement* e = getElementByTagNameNS(parent, namespaceURI, localName); + const XMLCh * DOMHelper::getElementTextContentByTagNameNS(xercesc::DOMElement * parent, const XMLCh * namespaceURI, const XMLCh * localName) { + xercesc::DOMElement* e = getElementByTagNameNS(parent, namespaceURI, localName); if (e) { diff --git a/regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.h b/src/main/cpp/com/sandflow/util/DOMHelper.h similarity index 73% rename from regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.h rename to src/main/cpp/com/sandflow/util/DOMHelper.h index bcaecae..3e2f8f1 100644 --- a/regxmllib/src/main/cpp/com/sandflow/util/DOMHelper.h +++ b/src/main/cpp/com/sandflow/util/DOMHelper.h @@ -31,17 +31,15 @@ #include #include -XERCES_CPP_NAMESPACE_USE - namespace rxml { namespace DOMHelper { - class XMLChStr : public TranscodeFromStr { + class XMLChStr : public xercesc::TranscodeFromStr { public: - XMLChStr(const char *str) : TranscodeFromStr((XMLByte*)str, strlen(str), "utf-8"), src(str) {} + XMLChStr(const char *str) : xercesc::TranscodeFromStr((XMLByte*)str, strlen(str), "utf-8"), src(str) {} const std::string& ostr() const { return this->src; } @@ -53,12 +51,12 @@ namespace rxml { }; - class fromUTF8 : public TranscodeFromStr { + class fromUTF8 : public xercesc::TranscodeFromStr { public: - fromUTF8(const char *str) : TranscodeFromStr((XMLByte*)str, strlen(str), "utf-8"), src(str) {} - fromUTF8(const std::string &str) : TranscodeFromStr((XMLByte*)str.c_str(), str.size(), "utf-8"), src(str) {} + fromUTF8(const char *str) : xercesc::TranscodeFromStr((XMLByte*)str, strlen(str), "utf-8"), src(str) {} + fromUTF8(const std::string &str) : xercesc::TranscodeFromStr((XMLByte*)str.c_str(), str.size(), "utf-8"), src(str) {} const std::string& ostr() const { return this->src; } @@ -72,11 +70,11 @@ namespace rxml { }; - class toUTF8 : public TranscodeToStr { + class toUTF8 : public xercesc::TranscodeToStr { public: - toUTF8(const XMLCh *str) : TranscodeToStr(str, "utf-8"), src(str) {} + toUTF8(const XMLCh *str) : xercesc::TranscodeToStr(str, "utf-8"), src(str) {} const XMLCh* ostr() const { return this->src; } @@ -91,10 +89,10 @@ namespace rxml { }; - DOMElement* getElementByTagNameNS(DOMElement *parent, const XMLCh *namespaceURI, const XMLCh *localName); + xercesc::DOMElement* getElementByTagNameNS(xercesc::DOMElement *parent, const XMLCh *namespaceURI, const XMLCh *localName); - const XMLCh* getElementTextContentByTagNameNS(DOMElement *parent, const XMLCh *namespaceURI, const XMLCh *localName); + const XMLCh* getElementTextContentByTagNameNS(xercesc::DOMElement *parent, const XMLCh *namespaceURI, const XMLCh *localName); } diff --git a/regxmllib/src/main/cpp/com/sandflow/util/events/Event.h b/src/main/cpp/com/sandflow/util/events/Event.h similarity index 99% rename from regxmllib/src/main/cpp/com/sandflow/util/events/Event.h rename to src/main/cpp/com/sandflow/util/events/Event.h index 7613d3f..b9c4ed6 100644 --- a/regxmllib/src/main/cpp/com/sandflow/util/events/Event.h +++ b/src/main/cpp/com/sandflow/util/events/Event.h @@ -34,8 +34,8 @@ namespace rxml { class Event : public std::runtime_error { const std::string reason; - const std::string code; const std::string where; + const std::string code; public: Event(const std::string & code, const std::string & reason, const std::string & where) : @@ -63,4 +63,4 @@ namespace rxml { } -#endif \ No newline at end of file +#endif diff --git a/regxmllib/src/main/cpp/com/sandflow/util/events/EventHandler.h b/src/main/cpp/com/sandflow/util/events/EventHandler.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/events/EventHandler.h rename to src/main/cpp/com/sandflow/util/events/EventHandler.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/events/NullEventHandler.cpp b/src/main/cpp/com/sandflow/util/events/NullEventHandler.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/events/NullEventHandler.cpp rename to src/main/cpp/com/sandflow/util/events/NullEventHandler.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/util/events/NullEventHandler.h b/src/main/cpp/com/sandflow/util/events/NullEventHandler.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/events/NullEventHandler.h rename to src/main/cpp/com/sandflow/util/events/NullEventHandler.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/membuf.h b/src/main/cpp/com/sandflow/util/membuf.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/membuf.h rename to src/main/cpp/com/sandflow/util/membuf.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/optional.h b/src/main/cpp/com/sandflow/util/optional.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/optional.h rename to src/main/cpp/com/sandflow/util/optional.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/scoped_ptr.h b/src/main/cpp/com/sandflow/util/scoped_ptr.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/scoped_ptr.h rename to src/main/cpp/com/sandflow/util/scoped_ptr.h diff --git a/regxmllib/src/main/cpp/com/sandflow/util/strformat.cpp b/src/main/cpp/com/sandflow/util/strformat.cpp similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/strformat.cpp rename to src/main/cpp/com/sandflow/util/strformat.cpp diff --git a/regxmllib/src/main/cpp/com/sandflow/util/strformat.h b/src/main/cpp/com/sandflow/util/strformat.h similarity index 100% rename from regxmllib/src/main/cpp/com/sandflow/util/strformat.h rename to src/main/cpp/com/sandflow/util/strformat.h diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/Group.java b/src/main/java/com/sandflow/smpte/klv/Group.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/Group.java rename to src/main/java/com/sandflow/smpte/klv/Group.java diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/KLVInputStream.java b/src/main/java/com/sandflow/smpte/klv/KLVInputStream.java similarity index 93% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/KLVInputStream.java rename to src/main/java/com/sandflow/smpte/klv/KLVInputStream.java index 37b4b1c..0c3f1e2 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/KLVInputStream.java +++ b/src/main/java/com/sandflow/smpte/klv/KLVInputStream.java @@ -1,392 +1,402 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv; - -import com.sandflow.smpte.klv.exceptions.KLVException; -import static com.sandflow.smpte.klv.exceptions.KLVException.MAX_LENGTH_EXCEEED; -import com.sandflow.smpte.util.UL; -import java.io.DataInput; -import java.io.DataInputStream; -import java.io.EOFException; -import java.io.FilterInputStream; -import java.io.IOException; -import java.io.InputStream; - -/** - * KLVInputStream allows KLV data structures to be read from an InputStream - */ -public class KLVInputStream extends InputStream implements DataInput { - - /** - * Possible byte ordering of a KLV packet - */ - public enum ByteOrder { - LITTLE_ENDIAN, - BIG_ENDIAN - } - - private DataInputStream dis; - private ByteOrder byteorder; - - /** - * Assumes big endian byte ordering. - * - * @param is InputStream to read from - */ - public KLVInputStream(InputStream is) { - this(is, ByteOrder.BIG_ENDIAN); - } - - /** - * Allows the byte ordering to be specified. - * - * @param is InputStream to read from - * @param byteorder Byte ordering of the file - */ - public KLVInputStream(InputStream is, ByteOrder byteorder) { - - if (is == null) throw new NullPointerException(); - - dis = new DataInputStream(is); - this.byteorder = byteorder; - } - - /** - * Byte order of the stream. - * - * @return Byte order of the stream - */ - public ByteOrder getByteorder() { - return byteorder; - } - - /** - * Reads a single UL. - * - * @return UL - * @throws IOException - * @throws EOFException - */ - public UL readUL() throws IOException, EOFException { - byte[] ul = new byte[16]; - - readFully(ul); - - return new UL(ul); - } - - /** - * Reads a single BER-encoded length. The maximum length of the encoded length is 8 bytes. - * - * @return Length - * @throws EOFException - * @throws IOException - * @throws KLVException - */ - public long readBERLength() throws EOFException, IOException, KLVException { - - long val = 0; - - int b = read(); - - if (b <= 0) { - throw new EOFException(); - } - - if ((b & 0x80) == 0) { - return b; - } - - int bersz = (b & 0x0f); - - if (bersz > 8) { - throw new KLVException(MAX_LENGTH_EXCEEED); - } - - byte[] octets = new byte[bersz]; - - if (read(octets) < bersz) { - throw new EOFException(); - } - - for (int i = 0; i < bersz; i++) { - int tmp = (((int) octets[i]) & 0xFF); - val = (val << 8) + tmp; - - if (val > Integer.MAX_VALUE) { - throw new KLVException(MAX_LENGTH_EXCEEED); - } - } - - return val; - } - - /** - * Reads a single KLV triplet. - * - * @return KLV Triplet - * @throws IOException - * @throws EOFException - * @throws KLVException - */ - public Triplet readTriplet() throws IOException, EOFException, KLVException { - UL ul = readUL(); - - long len = readBERLength(); - - if (len > Integer.MAX_VALUE) { - throw new KLVException(MAX_LENGTH_EXCEEED); - } - - byte[] value = new byte[(int) len]; - - if (len != read(value)) { - throw new EOFException("EOF reached while reading Value."); - } - - return new MemoryTriplet(ul, value); - } - - @Override - public final int read(byte[] bytes) throws IOException { - return dis.read(bytes); - } - - @Override - public final int read(byte[] bytes, int i, int i1) throws IOException { - return dis.read(bytes, i, i1); - } - - @Override - public final void readFully(byte[] bytes) throws IOException { - dis.readFully(bytes); - } - - @Override - public final void readFully(byte[] bytes, int i, int i1) throws IOException { - dis.readFully(bytes, i, i1); - } - - @Override - public final int skipBytes(int i) throws IOException { - return dis.skipBytes(i); - } - - @Override - public final boolean readBoolean() throws IOException { - return dis.readBoolean(); - } - - @Override - public final byte readByte() throws IOException { - return dis.readByte(); - } - - @Override - public final int readUnsignedByte() throws IOException { - return dis.readUnsignedByte(); - } - - @Override - public final short readShort() throws IOException { - - if (byteorder == ByteOrder.BIG_ENDIAN) { - - return dis.readShort(); - - } else { - - int lo = readUnsignedByte(); - int hi = readUnsignedByte(); - - return (short) (lo + (hi << 8)); - - } - } - - @Override - public final int readUnsignedShort() throws IOException { - - if (byteorder == ByteOrder.BIG_ENDIAN) { - - return dis.readUnsignedShort(); - - } else { - - int lo = readUnsignedByte(); - int hi = readUnsignedByte(); - - return lo + hi << 8; - - } - } - - @Override - public final char readChar() throws IOException { - return dis.readChar(); - } - - @Override - public final int readInt() throws IOException { - - if (byteorder == ByteOrder.BIG_ENDIAN) { - - return dis.readInt(); - - } else { - - int b0 = readUnsignedByte(); - int b1 = readUnsignedByte(); - int b2 = readUnsignedByte(); - int b3 = readUnsignedByte(); - - return b0 + (b1 << 8) + (b2 << 16) + (b3 << 24); - - } - - } - - public long readUnsignedInt() throws IOException, EOFException { - - if (byteorder == ByteOrder.BIG_ENDIAN) { - - return ((long) dis.readInt()) & 0xFFFF; - - } else { - - int b0 = readUnsignedByte(); - int b1 = readUnsignedByte(); - int b2 = readUnsignedByte(); - int b3 = readUnsignedByte(); - - return ((long) b0 + (b1 << 8) + (b2 << 16) + (b3 << 24)) & 0xFFFF; - - } - - } - - @Override - public final long readLong() throws IOException { - - if (byteorder == ByteOrder.BIG_ENDIAN) { - - return dis.readLong(); - - } else { - - int b0 = readUnsignedByte(); - int b1 = readUnsignedByte(); - int b2 = readUnsignedByte(); - int b3 = readUnsignedByte(); - int b4 = readUnsignedByte(); - int b5 = readUnsignedByte(); - int b6 = readUnsignedByte(); - int b7 = readUnsignedByte(); - - return b0 + (b1 << 8) + (b2 << 16) + (b3 << 24) + (b4 << 32) + (b5 << 40) + (b6 << 48) + (b7 << 56); - - } - } - - @Override - public final float readFloat() throws IOException { - return dis.readFloat(); - } - - @Override - public final double readDouble() throws IOException { - return dis.readDouble(); - } - - @Override - public final String readLine() throws IOException { - return dis.readLine(); - } - - @Override - public final String readUTF() throws IOException { - return dis.readUTF(); - } - - public static final String readUTF(DataInput di) throws IOException { - return DataInputStream.readUTF(di); - } - - @Override - public int read() throws IOException { - return dis.read(); - } - - @Override - public long skip(long l) throws IOException { - return dis.skip(l); - } - - @Override - public int available() throws IOException { - return dis.available(); - } - - @Override - public void close() throws IOException { - dis.close(); - } - - @Override - public synchronized void mark(int i) { - dis.mark(i); - } - - @Override - public synchronized void reset() throws IOException { - dis.reset(); - } - - @Override - public boolean markSupported() { - return dis.markSupported(); - } - - protected static final void swap(byte[] array, int i, int j) { - byte tmp = array[i]; - array[i] = array[j]; - array[j] = tmp; - } - - protected static final void uuidLEtoBE(byte[] uuid) { - /* swap the 32-bit word of the UUID */ - swap(uuid, 0, 3); - swap(uuid, 1, 2); - - /* swap the first 16-bit word of the UUID */ - swap(uuid, 4, 5); - - /* swap the second 16-bit word of the UUID */ - swap(uuid, 6, 7); - - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import static com.sandflow.smpte.klv.exceptions.KLVException.MAX_LENGTH_EXCEEED; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import java.io.DataInput; +import java.io.DataInputStream; +import java.io.EOFException; +import java.io.IOException; +import java.io.InputStream; + +/** + * KLVInputStream allows KLV data structures to be read from an InputStream + */ +public class KLVInputStream extends InputStream implements DataInput { + + /** + * Possible byte ordering of a KLV packet + */ + public enum ByteOrder { + LITTLE_ENDIAN, + BIG_ENDIAN + } + + private DataInputStream dis; + private ByteOrder byteorder; + + /** + * Assumes big endian byte ordering. + * + * @param is InputStream to read from + */ + public KLVInputStream(InputStream is) { + this(is, ByteOrder.BIG_ENDIAN); + } + + /** + * Allows the byte ordering to be specified. + * + * @param is InputStream to read from + * @param byteorder Byte ordering of the file + */ + public KLVInputStream(InputStream is, ByteOrder byteorder) { + + if (is == null) throw new NullPointerException(); + + dis = new DataInputStream(is); + this.byteorder = byteorder; + } + + /** + * Byte order of the stream. + * + * @return Byte order of the stream + */ + public ByteOrder getByteOrder() { + return byteorder; + } + + /** + * Reads a single UL. + * + * @return UL + * @throws IOException + * @throws EOFException + */ + public UL readUL() throws IOException, EOFException { + byte[] ul = new byte[16]; + + readFully(ul); + + return new UL(ul); + } + + /** + * Reads a single AUID. + * @return AUID + * @throws IOException + * @throws EOFException + */ + public AUID readAUID() throws IOException, EOFException { + byte[] auid = new byte[16]; + + readFully(auid); + + return new AUID(auid); + } + + /** + * Reads a single BER-encoded length. The maximum length of the encoded length is 8 bytes. + * + * @return Length + * @throws EOFException + * @throws IOException + * @throws KLVException + */ + public long readBERLength() throws EOFException, IOException, KLVException { + + long val = 0; + + int b = read(); + + if (b <= 0) { + throw new EOFException(); + } + + if ((b & 0x80) == 0) { + return b; + } + + int bersz = (b & 0x0f); + + if (bersz > 8) { + throw new KLVException(MAX_LENGTH_EXCEEED); + } + + byte[] octets = new byte[bersz]; + + readFully(octets); + + for (int i = 0; i < bersz; i++) { + int tmp = (((int) octets[i]) & 0xFF); + val = (val << 8) + tmp; + + if (val > Integer.MAX_VALUE) { + throw new KLVException(MAX_LENGTH_EXCEEED); + } + } + + return val; + } + + /** + * Reads a single KLV triplet. + * + * @return KLV Triplet + * @throws IOException + * @throws EOFException + * @throws KLVException + */ + public Triplet readTriplet() throws IOException, EOFException, KLVException { + AUID auid = readAUID(); + + long len = readBERLength(); + + if (len > Integer.MAX_VALUE) { + throw new KLVException(MAX_LENGTH_EXCEEED); + } + + byte[] value = new byte[(int) len]; + + readFully(value); + + return new MemoryTriplet(auid, value); + } + + @Override + public final int read(byte[] bytes) throws IOException { + return dis.read(bytes); + } + + @Override + public final int read(byte[] bytes, int i, int i1) throws IOException { + return dis.read(bytes, i, i1); + } + + @Override + public final void readFully(byte[] bytes) throws IOException { + dis.readFully(bytes); + } + + @Override + public final void readFully(byte[] bytes, int i, int i1) throws IOException { + dis.readFully(bytes, i, i1); + } + + @Override + public final int skipBytes(int i) throws IOException { + return dis.skipBytes(i); + } + + @Override + public final boolean readBoolean() throws IOException { + return dis.readBoolean(); + } + + @Override + public final byte readByte() throws IOException { + return dis.readByte(); + } + + @Override + public final int readUnsignedByte() throws IOException { + return dis.readUnsignedByte(); + } + + @Override + public final short readShort() throws IOException { + + if (byteorder == ByteOrder.BIG_ENDIAN) { + + return dis.readShort(); + + } else { + + int lo = readUnsignedByte(); + int hi = readUnsignedByte(); + + return (short) (lo + (hi << 8)); + + } + } + + @Override + public final int readUnsignedShort() throws IOException { + + if (byteorder == ByteOrder.BIG_ENDIAN) { + + return dis.readUnsignedShort(); + + } else { + + int lo = readUnsignedByte(); + int hi = readUnsignedByte(); + + return lo + hi << 8; + + } + } + + @Override + public final char readChar() throws IOException { + return dis.readChar(); + } + + @Override + public final int readInt() throws IOException { + + if (byteorder == ByteOrder.BIG_ENDIAN) { + + return dis.readInt(); + + } else { + + int b0 = readUnsignedByte(); + int b1 = readUnsignedByte(); + int b2 = readUnsignedByte(); + int b3 = readUnsignedByte(); + + return b0 + (b1 << 8) + (b2 << 16) + (b3 << 24); + + } + + } + + public long readUnsignedInt() throws IOException, EOFException { + + if (byteorder == ByteOrder.BIG_ENDIAN) { + + return ((long) dis.readInt()) & 0xFFFF; + + } else { + + int b0 = readUnsignedByte(); + int b1 = readUnsignedByte(); + int b2 = readUnsignedByte(); + int b3 = readUnsignedByte(); + + return ((long) b0 + (b1 << 8) + (b2 << 16) + (b3 << 24)) & 0xFFFF; + + } + + } + + @Override + public final long readLong() throws IOException { + + if (byteorder == ByteOrder.BIG_ENDIAN) { + + return dis.readLong(); + + } else { + + int b0 = readUnsignedByte(); + int b1 = readUnsignedByte(); + int b2 = readUnsignedByte(); + int b3 = readUnsignedByte(); + int b4 = readUnsignedByte(); + int b5 = readUnsignedByte(); + int b6 = readUnsignedByte(); + int b7 = readUnsignedByte(); + + return b0 + (b1 << 8) + (b2 << 16) + (b3 << 24) + (b4 << 32) + (b5 << 40) + (b6 << 48) + (b7 << 56); + + } + } + + @Override + public final float readFloat() throws IOException { + return dis.readFloat(); + } + + @Override + public final double readDouble() throws IOException { + return dis.readDouble(); + } + + @Override + public final String readLine() throws IOException { + return dis.readLine(); + } + + @Override + public final String readUTF() throws IOException { + return dis.readUTF(); + } + + public static final String readUTF(DataInput di) throws IOException { + return DataInputStream.readUTF(di); + } + + @Override + public int read() throws IOException { + return dis.read(); + } + + @Override + public long skip(long l) throws IOException { + return dis.skip(l); + } + + @Override + public int available() throws IOException { + return dis.available(); + } + + @Override + public void close() throws IOException { + dis.close(); + } + + @Override + public synchronized void mark(int i) { + dis.mark(i); + } + + @Override + public synchronized void reset() throws IOException { + dis.reset(); + } + + @Override + public boolean markSupported() { + return dis.markSupported(); + } + + protected static final void swap(byte[] array, int i, int j) { + byte tmp = array[i]; + array[i] = array[j]; + array[j] = tmp; + } + + protected static final void uuidLEtoBE(byte[] uuid) { + /* swap the 32-bit word of the UUID */ + swap(uuid, 0, 3); + swap(uuid, 1, 2); + + /* swap the first 16-bit word of the UUID */ + swap(uuid, 4, 5); + + /* swap the second 16-bit word of the UUID */ + swap(uuid, 6, 7); + + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/LocalSet.java b/src/main/java/com/sandflow/smpte/klv/LocalSet.java similarity index 92% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/LocalSet.java rename to src/main/java/com/sandflow/smpte/klv/LocalSet.java index 71ec64a..9a973a6 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/LocalSet.java +++ b/src/main/java/com/sandflow/smpte/klv/LocalSet.java @@ -1,161 +1,163 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv; - -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.klv.exceptions.TripletLengthException; -import com.sandflow.smpte.util.CountingInputStream; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Collection; - -/** - * LocalSet implements a Local Set as specified in SMPTE ST 336. - */ -public class LocalSet implements Group { - - /** - * Creates a Group from a Local Set using a LocalTagRegister to map Local Tags to Keys - * @param localset Triplet containing a Group encoded as a Local Set - * @param reg LocalTagRegister used to map Local Tags to Keys - * @return Local Set, or null if the input Triplet is not a Local Set - * @throws KLVException - */ - public static LocalSet fromTriplet(Triplet localset, LocalTagRegister reg) throws KLVException { - try { - - if (!localset.getKey().isLocalSet()) { - return null; - } - - CountingInputStream cis = new CountingInputStream(localset.getValueAsStream()); - - KLVInputStream kis = new KLVInputStream(cis); - - LocalSet set = new LocalSet(localset.getKey()); - - while(cis.getCount() < localset.getLength()) { - - long localtag = 0; - - /* read local tag */ - switch (localset.getKey().getRegistryDesignator() >> 3 & 3) { - - /* 1 byte length field */ - case 0: - localtag = kis.readUnsignedByte(); - break; - - /* ASN.1 OID BER length field */ - case 1: - localtag = kis.readBERLength(); - break; - - /* 2 byte length field */ - case 2: - localtag = kis.readUnsignedShort(); - break; - - /* 4 byte length field */ - case 3: - localtag = kis.readUnsignedInt(); - break; - } - - long locallen = 0; - - /* read local length */ - switch (localset.getKey().getRegistryDesignator() >> 5 & 3) { - - /* ASN.1 OID BER length field */ - case 0: - locallen = kis.readBERLength(); - break; - - /* 1 byte length field */ - case 1: - locallen = kis.readUnsignedByte(); - break; - - /* 2 byte length field */ - case 2: - locallen = kis.readUnsignedShort(); - break; - - /* 4 byte length field */ - case 3: - locallen = kis.readUnsignedInt(); - break; - } - - if (locallen > Integer.MAX_VALUE) { - throw new TripletLengthException(); - } - - byte[] localval = new byte[(int) locallen]; - - kis.readFully(localval); - - if (reg.get(localtag) == null) { - throw new KLVException("Local tag not found: " + localtag + " in Local Set " + localset.getKey()); - } - - set.addItem(new MemoryTriplet(reg.get(localtag), localval)); - - } - - return set; - - } catch (IOException e) { - throw new KLVException("Error parsing Local Set: " + localset.getKey(), e); - } - - } - - private final ArrayList items = new ArrayList<>(); - - private final UL key; - - private LocalSet(UL key) { - this.key = key; - } - - @Override - public UL getKey() { - return key; - } - - @Override - public Collection getItems() { - return items; - } - - private void addItem(Triplet triplet) { - items.add(triplet); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.klv.exceptions.TripletLengthException; +import com.sandflow.smpte.util.CountingInputStream; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collection; + +/** + * LocalSet implements a Local Set as specified in SMPTE ST 336. + */ +public class LocalSet implements Group { + + /** + * Creates a Group from a Local Set using a LocalTagRegister to map Local Tags to Keys + * @param localset Triplet containing a Group encoded as a Local Set + * @param reg LocalTagRegister used to map Local Tags to Keys + * @return Local Set, or null if the input Triplet is not a Local Set + * @throws KLVException + */ + public static LocalSet fromTriplet(Triplet localset, LocalTagRegister reg) throws KLVException { + try { + + if (!(localset.getKey().isUL() && localset.getKey().asUL().isLocalSet())) { + return null; + } + + UL lskey = localset.getKey().asUL(); + + CountingInputStream cis = new CountingInputStream(localset.getValueAsStream()); + + KLVInputStream kis = new KLVInputStream(cis); + + LocalSet set = new LocalSet(lskey); + + while(cis.getCount() < localset.getLength()) { + + long localtag = 0; + + /* read local tag */ + switch (lskey.getRegistryDesignator() >> 3 & 3) { + + /* 1 byte length field */ + case 0: + localtag = kis.readUnsignedByte(); + break; + + /* ASN.1 OID BER length field */ + case 1: + localtag = kis.readBERLength(); + break; + + /* 2 byte length field */ + case 2: + localtag = kis.readUnsignedShort(); + break; + + /* 4 byte length field */ + case 3: + localtag = kis.readUnsignedInt(); + break; + } + + long locallen = 0; + + /* read local length */ + switch (lskey.getRegistryDesignator() >> 5 & 3) { + + /* ASN.1 OID BER length field */ + case 0: + locallen = kis.readBERLength(); + break; + + /* 1 byte length field */ + case 1: + locallen = kis.readUnsignedByte(); + break; + + /* 2 byte length field */ + case 2: + locallen = kis.readUnsignedShort(); + break; + + /* 4 byte length field */ + case 3: + locallen = kis.readUnsignedInt(); + break; + } + + if (locallen > Integer.MAX_VALUE) { + throw new TripletLengthException(); + } + + byte[] localval = new byte[(int) locallen]; + + kis.readFully(localval); + + if (reg.get(localtag) == null) { + throw new KLVException("Local tag not found: " + localtag + " in Local Set " + localset.getKey()); + } + + set.addItem(new MemoryTriplet(reg.get(localtag), localval)); + + } + + return set; + + } catch (IOException e) { + throw new KLVException("Error parsing Local Set: " + localset.getKey(), e); + } + + } + + private final ArrayList items = new ArrayList<>(); + + private final UL key; + + private LocalSet(UL key) { + this.key = key; + } + + @Override + public UL getKey() { + return key; + } + + @Override + public Collection getItems() { + return items; + } + + private void addItem(Triplet triplet) { + items.add(triplet); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java b/src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java similarity index 84% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java rename to src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java index 5539a67..42b567a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java +++ b/src/main/java/com/sandflow/smpte/klv/LocalTagRegister.java @@ -1,72 +1,72 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv; - -import com.sandflow.smpte.util.UL; -import java.util.HashMap; -import java.util.Map; - -/** - * LocalTagRegister maps Local Tags found in a Local Set to UL Keys - */ -public class LocalTagRegister { - - private final HashMap entries = new HashMap<>(); - - /** - * Instantiates an empty LocalTagRegister - */ - public LocalTagRegister() { } - - /** - * Instantiates a LocalTagRegister with an initial set of mappings from Local Tag values to UL Keys - * @param entries Initial set of mappings - */ - public LocalTagRegister(Map entries) { - this.entries.putAll(entries); - } - - /** - * Returns the Key corresponding to a Local Tag - * @param localtag Local Tag - * @return Key, or null if no Key exists for the Local Tag - */ - public UL get(long localtag) { - return entries.get(localtag); - } - - /** - * Adds a Local Tag to the registry. - * @param localtag Local Tag - * @param key Key with which the Local Tag is associated - * @return The Key is the Local Tag was already present in the registry, or null otherwise. - */ - public UL add(long localtag, UL key) { - return entries.put(localtag, key); - } - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv; + +import com.sandflow.smpte.util.AUID; +import java.util.HashMap; +import java.util.Map; + +/** + * LocalTagRegister maps Local Tags found in a Local Set to AUID Keys + */ +public class LocalTagRegister { + + private final HashMap entries = new HashMap<>(); + + /** + * Instantiates an empty LocalTagRegister + */ + public LocalTagRegister() { } + + /** + * Instantiates a LocalTagRegister with an initial set of mappings from Local Tag values to AUID Keys + * @param entries Initial set of mappings + */ + public LocalTagRegister(Map entries) { + this.entries.putAll(entries); + } + + /** + * Returns the Key corresponding to a Local Tag + * @param localtag Local Tag + * @return Key, or null if no Key exists for the Local Tag + */ + public AUID get(long localtag) { + return entries.get(localtag); + } + + /** + * Adds a Local Tag to the registry. + * @param localtag Local Tag + * @param key Key with which the Local Tag is associated + * @return The Key is the Local Tag was already present in the registry, or null otherwise. + */ + public AUID add(long localtag, AUID key) { + return entries.put(localtag, key); + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java b/src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java similarity index 91% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java rename to src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java index ec0bb15..bc8a32d 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java +++ b/src/main/java/com/sandflow/smpte/klv/MemoryTriplet.java @@ -1,74 +1,74 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv; - -import com.sandflow.smpte.util.UL; -import java.io.ByteArrayInputStream; -import java.io.InputStream; -import java.security.InvalidParameterException; - -/** - * In-memory KLV Triplet - */ -public class MemoryTriplet implements Triplet { - - final private UL key; - final private byte[] value; - - /** - * Creates a Triplet from a Key and an array of bytes as the Value - * @param key Triplet Key - * @param value Triplet Value - */ - public MemoryTriplet(UL key, byte[] value) { - - if (key == null || value == null) throw new InvalidParameterException("Triplet muse have key and value."); - - this.key = key; - this.value = value; - } - - @Override - public UL getKey() { - return key; - } - - @Override - public long getLength() { - return value.length; - } - - @Override - public byte[] getValue() { - return value; - } - - @Override - public InputStream getValueAsStream() { - return new ByteArrayInputStream(value); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv; + +import com.sandflow.smpte.util.AUID; +import java.io.ByteArrayInputStream; +import java.io.InputStream; +import java.security.InvalidParameterException; + +/** + * In-memory KLV Triplet + */ +public class MemoryTriplet implements Triplet { + + final private AUID key; + final private byte[] value; + + /** + * Creates a Triplet from a Key and an array of bytes as the Value + * @param key Triplet Key + * @param value Triplet Value + */ + public MemoryTriplet(AUID key, byte[] value) { + + if (key == null || value == null) throw new InvalidParameterException("Triplet muse have key and value."); + + this.key = key; + this.value = value; + } + + @Override + public AUID getKey() { + return key; + } + + @Override + public long getLength() { + return value.length; + } + + @Override + public byte[] getValue() { + return value; + } + + @Override + public InputStream getValueAsStream() { + return new ByteArrayInputStream(value); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/Triplet.java b/src/main/java/com/sandflow/smpte/klv/Triplet.java similarity index 94% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/Triplet.java rename to src/main/java/com/sandflow/smpte/klv/Triplet.java index 07f4afc..a0a067d 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/Triplet.java +++ b/src/main/java/com/sandflow/smpte/klv/Triplet.java @@ -1,61 +1,61 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.klv; - -import com.sandflow.smpte.util.UL; -import java.io.InputStream; - -/** - * Abstract class representing a KLV Triplet per SMPTE ST 336 - */ -public interface Triplet { - - /** - * Returns the Key of the KLV Triplet - * @return Triplet Key - */ - UL getKey(); - - /** - * Returns the Length of the KLV Triplet - * @return Triplet Length - */ - long getLength(); - - /** - * Return the Value of the KLV Triplet as a byte array - * @return Triplet Value - */ - byte[] getValue(); - - /** - * Return the Value of the KLV Triplet as an Input Stream - * @return Triplet Value - */ - InputStream getValueAsStream(); - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.klv; + +import com.sandflow.smpte.util.AUID; +import java.io.InputStream; + +/** + * Abstract class representing a KLV Triplet per SMPTE ST 336 + */ +public interface Triplet { + + /** + * Returns the Key of the KLV Triplet + * @return Triplet Key + */ + AUID getKey(); + + /** + * Returns the Length of the KLV Triplet + * @return Triplet Length + */ + long getLength(); + + /** + * Return the Value of the KLV Triplet as a byte array + * @return Triplet Value + */ + byte[] getValue(); + + /** + * Return the Value of the KLV Triplet as an Input Stream + * @return Triplet Value + */ + InputStream getValueAsStream(); + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java b/src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java rename to src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java index a55c0be..783a3e9 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java +++ b/src/main/java/com/sandflow/smpte/klv/adapters/TripletValueAdapter.java @@ -1,50 +1,50 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv.adapters; - -/** - * TripletValueAdapter is an abstract class defining the conversion of KLV Triplet - * values to Java types. - * @param Type to which the Triplet Value will be converted to/from - */ -public class TripletValueAdapter { - - /** - * Converts a KLV Triplet Value to a Java object. - * @param Java object type - * @param value KLV Triplet Value - * @return Java object - */ - public static W fromValue(byte[] value) { return null;} - - /** - * Converts a Java object to a KLV Triplet Value. - * @param Java object type - * @param obj Java object - * @return KLV Triplet Value - */ - public static byte[] toValue(W obj) {return null;} -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv.adapters; + +/** + * TripletValueAdapter is an abstract class defining the conversion of KLV Triplet + * values to Java types. + * @param Type to which the Triplet Value will be converted to/from + */ +public class TripletValueAdapter { + + /** + * Converts a KLV Triplet Value to a Java object. + * @param Java object type + * @param value KLV Triplet Value + * @return Java object + */ + public static W fromValue(byte[] value) { return null;} + + /** + * Converts a Java object to a KLV Triplet Value. + * @param Java object type + * @param obj Java object + * @return KLV Triplet Value + */ + public static byte[] toValue(W obj) {return null;} +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java b/src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java rename to src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java index 5c3a45a..006a5c3 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java +++ b/src/main/java/com/sandflow/smpte/klv/adapters/ULValueAdapter.java @@ -1,53 +1,53 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv.adapters; - -import com.sandflow.smpte.util.UL; - -/** - * ULValueAdapter converts a UL to and from a KLV Triplet Value - */ -public class ULValueAdapter extends TripletValueAdapter { - - /** - * Converts a KLV Triplet Value to a UL. - * @param value KLV Triplet Value - * @return UL - */ - public static UL fromValue(byte[] value) { - return new UL(value); - } - - /** - * Converts a UL to a KLV Triplet Value. - * @param obj UL - * @return KLV Triplet Value - */ - public static byte[] toValue(UL obj) { - return obj.getValue(); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv.adapters; + +import com.sandflow.smpte.util.UL; + +/** + * ULValueAdapter converts a UL to and from a KLV Triplet Value + */ +public class ULValueAdapter extends TripletValueAdapter { + + /** + * Converts a KLV Triplet Value to a UL. + * @param value KLV Triplet Value + * @return UL + */ + public static UL fromValue(byte[] value) { + return new UL(value); + } + + /** + * Converts a UL to a KLV Triplet Value. + * @param obj UL + * @return KLV Triplet Value + */ + public static byte[] toValue(UL obj) { + return obj.getValue(); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java b/src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java rename to src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java index 899b5d9..59a5903 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java +++ b/src/main/java/com/sandflow/smpte/klv/exceptions/KLVException.java @@ -1,55 +1,55 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.klv.exceptions; - -/** - * Exceptions raised when processing KLV packets - */ -public class KLVException extends Exception { - - public static String MAX_LENGTH_EXCEEED = "Maximum in-memory KLV size exceeded."; - public static String INVALID_BER_LENGTH = "Invalid BER encoding."; - public static String MAX_BER_SIZE_EXCEEED = "Maximum BER length exceeded."; - - public KLVException() { - super(); - } - - public KLVException(String msg) { - super(msg); - } - - public KLVException(Exception e) { - super(e); - } - - public KLVException(String string, Throwable thrwbl) { - super(string, thrwbl); - } - - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.klv.exceptions; + +/** + * Exceptions raised when processing KLV packets + */ +public class KLVException extends Exception { + + public static String MAX_LENGTH_EXCEEED = "Maximum in-memory KLV size exceeded."; + public static String INVALID_BER_LENGTH = "Invalid BER encoding."; + public static String MAX_BER_SIZE_EXCEEED = "Maximum BER length exceeded."; + + public KLVException() { + super(); + } + + public KLVException(String msg) { + super(msg); + } + + public KLVException(Exception e) { + super(e); + } + + public KLVException(String string, Throwable thrwbl) { + super(string, thrwbl); + } + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java b/src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java rename to src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java index 1e47846..3c3eace 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java +++ b/src/main/java/com/sandflow/smpte/klv/exceptions/TripletLengthException.java @@ -1,37 +1,37 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.klv.exceptions; - -/** - * Raised when the length of a KLV triplet is not valid - */ -public class TripletLengthException extends RuntimeException { - - public TripletLengthException() { - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.klv.exceptions; + +/** + * Raised when the length of a KLV triplet is not valid + */ +public class TripletLengthException extends RuntimeException { + + public TripletLengthException() { + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/klv/package-info.java b/src/main/java/com/sandflow/smpte/klv/package-info.java similarity index 98% rename from regxmllib/src/main/java/com/sandflow/smpte/klv/package-info.java rename to src/main/java/com/sandflow/smpte/klv/package-info.java index 04147e0..b3ba62b 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/klv/package-info.java +++ b/src/main/java/com/sandflow/smpte/klv/package-info.java @@ -1,30 +1,30 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Allows the processing of SMPTE KLV data structures, as specified in SMPTE ST 336. - */ -package com.sandflow.smpte.klv; +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Allows the processing of SMPTE KLV data structures, as specified in SMPTE ST 336. + */ +package com.sandflow.smpte.klv; diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/FillItem.java b/src/main/java/com/sandflow/smpte/mxf/FillItem.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/FillItem.java rename to src/main/java/com/sandflow/smpte/mxf/FillItem.java index c4283db..21ea372 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/FillItem.java +++ b/src/main/java/com/sandflow/smpte/mxf/FillItem.java @@ -1,63 +1,63 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.util.UL; - -/** - * Represents an MXF Fill Item (see SMPTE ST 377-1) - */ -public class FillItem { - - static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x01, 0x01, 0x01, 0x02, 0x03, 0x01, 0x02, 0x10, 0x01, 0x00, 0x00, 0x00}); - - /** - * Creates a Fill Item from a Triplet - * @param triplet Triplet from which to create the Fill Item - * @return FillItem or null if the Triplet is not a FillItem - * @throws KLVException - */ - public static FillItem fromTriplet(Triplet triplet) throws KLVException { - - FillItem fi = new FillItem(); - - if (!getKey().equalsIgnoreVersion(triplet.getKey())) { - return null; - } - - return fi; - } - - /** - * Returns the Fill Item Key - * @return Key - */ - public static UL getKey() { - return KEY; - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.util.UL; + +/** + * Represents an MXF Fill Item (see SMPTE ST 377-1) + */ +public class FillItem { + + static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x01, 0x01, 0x01, 0x02, 0x03, 0x01, 0x02, 0x10, 0x01, 0x00, 0x00, 0x00}); + + /** + * Creates a Fill Item from a Triplet + * @param triplet Triplet from which to create the Fill Item + * @return FillItem or null if the Triplet is not a FillItem + * @throws KLVException + */ + public static FillItem fromTriplet(Triplet triplet) throws KLVException { + + FillItem fi = new FillItem(); + + if (!getKey().equalsIgnoreVersion(triplet.getKey())) { + return null; + } + + return fi; + } + + /** + * Returns the Fill Item Key + * @return Key + */ + public static UL getKey() { + return KEY; + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/MXFFiles.java b/src/main/java/com/sandflow/smpte/mxf/MXFFiles.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/MXFFiles.java rename to src/main/java/com/sandflow/smpte/mxf/MXFFiles.java diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java b/src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java similarity index 83% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java rename to src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java index 6762232..f83b5ed 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java +++ b/src/main/java/com/sandflow/smpte/mxf/MXFInputStream.java @@ -1,176 +1,155 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.KLVInputStream; -import com.sandflow.smpte.klv.adapters.TripletValueAdapter; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.IDAU; -import com.sandflow.smpte.util.UMID; -import com.sandflow.smpte.util.UUID; -import java.io.EOFException; -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; -import java.util.Collection; - -/** - * MXFInputStream allows MXF data structures to be read from an InputStream - */ -public class MXFInputStream extends KLVInputStream { - - /** - * Assumes big endian byte ordering. - * - * @param is InputStream to read from - */ - public MXFInputStream(InputStream is) { - super(is); - } - - /** - * Allows the byte ordering to be specified. - * - * @param is InputStream to read from - * @param byteorder Byte ordering of the file - */ - public MXFInputStream(InputStream is, ByteOrder byteorder) { - super(is, byteorder); - } - - /** - * Reads a single UUID. - * @return UUID - * @throws IOException - * @throws EOFException - */ - public UUID readUUID() throws IOException, EOFException { - byte[] uuid = new byte[16]; - - if (read(uuid) < uuid.length) { - throw new EOFException(); - } - - if (getByteorder() == ByteOrder.LITTLE_ENDIAN) { - - uuidLEtoBE(uuid); - - } - - return new UUID(uuid); - } - - /** - * Reads a single IDAU. - * @return IDAU - * @throws IOException - * @throws EOFException - */ - public IDAU readIDAU() throws IOException, EOFException { - byte[] idau = new byte[16]; - - if (read(idau) < idau.length) { - throw new EOFException(); - } - - if (getByteorder() == ByteOrder.LITTLE_ENDIAN) { - - uuidLEtoBE(idau); - - } - - return new IDAU(idau); - } - - /** - * Reads a single AUID. - * @return AUID - * @throws IOException - * @throws EOFException - */ - public AUID readAUID() throws IOException, EOFException { - byte[] auid = new byte[16]; - - if (read(auid) < auid.length) { - throw new EOFException(); - } - - return new AUID(auid); - } - - /** - * Reads a single UMID. - * @return UMID - * @throws IOException - * @throws EOFException - */ - public UMID readUMID() throws IOException, EOFException { - byte[] umid = new byte[32]; - - if (read(umid) < umid.length) { - throw new EOFException(); - } - - return new UMID(umid); - } - - /** - * Reads an MXF array into a Java Collection - * - * @param Type of the collection elements - * @param TripletValueAdapter that is used to convert MXF array elements into Java collection elements - * @return Collection of elements of type T - * @throws KLVException - * @throws IOException - */ - public Collection readArray() throws KLVException, IOException { - return readBatch(); - } - - /** - * Reads an MXF batch into a Java Collection - * - * @param Type of the collection elements - * @param TripletValueAdapter that is used to convert MXF batch elements into Java collection elements - * @return Collection of elements of type T - * @throws KLVException - * @throws IOException - */ - public Collection readBatch() throws KLVException, IOException { - ArrayList batch = new ArrayList<>(); - long itemcount = readUnsignedInt(); - long itemlength = readUnsignedInt(); - if (itemlength > Integer.MAX_VALUE) { - throw new KLVException(KLVException.MAX_LENGTH_EXCEEED); - } - for (int i = 0; i < itemcount; i++) { - byte[] value = new byte[(int) itemlength]; - batch.add(W.fromValue(value)); - } - return batch; - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.KLVInputStream; +import com.sandflow.smpte.klv.adapters.TripletValueAdapter; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.IDAU; +import com.sandflow.smpte.util.UMID; +import com.sandflow.smpte.util.UUID; +import java.io.EOFException; +import java.io.IOException; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.Collection; + +/** + * MXFInputStream allows MXF data structures to be read from an InputStream + */ +public class MXFInputStream extends KLVInputStream { + + /** + * Assumes big endian byte ordering. + * + * @param is InputStream to read from + */ + public MXFInputStream(InputStream is) { + super(is); + } + + /** + * Allows the byte ordering to be specified. + * + * @param is InputStream to read from + * @param byteorder Byte ordering of the file + */ + public MXFInputStream(InputStream is, ByteOrder byteorder) { + super(is, byteorder); + } + + /** + * Reads a single UUID. + * @return UUID + * @throws IOException + * @throws EOFException + */ + public UUID readUUID() throws IOException, EOFException { + byte[] uuid = new byte[16]; + + readFully(uuid); + + if (getByteOrder() == ByteOrder.LITTLE_ENDIAN) { + + uuidLEtoBE(uuid); + + } + + return new UUID(uuid); + } + + /** + * Reads a single IDAU. + * @return IDAU + * @throws IOException + * @throws EOFException + */ + public IDAU readIDAU() throws IOException, EOFException { + byte[] idau = new byte[16]; + + readFully(idau); + + if (getByteOrder() == ByteOrder.LITTLE_ENDIAN) { + + uuidLEtoBE(idau); + + } + + return new IDAU(idau); + } + + /** + * Reads a single UMID. + * @return UMID + * @throws IOException + * @throws EOFException + */ + public UMID readUMID() throws IOException, EOFException { + byte[] umid = new byte[32]; + + readFully(umid); + + return new UMID(umid); + } + + /** + * Reads an MXF array into a Java Collection + * + * @param Type of the collection elements + * @param TripletValueAdapter that is used to convert MXF array elements into Java collection elements + * @return Collection of elements of type T + * @throws KLVException + * @throws IOException + */ + public Collection readArray() throws KLVException, IOException { + return readBatch(); + } + + /** + * Reads an MXF batch into a Java Collection + * + * @param Type of the collection elements + * @param TripletValueAdapter that is used to convert MXF batch elements into Java collection elements + * @return Collection of elements of type T + * @throws KLVException + * @throws IOException + */ + public Collection readBatch() throws KLVException, IOException { + ArrayList batch = new ArrayList<>(); + long itemcount = readUnsignedInt(); + long itemlength = readUnsignedInt(); + if (itemlength > Integer.MAX_VALUE) { + throw new KLVException(KLVException.MAX_LENGTH_EXCEEED); + } + for (int i = 0; i < itemcount; i++) { + byte[] value = new byte[(int) itemlength]; + read(value); + batch.add(W.fromValue(value)); + } + return batch; + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/PartitionPack.java b/src/main/java/com/sandflow/smpte/mxf/PartitionPack.java similarity index 95% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/PartitionPack.java rename to src/main/java/com/sandflow/smpte/mxf/PartitionPack.java index 7046951..0f09a0a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/PartitionPack.java +++ b/src/main/java/com/sandflow/smpte/mxf/PartitionPack.java @@ -1,283 +1,283 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.adapters.ULValueAdapter; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Collection; - -/** - * Represents a MXF Partition Pack Item (see SMPTE ST 377-1) - */ -public class PartitionPack { - - private static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0d, 0x01, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00}); - - /** - * Returns the Partition Pack Key - * @return Key - */ - public static UL getKey() { - return KEY; - } - - /** - * Creates a Partition Pack from a Triplet - * @param triplet Triplet from which to create the Partition Pack - * @return PartitionPack or null if the Triplet is not a Partition Pack - * @throws KLVException - */ - public static PartitionPack fromTriplet(Triplet triplet) throws KLVException { - PartitionPack pp = new PartitionPack(); - - if (!KEY.equalsWithMask(triplet.getKey(), 0xfef9 /*11111110 11111001*/)) { - return null; - } - - switch (triplet.getKey().getValueOctet(14)) { - case 0x01: - pp.setStatus(Status.OPEN_INCOMPLETE); - break; - case 0x02: - pp.setStatus(Status.CLOSED_INCOMPLETE); - break; - case 0x03: - pp.setStatus(Status.OPEN_COMPLETE); - break; - case 0x04: - pp.setStatus(Status.CLOSED_COMPLETE); - break; - default: - return null; - } - - switch (triplet.getKey().getValueOctet(13)) { - case 0x02: - pp.setKind(Kind.HEADER); - - break; - case 0x03: - pp.setKind(Kind.BODY); - - break; - case 0x04: - pp.setKind(Kind.FOOTER); - if (pp.getStatus() == Status.OPEN_COMPLETE - || pp.getStatus() == Status.OPEN_INCOMPLETE) { - return null; - } - break; - default: - return null; - } - - MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); - - try { - - pp.setMajorVersion(kis.readUnsignedShort()); - - pp.setMinorVersion(kis.readUnsignedShort()); - - pp.setKagSize(kis.readUnsignedInt()); - - pp.setThisPartition(kis.readLong()); - - pp.setPreviousPartition(kis.readLong()); - - pp.setFooterPartition(kis.readLong()); - - pp.setHeaderByteCount(kis.readLong()); - - pp.setIndexByteCount(kis.readLong()); - - pp.setIndexSID(kis.readUnsignedInt()); - - pp.setBodyOffset(kis.readLong()); - - pp.setBodySID(kis.readLong()); - - pp.setOperationalPattern(kis.readUL()); - - pp.setEssenceContainers(kis.readBatch()); - - } catch (IOException e) { - throw new KLVException(e); - } - - return pp; - } - - private int majorVersion; - private int minorVersion; - private long kagSize; - private long thisPartition; - private long previousPartition; - private long footerPartition; - private long headerByteCount; - private long indexByteCount; - private long indexSID; - private long bodyOffset; - private long bodySID; - private UL operationalPattern; - private ArrayList
    essenceContainers = new ArrayList<>(); - private Kind kind; - private Status status; - - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - public Status getStatus() { - return status; - } - - public void setStatus(Status status) { - this.status = status; - } - - - public int getMajorVersion() { - return majorVersion; - } - - public void setMajorVersion(int majorVersion) { - this.majorVersion = majorVersion; - } - - public int getMinorVersion() { - return minorVersion; - } - - public void setMinorVersion(int minorVersion) { - this.minorVersion = minorVersion; - } - - public long getKagSize() { - return kagSize; - } - - public void setKagSize(long kagSize) { - this.kagSize = kagSize; - } - - public long getThisPartition() { - return thisPartition; - } - - public void setThisPartition(long thisPartition) { - this.thisPartition = thisPartition; - } - - public long getPreviousPartition() { - return previousPartition; - } - - public void setPreviousPartition(long previousPartition) { - this.previousPartition = previousPartition; - } - - public long getFooterPartition() { - return footerPartition; - } - - public void setFooterPartition(long footerPartition) { - this.footerPartition = footerPartition; - } - - public long getHeaderByteCount() { - return headerByteCount; - } - - public void setHeaderByteCount(long headerByteCount) { - this.headerByteCount = headerByteCount; - } - - public long getIndexByteCount() { - return indexByteCount; - } - - public void setIndexByteCount(long indexByteCount) { - this.indexByteCount = indexByteCount; - } - - public long getIndexSID() { - return indexSID; - } - - public void setIndexSID(long indexSID) { - this.indexSID = indexSID; - } - - public long getBodyOffset() { - return bodyOffset; - } - - public void setBodyOffset(long bodyOffset) { - this.bodyOffset = bodyOffset; - } - - public long getBodySID() { - return bodySID; - } - - public void setBodySID(long bodySID) { - this.bodySID = bodySID; - } - - public UL getOperationalPattern() { - return operationalPattern; - } - - public void setOperationalPattern(UL operationalPattern) { - this.operationalPattern = operationalPattern; - } - - public Collection
      getEssenceContainers() { - return essenceContainers; - } - - public void setEssenceContainers(Collection
        essenceContainers) { - this.essenceContainers = new ArrayList<>(essenceContainers); - } - - public enum Kind { - HEADER, BODY, FOOTER - } - - public enum Status { - - OPEN_INCOMPLETE, CLOSED_INCOMPLETE, OPEN_COMPLETE, CLOSED_COMPLETE - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.adapters.ULValueAdapter; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collection; + +/** + * Represents a MXF Partition Pack Item (see SMPTE ST 377-1) + */ +public class PartitionPack { + + private static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0d, 0x01, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00}); + + /** + * Returns the Partition Pack Key + * @return Key + */ + public static UL getKey() { + return KEY; + } + + /** + * Creates a Partition Pack from a Triplet + * @param triplet Triplet from which to create the Partition Pack + * @return PartitionPack or null if the Triplet is not a Partition Pack + * @throws KLVException + */ + public static PartitionPack fromTriplet(Triplet triplet) throws KLVException { + PartitionPack pp = new PartitionPack(); + + if (!KEY.equalsWithMask(triplet.getKey(), 0xfef9 /*11111110 11111001*/)) { + return null; + } + + switch (triplet.getKey().asUL().getValueOctet(14)) { + case 0x01: + pp.setStatus(Status.OPEN_INCOMPLETE); + break; + case 0x02: + pp.setStatus(Status.CLOSED_INCOMPLETE); + break; + case 0x03: + pp.setStatus(Status.OPEN_COMPLETE); + break; + case 0x04: + pp.setStatus(Status.CLOSED_COMPLETE); + break; + default: + return null; + } + + switch (triplet.getKey().asUL().getValueOctet(13)) { + case 0x02: + pp.setKind(Kind.HEADER); + + break; + case 0x03: + pp.setKind(Kind.BODY); + + break; + case 0x04: + pp.setKind(Kind.FOOTER); + if (pp.getStatus() == Status.OPEN_COMPLETE + || pp.getStatus() == Status.OPEN_INCOMPLETE) { + return null; + } + break; + default: + return null; + } + + MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); + + try { + + pp.setMajorVersion(kis.readUnsignedShort()); + + pp.setMinorVersion(kis.readUnsignedShort()); + + pp.setKagSize(kis.readUnsignedInt()); + + pp.setThisPartition(kis.readLong()); + + pp.setPreviousPartition(kis.readLong()); + + pp.setFooterPartition(kis.readLong()); + + pp.setHeaderByteCount(kis.readLong()); + + pp.setIndexByteCount(kis.readLong()); + + pp.setIndexSID(kis.readUnsignedInt()); + + pp.setBodyOffset(kis.readLong()); + + pp.setBodySID(kis.readLong()); + + pp.setOperationalPattern(kis.readUL()); + + pp.setEssenceContainers(kis.readBatch()); + + } catch (IOException e) { + throw new KLVException(e); + } + + return pp; + } + + private int majorVersion; + private int minorVersion; + private long kagSize; + private long thisPartition; + private long previousPartition; + private long footerPartition; + private long headerByteCount; + private long indexByteCount; + private long indexSID; + private long bodyOffset; + private long bodySID; + private UL operationalPattern; + private ArrayList
          essenceContainers = new ArrayList<>(); + private Kind kind; + private Status status; + + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + public Status getStatus() { + return status; + } + + public void setStatus(Status status) { + this.status = status; + } + + + public int getMajorVersion() { + return majorVersion; + } + + public void setMajorVersion(int majorVersion) { + this.majorVersion = majorVersion; + } + + public int getMinorVersion() { + return minorVersion; + } + + public void setMinorVersion(int minorVersion) { + this.minorVersion = minorVersion; + } + + public long getKagSize() { + return kagSize; + } + + public void setKagSize(long kagSize) { + this.kagSize = kagSize; + } + + public long getThisPartition() { + return thisPartition; + } + + public void setThisPartition(long thisPartition) { + this.thisPartition = thisPartition; + } + + public long getPreviousPartition() { + return previousPartition; + } + + public void setPreviousPartition(long previousPartition) { + this.previousPartition = previousPartition; + } + + public long getFooterPartition() { + return footerPartition; + } + + public void setFooterPartition(long footerPartition) { + this.footerPartition = footerPartition; + } + + public long getHeaderByteCount() { + return headerByteCount; + } + + public void setHeaderByteCount(long headerByteCount) { + this.headerByteCount = headerByteCount; + } + + public long getIndexByteCount() { + return indexByteCount; + } + + public void setIndexByteCount(long indexByteCount) { + this.indexByteCount = indexByteCount; + } + + public long getIndexSID() { + return indexSID; + } + + public void setIndexSID(long indexSID) { + this.indexSID = indexSID; + } + + public long getBodyOffset() { + return bodyOffset; + } + + public void setBodyOffset(long bodyOffset) { + this.bodyOffset = bodyOffset; + } + + public long getBodySID() { + return bodySID; + } + + public void setBodySID(long bodySID) { + this.bodySID = bodySID; + } + + public UL getOperationalPattern() { + return operationalPattern; + } + + public void setOperationalPattern(UL operationalPattern) { + this.operationalPattern = operationalPattern; + } + + public Collection
            getEssenceContainers() { + return essenceContainers; + } + + public void setEssenceContainers(Collection
              essenceContainers) { + this.essenceContainers = new ArrayList<>(essenceContainers); + } + + public enum Kind { + HEADER, BODY, FOOTER + } + + public enum Status { + + OPEN_INCOMPLETE, CLOSED_INCOMPLETE, OPEN_COMPLETE, CLOSED_COMPLETE + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/PrimerPack.java b/src/main/java/com/sandflow/smpte/mxf/PrimerPack.java similarity index 95% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/PrimerPack.java rename to src/main/java/com/sandflow/smpte/mxf/PrimerPack.java index 04a548b..c65fda6 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/PrimerPack.java +++ b/src/main/java/com/sandflow/smpte/mxf/PrimerPack.java @@ -1,85 +1,86 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.LocalTagRegister; -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.util.HashMap; - -/** - * Represents a MXF Primer Pack (see SMPTE ST 377-1) - */ -public class PrimerPack { - - private static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0d, 0x01, 0x02, 0x01, 0x01, 0x05, 0x01, 0x00}); - - /** - * Creates a LocalTagRegister from a PrimerPack - * - * @param triplet Triplet representation of the Primer Pack - * @return LocalTagRegister or null if the Triplet is not a Primer Pack - * @throws KLVException - */ - public static LocalTagRegister createLocalTagRegister(Triplet triplet) throws KLVException { - - if (!PrimerPack.KEY.equalsIgnoreVersion(triplet.getKey())) { - return null; - } - - HashMap reg = new HashMap<>(); - - MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); - - try { - - long itemcount = kis.readUnsignedInt(); - - long itemlength = kis.readUnsignedInt(); - - for (int i = 0; i < itemcount; i++) { - - reg.put((long) kis.readUnsignedShort(), kis.readUL()); - } - - } catch (IOException e) { - throw new KLVException(e); - } - - return new LocalTagRegister(reg); - } - - /** - * Returns the Primer Pack Key - * - * @return Key - */ - public static UL getKey() { - return KEY; - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.LocalTagRegister; +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.util.HashMap; + +/** + * Represents a MXF Primer Pack (see SMPTE ST 377-1) + */ +public class PrimerPack { + + private static final UL KEY = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0d, 0x01, 0x02, 0x01, 0x01, 0x05, 0x01, 0x00}); + + /** + * Creates a LocalTagRegister from a PrimerPack + * + * @param triplet Triplet representation of the Primer Pack + * @return LocalTagRegister or null if the Triplet is not a Primer Pack + * @throws KLVException + */ + public static LocalTagRegister createLocalTagRegister(Triplet triplet) throws KLVException { + + if (!PrimerPack.KEY.equalsIgnoreVersion(triplet.getKey())) { + return null; + } + + HashMap reg = new HashMap<>(); + + MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); + + try { + + long itemcount = kis.readUnsignedInt(); + + long itemlength = kis.readUnsignedInt(); + + for (int i = 0; i < itemcount; i++) { + + reg.put((long) kis.readUnsignedShort(), kis.readAUID()); + } + + } catch (IOException e) { + throw new KLVException(e); + } + + return new LocalTagRegister(reg); + } + + /** + * Returns the Primer Pack Key + * + * @return Key + */ + public static UL getKey() { + return KEY; + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java b/src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java rename to src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java index ed18f6a..2284a28 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java +++ b/src/main/java/com/sandflow/smpte/mxf/RandomIndexPack.java @@ -1,129 +1,129 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.util.ArrayList; - -/** - * Represents a MXF Partition Pack Item (see SMPTE ST 377-1) - */ -public class RandomIndexPack { - - private static final UL KEY = UL.fromURN("urn:smpte:ul:060e2b34.02050101.0d010201.01110100"); - - /** - * Returns the Pack Key - * @return Key - */ - public static UL getKey() { - return KEY; - } - - /** - * Creates a Random Index Pack (RIP) from a Triplet - * @param triplet Triplet from which to create the RIP - * @return Random Index Pack or null if the Triplet is not a Random Index Pack - * @throws KLVException - */ - public static RandomIndexPack fromTriplet(Triplet triplet) throws KLVException { - RandomIndexPack pp = new RandomIndexPack(); - - if (!KEY.equals(triplet.getKey())) { - return null; - } - - /* does the length make sense? */ - - if ((triplet.getLength() - 4) % 12 != 0) { - return null; - } - - long count = (triplet.getLength() - 4)/12; - - try { - MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); - - - for(int i = 0; i < count; i++) { - - long bodySID = kis.readUnsignedInt(); - long offset = kis.readLong(); - - PartitionOffset po = new PartitionOffset(bodySID, offset); - - pp.offsets.add(po); - } - - } catch (IOException e) { - throw new KLVException(e); - } - - return pp; - } - - /** - * @return Ordered array containing the offsets stored in the RIP - */ - public ArrayList getOffsets() { - return offsets; - } - - private final ArrayList offsets = new ArrayList<>(); - - /** - * Represents one partition offset entry stored in the RIP - */ - static public class PartitionOffset { - private final long bodySID; - private final long offset; - - public PartitionOffset(long bodySID, long offset) { - this.bodySID = bodySID; - this.offset = offset; - } - - /** - * - * @return Identifies the partition - */ - public long getBodySID() { - return bodySID; - } - - /** - * - * @return Offset (in bytes) of the partition - */ - public long getOffset() { - return offset; - } - - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.util.ArrayList; + +/** + * Represents a MXF Partition Pack Item (see SMPTE ST 377-1) + */ +public class RandomIndexPack { + + private static final UL KEY = UL.fromURN("urn:smpte:ul:060e2b34.02050101.0d010201.01110100"); + + /** + * Returns the Pack Key + * @return Key + */ + public static UL getKey() { + return KEY; + } + + /** + * Creates a Random Index Pack (RIP) from a Triplet + * @param triplet Triplet from which to create the RIP + * @return Random Index Pack or null if the Triplet is not a Random Index Pack + * @throws KLVException + */ + public static RandomIndexPack fromTriplet(Triplet triplet) throws KLVException { + RandomIndexPack pp = new RandomIndexPack(); + + if (!KEY.equals(triplet.getKey())) { + return null; + } + + /* does the length make sense? */ + + if ((triplet.getLength() - 4) % 12 != 0) { + return null; + } + + long count = (triplet.getLength() - 4)/12; + + try { + MXFInputStream kis = new MXFInputStream(triplet.getValueAsStream()); + + + for(int i = 0; i < count; i++) { + + long bodySID = kis.readUnsignedInt(); + long offset = kis.readLong(); + + PartitionOffset po = new PartitionOffset(bodySID, offset); + + pp.offsets.add(po); + } + + } catch (IOException e) { + throw new KLVException(e); + } + + return pp; + } + + /** + * @return Ordered array containing the offsets stored in the RIP + */ + public ArrayList getOffsets() { + return offsets; + } + + private final ArrayList offsets = new ArrayList<>(); + + /** + * Represents one partition offset entry stored in the RIP + */ + static public class PartitionOffset { + private final long bodySID; + private final long offset; + + public PartitionOffset(long bodySID, long offset) { + this.bodySID = bodySID; + this.offset = offset; + } + + /** + * + * @return Identifies the partition + */ + public long getBodySID() { + return bodySID; + } + + /** + * + * @return Offset (in bytes) of the partition + */ + public long getOffset() { + return offset; + } + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/Set.java b/src/main/java/com/sandflow/smpte/mxf/Set.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/Set.java rename to src/main/java/com/sandflow/smpte/mxf/Set.java index d7d4baa..a33f81d 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/Set.java +++ b/src/main/java/com/sandflow/smpte/mxf/Set.java @@ -1,90 +1,90 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.mxf; - -import com.sandflow.smpte.klv.Group; -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.UUID; -import java.util.Collection; - -/** - * Represents a MXF Set (see SMPTE ST 377-1) - */ -public class Set implements Group{ - private static final UL INSTANCE_UID_ITEM_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000"); - - /** - * Creates an MXF Set from a Group - * @param group Group from which to create the MXF Set - * @return MXF Set or null if the Group does not contain an Instance ID property - */ - static public Set fromGroup(Group group) { - - for (Triplet t : group.getItems()) { - - if (INSTANCE_UID_ITEM_UL.equalsIgnoreVersion(t.getKey())) { - - UUID uuid = new UUID(t.getValue()); - - return new Set(group, uuid); - } - - } - - return null; - } - - private final UUID instanceID; - private final Group group; - - private Set(Group group, UUID instanceID) { - this.group = group; - this.instanceID = instanceID; - } - - @Override - public Collection getItems() { - return group.getItems(); - } - - @Override - public UL getKey() { - return group.getKey(); - } - - /** - * Returns the Instance ID of the MXF Set - * - * @return UUID - */ - public UUID getInstanceID() { - return instanceID; - } - - - -} +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.mxf; + +import com.sandflow.smpte.klv.Group; +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.UUID; +import java.util.Collection; + +/** + * Represents a MXF Set (see SMPTE ST 377-1) + */ +public class Set implements Group{ + private static final UL INSTANCE_UID_ITEM_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000"); + + /** + * Creates an MXF Set from a Group + * @param group Group from which to create the MXF Set + * @return MXF Set or null if the Group does not contain an Instance ID property + */ + static public Set fromGroup(Group group) { + + for (Triplet t : group.getItems()) { + + if (INSTANCE_UID_ITEM_UL.equalsIgnoreVersion(t.getKey())) { + + UUID uuid = new UUID(t.getValue()); + + return new Set(group, uuid); + } + + } + + return null; + } + + private final UUID instanceID; + private final Group group; + + private Set(Group group, UUID instanceID) { + this.group = group; + this.instanceID = instanceID; + } + + @Override + public Collection getItems() { + return group.getItems(); + } + + @Override + public UL getKey() { + return group.getKey(); + } + + /** + * Returns the Instance ID of the MXF Set + * + * @return UUID + */ + public UUID getInstanceID() { + return instanceID; + } + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/mxf/package-info.java b/src/main/java/com/sandflow/smpte/mxf/package-info.java similarity index 98% rename from regxmllib/src/main/java/com/sandflow/smpte/mxf/package-info.java rename to src/main/java/com/sandflow/smpte/mxf/package-info.java index bf7c584..63bed72 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/mxf/package-info.java +++ b/src/main/java/com/sandflow/smpte/mxf/package-info.java @@ -1,30 +1,30 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Allows the processing of SMPTE MXF data structures, as specified in SMPTE ST 377-1. - */ -package com.sandflow.smpte.mxf; +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Allows the processing of SMPTE MXF data structures, as specified in SMPTE ST 377-1. + */ +package com.sandflow.smpte.mxf; diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/ElementsRegister.java b/src/main/java/com/sandflow/smpte/register/ElementsRegister.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/ElementsRegister.java rename to src/main/java/com/sandflow/smpte/register/ElementsRegister.java index 6848aef..6159234 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/ElementsRegister.java +++ b/src/main/java/com/sandflow/smpte/register/ElementsRegister.java @@ -1,153 +1,153 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register; - -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.io.Reader; -import java.io.Writer; -import java.net.URI; -import java.util.Collection; -import java.util.HashMap; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.Unmarshaller; -import javax.xml.bind.annotation.XmlTransient; -import javax.xml.bind.annotation.XmlType; - -/** - * Elements Register as defined in SMPTE ST 335 - */ -@XmlTransient -public abstract class ElementsRegister { - - private final HashMap entriesBySymbol = new HashMap<>(); - - private final HashMap entriesByUL = new HashMap<>(); - - protected ElementsRegister() { - } - - public Entry getEntryByUL(UL ul) { - return entriesByUL.get(ul); - } - - public Entry getEntryBySymbol(QualifiedSymbol qs) { - return entriesBySymbol.get(qs); - } - - public abstract Collection getEntries(); - - public void toXML(Writer writer) throws JAXBException, IOException { - - JAXBContext ctx = JAXBContext.newInstance(this.getClass()); - - Marshaller m = ctx.createMarshaller(); - m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); - m.marshal(this, writer); - writer.close(); - } - - public static ElementsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { - - JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.ElementsRegisterModel.class); - - Unmarshaller m = ctx.createUnmarshaller(); - ElementsRegister reg = (ElementsRegister) m.unmarshal(reader); - - for (Entry te : reg.getEntries()) { - QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); - - if (reg.getEntryByUL(te.getUL()) != null) { - throw new DuplicateEntryException( - String.format("UL = %s is already present (symbol = %s).", - te.getUL(), - te.getSymbol() - ) - ); - } - - if (reg.entriesBySymbol.get(sym) != null) { - throw new DuplicateEntryException( - String.format( - "Symbol = %s is already present (UL = %s).", - te.getSymbol(), - te.getUL() - ) - ); - } - - reg.entriesByUL.put(te.getUL(), te); - reg.entriesBySymbol.put(sym, te); - } - - return reg; - - } - - /** - * Single Entry in an Elements Register (SMPTE ST 335) - */ - public static interface Entry { - - String getApplications(); - - String getContextScope(); - - String getDefiningDocument(); - - String getDefinition(); - - Kind getKind(); - - String getName(); - - URI getNamespaceName(); - - String getNotes(); - - String getSymbol(); - - UL getTypeUL(); - - UL getUL(); - - String getUnitOfMeasure(); - - String getValueLength(); - - String getValueRange(); - - boolean isDeprecated(); - - @XmlType(name = "") - public static enum Kind { - NODE, LEAF - } - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register; + +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.net.URI; +import java.util.Collection; +import java.util.HashMap; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.Unmarshaller; +import javax.xml.bind.annotation.XmlTransient; +import javax.xml.bind.annotation.XmlType; + +/** + * Elements Register as defined in SMPTE ST 335 + */ +@XmlTransient +public abstract class ElementsRegister { + + private final HashMap entriesBySymbol = new HashMap<>(); + + private final HashMap entriesByUL = new HashMap<>(); + + protected ElementsRegister() { + } + + public Entry getEntryByUL(UL ul) { + return entriesByUL.get(ul); + } + + public Entry getEntryBySymbol(QualifiedSymbol qs) { + return entriesBySymbol.get(qs); + } + + public abstract Collection getEntries(); + + public void toXML(Writer writer) throws JAXBException, IOException { + + JAXBContext ctx = JAXBContext.newInstance(this.getClass()); + + Marshaller m = ctx.createMarshaller(); + m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); + m.marshal(this, writer); + writer.close(); + } + + public static ElementsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { + + JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.ElementsRegisterModel.class); + + Unmarshaller m = ctx.createUnmarshaller(); + ElementsRegister reg = (ElementsRegister) m.unmarshal(reader); + + for (Entry te : reg.getEntries()) { + QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); + + if (reg.getEntryByUL(te.getUL()) != null) { + throw new DuplicateEntryException( + String.format("UL = %s is already present (symbol = %s).", + te.getUL(), + te.getSymbol() + ) + ); + } + + if (reg.entriesBySymbol.get(sym) != null) { + throw new DuplicateEntryException( + String.format( + "Symbol = %s is already present (UL = %s).", + te.getSymbol(), + te.getUL() + ) + ); + } + + reg.entriesByUL.put(te.getUL(), te); + reg.entriesBySymbol.put(sym, te); + } + + return reg; + + } + + /** + * Single Entry in an Elements Register (SMPTE ST 335) + */ + public static interface Entry { + + String getApplications(); + + String getContextScope(); + + String getDefiningDocument(); + + String getDefinition(); + + Kind getKind(); + + String getName(); + + URI getNamespaceName(); + + String getNotes(); + + String getSymbol(); + + UL getTypeUL(); + + UL getUL(); + + String getUnitOfMeasure(); + + String getValueLength(); + + String getValueRange(); + + boolean isDeprecated(); + + @XmlType(name = "") + public static enum Kind { + NODE, LEAF + } + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/GroupsRegister.java b/src/main/java/com/sandflow/smpte/register/GroupsRegister.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/GroupsRegister.java rename to src/main/java/com/sandflow/smpte/register/GroupsRegister.java index d39d292..ffcbfd8 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/GroupsRegister.java +++ b/src/main/java/com/sandflow/smpte/register/GroupsRegister.java @@ -1,181 +1,181 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register; - -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.io.Reader; -import java.io.Writer; -import java.net.URI; -import java.util.Collection; -import java.util.HashMap; -import java.util.Set; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.Unmarshaller; -import javax.xml.bind.annotation.XmlTransient; -import javax.xml.bind.annotation.XmlType; - -/** - * Groups Register as defined in SMPTE ST 395 - */ -@XmlTransient -public abstract class GroupsRegister { - - - private final HashMap entriesBySymbol = new HashMap<>(); - - private final HashMap entriesByUL = new HashMap<>(); - - public GroupsRegister() { - } - - public Entry getEntryByUL(UL ul) { - return entriesByUL.get(ul); - } - - public Entry getEntryBySymbol(QualifiedSymbol qs) { - return entriesBySymbol.get(qs); - } - - public abstract Collection getEntries(); - - public void toXML(Writer writer) throws JAXBException, IOException { - - JAXBContext ctx = JAXBContext.newInstance(this.getClass()); - - Marshaller m = ctx.createMarshaller(); - m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); - m.marshal(this, writer); - writer.close(); - } - - public static GroupsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { - - JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.brown_sauce.GroupsRegisterModel.class, - com.sandflow.smpte.register.catsup.GroupsRegisterModel.class); - - Unmarshaller m = ctx.createUnmarshaller(); - GroupsRegister reg = (GroupsRegister) m.unmarshal(reader); - - for (Entry te : reg.getEntries()) { - QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); - - if (reg.getEntryByUL(te.getUL()) != null) { - throw new DuplicateEntryException( - String.format("UL = %s is already present (symbol = %s).", - te.getUL(), - te.getSymbol() - ) - ); - } - - if (reg.entriesBySymbol.get(sym) != null) { - throw new DuplicateEntryException( - String.format( - "Symbol = %s is already present (UL = %s).", - te.getSymbol(), - te.getUL() - ) - ); - } - - reg.entriesByUL.put(te.getUL(), te); - reg.entriesBySymbol.put(sym, te); - } - - return reg; - - } - - /** - * - * @author pal - */ - public static interface Entry { - - String getApplications(); - - Collection getContents(); - - String getDefiningDocument(); - - String getDefinition(); - - Kind getKind(); - - Set getKlvSyntax(); - - String getName(); - - URI getNamespaceName(); - - String getNotes(); - - UL getParent(); - - String getSymbol(); - - UL getUL(); - - Boolean isConcrete(); - - boolean isDeprecated(); - - - @XmlType(name = "") - public static enum Kind { - NODE, LEAF - } - - /** - * - * @author pal - */ - public static interface Record { - - Boolean getDistinguished(); - - Boolean getIgnorable(); - - UL getItem(); - - Long getLimitLength(); - - Long getLocalTag(); - - Boolean getOptional(); - - Boolean getUniqueID(); - - String getValue(); - - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register; + +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.net.URI; +import java.util.Collection; +import java.util.HashMap; +import java.util.Set; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.Unmarshaller; +import javax.xml.bind.annotation.XmlTransient; +import javax.xml.bind.annotation.XmlType; + +/** + * Groups Register as defined in SMPTE ST 395 + */ +@XmlTransient +public abstract class GroupsRegister { + + + private final HashMap entriesBySymbol = new HashMap<>(); + + private final HashMap entriesByUL = new HashMap<>(); + + public GroupsRegister() { + } + + public Entry getEntryByUL(UL ul) { + return entriesByUL.get(ul); + } + + public Entry getEntryBySymbol(QualifiedSymbol qs) { + return entriesBySymbol.get(qs); + } + + public abstract Collection getEntries(); + + public void toXML(Writer writer) throws JAXBException, IOException { + + JAXBContext ctx = JAXBContext.newInstance(this.getClass()); + + Marshaller m = ctx.createMarshaller(); + m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); + m.marshal(this, writer); + writer.close(); + } + + public static GroupsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { + + JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.brown_sauce.GroupsRegisterModel.class, + com.sandflow.smpte.register.catsup.GroupsRegisterModel.class); + + Unmarshaller m = ctx.createUnmarshaller(); + GroupsRegister reg = (GroupsRegister) m.unmarshal(reader); + + for (Entry te : reg.getEntries()) { + QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); + + if (reg.getEntryByUL(te.getUL()) != null) { + throw new DuplicateEntryException( + String.format("UL = %s is already present (symbol = %s).", + te.getUL(), + te.getSymbol() + ) + ); + } + + if (reg.entriesBySymbol.get(sym) != null) { + throw new DuplicateEntryException( + String.format( + "Symbol = %s is already present (UL = %s).", + te.getSymbol(), + te.getUL() + ) + ); + } + + reg.entriesByUL.put(te.getUL(), te); + reg.entriesBySymbol.put(sym, te); + } + + return reg; + + } + + /** + * + * @author pal + */ + public static interface Entry { + + String getApplications(); + + Collection getContents(); + + String getDefiningDocument(); + + String getDefinition(); + + Kind getKind(); + + Set getKlvSyntax(); + + String getName(); + + URI getNamespaceName(); + + String getNotes(); + + UL getParent(); + + String getSymbol(); + + UL getUL(); + + Boolean isConcrete(); + + boolean isDeprecated(); + + + @XmlType(name = "") + public static enum Kind { + NODE, LEAF + } + + /** + * + * @author pal + */ + public static interface Record { + + Boolean getDistinguished(); + + Boolean getIgnorable(); + + UL getItem(); + + Long getLimitLength(); + + Long getLocalTag(); + + Boolean getOptional(); + + Boolean getUniqueID(); + + String getValue(); + + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/LabelsRegister.java b/src/main/java/com/sandflow/smpte/register/LabelsRegister.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/LabelsRegister.java rename to src/main/java/com/sandflow/smpte/register/LabelsRegister.java index c15f408..10306a5 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/LabelsRegister.java +++ b/src/main/java/com/sandflow/smpte/register/LabelsRegister.java @@ -1,148 +1,148 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register; - -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.io.Reader; -import java.io.Writer; -import java.net.URI; -import java.util.Collection; -import java.util.HashMap; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.Unmarshaller; -import javax.xml.bind.annotation.XmlTransient; -import javax.xml.bind.annotation.XmlType; - -/** - * Labels Register as defined in SMPTE ST 400 - */ -@XmlTransient -public abstract class LabelsRegister { - - private final HashMap entriesBySymbol = new HashMap<>(); - - private final HashMap entriesByUL = new HashMap<>(); - - public LabelsRegister() { - } - - public Entry getEntryByUL(UL ul) { - return entriesByUL.get(ul); - } - - public Entry getEntryBySymbol(QualifiedSymbol qs) { - return entriesBySymbol.get(qs); - } - - public abstract Collection getEntries(); - - public void toXML(Writer writer) throws JAXBException, IOException { - - JAXBContext ctx = JAXBContext.newInstance(this.getClass()); - - Marshaller m = ctx.createMarshaller(); - m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); - m.marshal(this, writer); - writer.close(); - } - - public static LabelsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { - - JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.LabelsRegisterModel.class); - - Unmarshaller m = ctx.createUnmarshaller(); - LabelsRegister reg = (LabelsRegister) m.unmarshal(reader); - - for (Entry te : reg.getEntries()) { - QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); - - if (reg.getEntryByUL(te.getUL()) != null) { - throw new DuplicateEntryException( - String.format("UL = %s is already present (symbol = %s).", - te.getUL(), - te.getSymbol() - ) - ); - } - - if (reg.entriesBySymbol.get(sym) != null) { - throw new DuplicateEntryException( - String.format( - "Symbol = %s is already present (UL = %s).", - te.getSymbol(), - te.getUL() - ) - ); - } - - reg.entriesByUL.put(te.getUL(), te); - reg.entriesBySymbol.put(sym, te); - } - - return reg; - - } - - /** - * Single Entry in a Labels Register (SMPTE ST 400) - */ - /** - * - * @author pal - */ - public static interface Entry { - - String getApplications(); - - String getDefiningDocument(); - - String getDefinition(); - - Kind getKind(); - - String getName(); - - URI getNamespaceName(); - - String getNotes(); - - String getSymbol(); - - UL getUL(); - - boolean isDeprecated(); - - @XmlType(name = "") - public enum Kind { - - NODE, LEAF - } - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register; + +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.net.URI; +import java.util.Collection; +import java.util.HashMap; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.Unmarshaller; +import javax.xml.bind.annotation.XmlTransient; +import javax.xml.bind.annotation.XmlType; + +/** + * Labels Register as defined in SMPTE ST 400 + */ +@XmlTransient +public abstract class LabelsRegister { + + private final HashMap entriesBySymbol = new HashMap<>(); + + private final HashMap entriesByUL = new HashMap<>(); + + public LabelsRegister() { + } + + public Entry getEntryByUL(UL ul) { + return entriesByUL.get(ul); + } + + public Entry getEntryBySymbol(QualifiedSymbol qs) { + return entriesBySymbol.get(qs); + } + + public abstract Collection getEntries(); + + public void toXML(Writer writer) throws JAXBException, IOException { + + JAXBContext ctx = JAXBContext.newInstance(this.getClass()); + + Marshaller m = ctx.createMarshaller(); + m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); + m.marshal(this, writer); + writer.close(); + } + + public static LabelsRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { + + JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.LabelsRegisterModel.class); + + Unmarshaller m = ctx.createUnmarshaller(); + LabelsRegister reg = (LabelsRegister) m.unmarshal(reader); + + for (Entry te : reg.getEntries()) { + QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); + + if (reg.getEntryByUL(te.getUL()) != null) { + throw new DuplicateEntryException( + String.format("UL = %s is already present (symbol = %s).", + te.getUL(), + te.getSymbol() + ) + ); + } + + if (reg.entriesBySymbol.get(sym) != null) { + throw new DuplicateEntryException( + String.format( + "Symbol = %s is already present (UL = %s).", + te.getSymbol(), + te.getUL() + ) + ); + } + + reg.entriesByUL.put(te.getUL(), te); + reg.entriesBySymbol.put(sym, te); + } + + return reg; + + } + + /** + * Single Entry in a Labels Register (SMPTE ST 400) + */ + /** + * + * @author pal + */ + public static interface Entry { + + String getApplications(); + + String getDefiningDocument(); + + String getDefinition(); + + Kind getKind(); + + String getName(); + + URI getNamespaceName(); + + String getNotes(); + + String getSymbol(); + + UL getUL(); + + boolean isDeprecated(); + + @XmlType(name = "") + public enum Kind { + + NODE, LEAF + } + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java b/src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java rename to src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java index 4e4630e..4808e03 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java +++ b/src/main/java/com/sandflow/smpte/register/QualifiedSymbol.java @@ -1,91 +1,91 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register; - -import java.net.URI; -import java.util.Objects; - -/** - * Qualified Symbol for Register entry. Consists of a namespace and symbol string, with - * no two entries with identical namespace having also identical symbols. - */ -public class QualifiedSymbol { - private final String symbol; - private final URI namespace; - - /** - * Instantiates a Qualified Symbol. - * @param symbol Symbol - * @param namespace Namespace - */ - public QualifiedSymbol(String symbol, URI namespace) { - this.symbol = symbol; - this.namespace = namespace; - } - - /** - * @return Namespace component of the Qualified Symbol - */ - public String getSymbol() { - return symbol; - } - - /** - * - * @return Namespace component of the Qualified Symbol - */ - public URI getNamespace() { - return namespace; - } - - @Override - public int hashCode() { - int hash = 5; - hash = 13 * hash + Objects.hashCode(this.symbol); - hash = 13 * hash + Objects.hashCode(this.namespace); - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final QualifiedSymbol other = (QualifiedSymbol) obj; - if (!Objects.equals(this.symbol, other.symbol)) { - return false; - } - if (!Objects.equals(this.namespace, other.namespace)) { - return false; - } - return true; - } - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register; + +import java.net.URI; +import java.util.Objects; + +/** + * Qualified Symbol for Register entry. Consists of a namespace and symbol string, with + * no two entries with identical namespace having also identical symbols. + */ +public class QualifiedSymbol { + private final String symbol; + private final URI namespace; + + /** + * Instantiates a Qualified Symbol. + * @param symbol Symbol + * @param namespace Namespace + */ + public QualifiedSymbol(String symbol, URI namespace) { + this.symbol = symbol; + this.namespace = namespace; + } + + /** + * @return Namespace component of the Qualified Symbol + */ + public String getSymbol() { + return symbol; + } + + /** + * + * @return Namespace component of the Qualified Symbol + */ + public URI getNamespace() { + return namespace; + } + + @Override + public int hashCode() { + int hash = 5; + hash = 13 * hash + Objects.hashCode(this.symbol); + hash = 13 * hash + Objects.hashCode(this.namespace); + return hash; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + final QualifiedSymbol other = (QualifiedSymbol) obj; + if (!Objects.equals(this.symbol, other.symbol)) { + return false; + } + if (!Objects.equals(this.namespace, other.namespace)) { + return false; + } + return true; + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/TypesRegister.java b/src/main/java/com/sandflow/smpte/register/TypesRegister.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/TypesRegister.java rename to src/main/java/com/sandflow/smpte/register/TypesRegister.java index 6ac9884..f1e9fbe 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/TypesRegister.java +++ b/src/main/java/com/sandflow/smpte/register/TypesRegister.java @@ -1,216 +1,216 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register; - -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.util.UL; -import java.io.IOException; -import java.io.Reader; -import java.io.Writer; -import java.net.URI; -import java.util.Collection; -import java.util.EnumSet; -import java.util.HashMap; -import java.util.List; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.Unmarshaller; -import javax.xml.bind.annotation.XmlTransient; -import javax.xml.bind.annotation.XmlType; - -/** - * Types Register as defined in SMPTE ST 2003 - */ -@XmlTransient -public abstract class TypesRegister { - - private final HashMap entriesBySymbol = new HashMap<>(); - - private final HashMap entriesByUL = new HashMap<>(); - - public TypesRegister() { - } - - public Entry getEntryByUL(UL ul) { - return entriesByUL.get(ul); - } - - public Entry getEntryBySymbol(QualifiedSymbol qs) { - return entriesBySymbol.get(qs); - } - - public abstract Collection getEntries(); - - public void toXML(Writer writer) throws JAXBException, IOException { - - JAXBContext ctx = JAXBContext.newInstance(this.getClass()); - - Marshaller m = ctx.createMarshaller(); - m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); - m.marshal(this, writer); - writer.close(); - } - - public static TypesRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { - - JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.TypesRegisterModel.class); - - Unmarshaller m = ctx.createUnmarshaller(); - TypesRegister reg = (TypesRegister) m.unmarshal(reader); - - for (Entry te : reg.getEntries()) { - QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); - - if (reg.getEntryByUL(te.getUL()) != null) { - throw new DuplicateEntryException( - String.format("UL = %s is already present (symbol = %s).", - te.getUL(), - te.getSymbol() - ) - ); - } - - if (reg.entriesBySymbol.get(sym) != null) { - throw new DuplicateEntryException( - String.format( - "Symbol = %s is already present (UL = %s).", - te.getSymbol(), - te.getUL() - ) - ); - } - - reg.entriesByUL.put(te.getUL(), te); - reg.entriesBySymbol.put(sym, te); - } - - return reg; - - } - - /** - * - * @author pal - */ - public static interface Entry { - - String ARRAY_TYPEKIND = "VariableArray"; - String CHARACTER_TYPEKIND = "Character"; - String ENUMERATION_TYPEKIND = "Enumeration"; - String FIXEDARRAY_TYPEKIND = "FixedArray"; - String FLOAT_TYPEKIND = "Float"; - String INDIRECT_TYPEKIND = "Indirect"; - String INTEGER_TYPEKIND = "Integer"; - /** - * @deprecated - */ - String LENSSERIALFLOAT_TYPEKIND = "LensSerialFloat"; - String OPAQUE_TYPEKIND = "Opaque"; - String RECORD_TYPEKIND = "Record"; - String RENAME_TYPEKIND = "Rename"; - String SET_TYPEKIND = "Set"; - String STREAM_TYPEKIND = "Stream"; - String STRING_TYPEKIND = "String"; - String STRONGREF_TYPEKIND = "StrongReference"; - String WEAKREF_TYPEKIND = "WeakReference"; - - String getApplications(); - - UL getBaseType(); - - ContextScope getContextScope(); - - String getDefiningDocument(); - - String getDefinition(); - - Collection getFacets(); - - Kind getKind(); - - String getName(); - - URI getNamespaceName(); - - String getNotes(); - - String getSymbol(); - - String getTypeKind(); - - EnumSet getTypeQualifiers(); - - Long getTypeSize(); - - UL getUL(); - - boolean isDeprecated(); - - /** - * - * @author pal - */ - public static interface Facet { - - String getApplications(); - - String getDefinition(); - - String getName(); - - String getNotes(); - - String getSymbol(); - - UL getType(); - - UL getUL(); - - String getValue(); - - boolean isDeprecated(); - } - - @XmlType(name = "") - public static enum TypeQualifiers { - isNumeric, isSigned, isIdentified, isOrdered, isCountImplicit, isSizeImplicit - } - - @XmlType(name = "") - public static enum Kind { - NODE, LEAF - } - - @XmlType(name = "") - public static enum ContextScope { - DefinedContext, AbstractContext, UnknownContext - } - } - - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register; + +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.util.UL; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.net.URI; +import java.util.Collection; +import java.util.EnumSet; +import java.util.HashMap; +import java.util.List; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.Unmarshaller; +import javax.xml.bind.annotation.XmlTransient; +import javax.xml.bind.annotation.XmlType; + +/** + * Types Register as defined in SMPTE ST 2003 + */ +@XmlTransient +public abstract class TypesRegister { + + private final HashMap entriesBySymbol = new HashMap<>(); + + private final HashMap entriesByUL = new HashMap<>(); + + public TypesRegister() { + } + + public Entry getEntryByUL(UL ul) { + return entriesByUL.get(ul); + } + + public Entry getEntryBySymbol(QualifiedSymbol qs) { + return entriesBySymbol.get(qs); + } + + public abstract Collection getEntries(); + + public void toXML(Writer writer) throws JAXBException, IOException { + + JAXBContext ctx = JAXBContext.newInstance(this.getClass()); + + Marshaller m = ctx.createMarshaller(); + m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); + m.marshal(this, writer); + writer.close(); + } + + public static TypesRegister fromXML(Reader reader) throws JAXBException, IOException, DuplicateEntryException { + + JAXBContext ctx = JAXBContext.newInstance(com.sandflow.smpte.register.catsup.TypesRegisterModel.class); + + Unmarshaller m = ctx.createUnmarshaller(); + TypesRegister reg = (TypesRegister) m.unmarshal(reader); + + for (Entry te : reg.getEntries()) { + QualifiedSymbol sym = new QualifiedSymbol(te.getSymbol(), te.getNamespaceName()); + + if (reg.getEntryByUL(te.getUL()) != null) { + throw new DuplicateEntryException( + String.format("UL = %s is already present (symbol = %s).", + te.getUL(), + te.getSymbol() + ) + ); + } + + if (reg.entriesBySymbol.get(sym) != null) { + throw new DuplicateEntryException( + String.format( + "Symbol = %s is already present (UL = %s).", + te.getSymbol(), + te.getUL() + ) + ); + } + + reg.entriesByUL.put(te.getUL(), te); + reg.entriesBySymbol.put(sym, te); + } + + return reg; + + } + + /** + * + * @author pal + */ + public static interface Entry { + + String ARRAY_TYPEKIND = "VariableArray"; + String CHARACTER_TYPEKIND = "Character"; + String ENUMERATION_TYPEKIND = "Enumeration"; + String FIXEDARRAY_TYPEKIND = "FixedArray"; + String FLOAT_TYPEKIND = "Float"; + String INDIRECT_TYPEKIND = "Indirect"; + String INTEGER_TYPEKIND = "Integer"; + /** + * @deprecated + */ + String LENSSERIALFLOAT_TYPEKIND = "LensSerialFloat"; + String OPAQUE_TYPEKIND = "Opaque"; + String RECORD_TYPEKIND = "Record"; + String RENAME_TYPEKIND = "Rename"; + String SET_TYPEKIND = "Set"; + String STREAM_TYPEKIND = "Stream"; + String STRING_TYPEKIND = "String"; + String STRONGREF_TYPEKIND = "StrongReference"; + String WEAKREF_TYPEKIND = "WeakReference"; + + String getApplications(); + + UL getBaseType(); + + ContextScope getContextScope(); + + String getDefiningDocument(); + + String getDefinition(); + + Collection getFacets(); + + Kind getKind(); + + String getName(); + + URI getNamespaceName(); + + String getNotes(); + + String getSymbol(); + + String getTypeKind(); + + EnumSet getTypeQualifiers(); + + Long getTypeSize(); + + UL getUL(); + + boolean isDeprecated(); + + /** + * + * @author pal + */ + public static interface Facet { + + String getApplications(); + + String getDefinition(); + + String getName(); + + String getNotes(); + + String getSymbol(); + + UL getType(); + + UL getUL(); + + String getValue(); + + boolean isDeprecated(); + } + + @XmlType(name = "") + public static enum TypeQualifiers { + isNumeric, isSigned, isIdentified, isOrdered, isCountImplicit, isSizeImplicit + } + + @XmlType(name = "") + public static enum Kind { + NODE, LEAF + } + + @XmlType(name = "") + public static enum ContextScope { + DefinedContext, AbstractContext, UnknownContext + } + } + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java b/src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java rename to src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java index 27d7dda..eb8dd57 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java +++ b/src/main/java/com/sandflow/smpte/register/brown_sauce/GroupsRegisterModel.java @@ -1,359 +1,359 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.brown_sauce; - -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.xml.HexBinaryByteAdapter; -import com.sandflow.smpte.util.xml.HexBinaryLongAdapter; -import com.sandflow.smpte.util.xml.ULAdapter; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlList; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Groups Register as defined in SMPTE ST 395 - */ -@XmlRootElement(name = "GroupsRegister", namespace = GroupsRegisterModel.XML_NAMESPACE) -@XmlAccessorType(XmlAccessType.NONE) -@XmlType(name = "") -public class GroupsRegisterModel extends com.sandflow.smpte.register.GroupsRegister { - - public final static String XML_NAMESPACE = "http://www.smpte-ra.org/ns/395/2016"; - - @XmlElement(name = "Entry", namespace = XML_NAMESPACE) - @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) - private final ArrayList entries = new ArrayList<>(); - - public GroupsRegisterModel() { - } - - @Override - public Collection getEntries() { - return entries; - } - - /** - * Single Entry in a Groups Register (SMPTE ST 395) - */ - @XmlType(name = "GroupEntry", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Entry implements com.sandflow.smpte.register.GroupsRegister.Entry { - - @XmlElement(name = "Register") - static final String register = "Groups"; - - @XmlElement(name = "NamespaceName", required = true) - protected URI namespaceName; - - @XmlElement(name = "Symbol", required = true) - protected String symbol; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - protected UL ul; - - @XmlElement(name = "Kind") - private Kind kind; - - @XmlElement(name = "Name") - private String name; - - @XmlElement(name = "Definition") - private String definition; - - @XmlElement(name = "Applications") - private String applications; - - @XmlElement(name = "Notes") - private String notes; - - @XmlElement(name = "DefiningDocument") - private String definingDocument; - - @XmlElement(name = "IsDeprecated") - private boolean deprecated = false; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "Parent") - private UL parent; - - @XmlElement(name = "IsConcrete") - private Boolean concrete; - - @XmlElement(name = "KLVSyntax") - @XmlList - @XmlJavaTypeAdapter(value = HexBinaryByteAdapter.class) - @XmlSchemaType(name="hexBinary") - private HashSet klvSyntax = new HashSet<>(); - - @XmlElementWrapper(name = "Contents", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlElement(name = "Record", namespace = GroupsRegisterModel.XML_NAMESPACE) - private List contents = new ArrayList<>(); - - @Override - public URI getNamespaceName() { - return namespaceName; - } - - @Override - public String getSymbol() { - return symbol; - } - - @Override - public UL getUL() { - return ul; - } - - public void setNamespaceName(URI namespaceName) { - this.namespaceName = namespaceName; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public UL getParent() { - return parent; - } - - public void setParent(UL parent) { - this.parent = parent; - } - - @Override - public Boolean isConcrete() { - return concrete; - } - - public void setConcrete(Boolean concrete) { - this.concrete = concrete; - } - - @Override - public Set getKlvSyntax() { - return klvSyntax; - } - - public void setKlvSyntax(Set klvSyntax) { - this.klvSyntax = new HashSet<>(klvSyntax); - } - - @Override - public Collection getContents() { - return contents; - } - - public void setContents(List contents) { - this.contents = contents; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - - @Override - public String getDefiningDocument() { - return definingDocument; - } - - public void setDefiningDocument(String definingDocument) { - this.definingDocument = definingDocument; - } - - @XmlType(name = "RecordType", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Record implements com.sandflow.smpte.register.GroupsRegister.Entry.Record { - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - private UL item; - - @XmlElement(name = "LocalTag") - @XmlJavaTypeAdapter(value = HexBinaryLongAdapter.class) - @XmlSchemaType(name="hexBinary") - private Long localTag; - - @XmlElement(name = "LimitLength") - private Long limitLength; - - @XmlElement(name = "IsUniqueID") - private Boolean uniqueID; - - @XmlElement(name = "IsOptional") - private Boolean optional; - - @XmlElement(name = "IsIgnorable") - private Boolean ignorable; - - @XmlElement(name = "IsDistinguished") - private Boolean distinguished; - - @XmlElement(name = "Value") - private String value; - - @Override - public UL getItem() { - return item; - } - - public void setItem(UL item) { - this.item = item; - } - - @Override - public Long getLocalTag() { - return localTag; - } - - public void setLocalTag(Long localTag) { - this.localTag = localTag; - } - - @Override - public Long getLimitLength() { - return limitLength; - } - - public void setLimitLength(Long limitLength) { - this.limitLength = limitLength; - } - - @Override - public Boolean getUniqueID() { - return uniqueID; - } - - public void setUniqueID(Boolean uniqueID) { - this.uniqueID = uniqueID; - } - - @Override - public Boolean getOptional() { - return optional; - } - - public void setOptional(Boolean optional) { - this.optional = optional; - } - - @Override - public Boolean getIgnorable() { - return ignorable; - } - - public void setIgnorable(Boolean ignorable) { - this.ignorable = ignorable; - } - - @Override - public Boolean getDistinguished() { - return distinguished; - } - - public void setDistinguished(Boolean distinguished) { - this.distinguished = distinguished; - } - - @Override - public String getValue() { - return value; - } - - public void setValue(String value) { - this.value = value; - } - } - } - -} +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.brown_sauce; + +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.xml.HexBinaryByteAdapter; +import com.sandflow.smpte.util.xml.HexBinaryLongAdapter; +import com.sandflow.smpte.util.xml.ULAdapter; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlList; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Groups Register as defined in SMPTE ST 395 + */ +@XmlRootElement(name = "GroupsRegister", namespace = GroupsRegisterModel.XML_NAMESPACE) +@XmlAccessorType(XmlAccessType.NONE) +@XmlType(name = "") +public class GroupsRegisterModel extends com.sandflow.smpte.register.GroupsRegister { + + public final static String XML_NAMESPACE = "http://www.smpte-ra.org/ns/395/2016"; + + @XmlElement(name = "Entry", namespace = XML_NAMESPACE) + @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) + private final ArrayList entries = new ArrayList<>(); + + public GroupsRegisterModel() { + } + + @Override + public Collection getEntries() { + return entries; + } + + /** + * Single Entry in a Groups Register (SMPTE ST 395) + */ + @XmlType(name = "GroupEntry", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Entry implements com.sandflow.smpte.register.GroupsRegister.Entry { + + @XmlElement(name = "Register") + static final String register = "Groups"; + + @XmlElement(name = "NamespaceName", required = true) + protected URI namespaceName; + + @XmlElement(name = "Symbol", required = true) + protected String symbol; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + protected UL ul; + + @XmlElement(name = "Kind") + private Kind kind; + + @XmlElement(name = "Name") + private String name; + + @XmlElement(name = "Definition") + private String definition; + + @XmlElement(name = "Applications") + private String applications; + + @XmlElement(name = "Notes") + private String notes; + + @XmlElement(name = "DefiningDocument") + private String definingDocument; + + @XmlElement(name = "IsDeprecated") + private boolean deprecated = false; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "Parent") + private UL parent; + + @XmlElement(name = "IsConcrete") + private Boolean concrete; + + @XmlElement(name = "KLVSyntax") + @XmlList + @XmlJavaTypeAdapter(value = HexBinaryByteAdapter.class) + @XmlSchemaType(name="hexBinary") + private HashSet klvSyntax = new HashSet<>(); + + @XmlElementWrapper(name = "Contents", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlElement(name = "Record", namespace = GroupsRegisterModel.XML_NAMESPACE) + private List contents = new ArrayList<>(); + + @Override + public URI getNamespaceName() { + return namespaceName; + } + + @Override + public String getSymbol() { + return symbol; + } + + @Override + public UL getUL() { + return ul; + } + + public void setNamespaceName(URI namespaceName) { + this.namespaceName = namespaceName; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public UL getParent() { + return parent; + } + + public void setParent(UL parent) { + this.parent = parent; + } + + @Override + public Boolean isConcrete() { + return concrete; + } + + public void setConcrete(Boolean concrete) { + this.concrete = concrete; + } + + @Override + public Set getKlvSyntax() { + return klvSyntax; + } + + public void setKlvSyntax(Set klvSyntax) { + this.klvSyntax = new HashSet<>(klvSyntax); + } + + @Override + public Collection getContents() { + return contents; + } + + public void setContents(List contents) { + this.contents = contents; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + + @Override + public String getDefiningDocument() { + return definingDocument; + } + + public void setDefiningDocument(String definingDocument) { + this.definingDocument = definingDocument; + } + + @XmlType(name = "RecordType", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Record implements com.sandflow.smpte.register.GroupsRegister.Entry.Record { + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + private UL item; + + @XmlElement(name = "LocalTag") + @XmlJavaTypeAdapter(value = HexBinaryLongAdapter.class) + @XmlSchemaType(name="hexBinary") + private Long localTag; + + @XmlElement(name = "LimitLength") + private Long limitLength; + + @XmlElement(name = "IsUniqueID") + private Boolean uniqueID; + + @XmlElement(name = "IsOptional") + private Boolean optional; + + @XmlElement(name = "IsIgnorable") + private Boolean ignorable; + + @XmlElement(name = "IsDistinguished") + private Boolean distinguished; + + @XmlElement(name = "Value") + private String value; + + @Override + public UL getItem() { + return item; + } + + public void setItem(UL item) { + this.item = item; + } + + @Override + public Long getLocalTag() { + return localTag; + } + + public void setLocalTag(Long localTag) { + this.localTag = localTag; + } + + @Override + public Long getLimitLength() { + return limitLength; + } + + public void setLimitLength(Long limitLength) { + this.limitLength = limitLength; + } + + @Override + public Boolean getUniqueID() { + return uniqueID; + } + + public void setUniqueID(Boolean uniqueID) { + this.uniqueID = uniqueID; + } + + @Override + public Boolean getOptional() { + return optional; + } + + public void setOptional(Boolean optional) { + this.optional = optional; + } + + @Override + public Boolean getIgnorable() { + return ignorable; + } + + public void setIgnorable(Boolean ignorable) { + this.ignorable = ignorable; + } + + @Override + public Boolean getDistinguished() { + return distinguished; + } + + public void setDistinguished(Boolean distinguished) { + this.distinguished = distinguished; + } + + @Override + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java b/src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java rename to src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java index 3f98fd1..bfbc6f1 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java +++ b/src/main/java/com/sandflow/smpte/register/brown_sauce/package-info.java @@ -1,36 +1,36 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Models new XML schemas introduced by the catsup release of the SMPTE Metadata Registers. - */ -@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) -package com.sandflow.smpte.register.brown_sauce; - - -import javax.xml.bind.annotation.XmlNsForm; -import javax.xml.bind.annotation.XmlSchema; - +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Models new XML schemas introduced by the catsup release of the SMPTE Metadata Registers. + */ +@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) +package com.sandflow.smpte.register.brown_sauce; + + +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; + diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java b/src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java rename to src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java index 8ac79e0..6b3157a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java +++ b/src/main/java/com/sandflow/smpte/register/catsup/ElementsRegisterModel.java @@ -1,257 +1,257 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.catsup; - -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.xml.ULAdapter; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Elements Register as defined in SMPTE ST 335 - */ -@XmlRootElement(name = "ElementsRegister", namespace = ElementsRegisterModel.XML_NAMESPACE) -@XmlAccessorType(XmlAccessType.NONE) -@XmlType(name = "") -public class ElementsRegisterModel extends com.sandflow.smpte.register.ElementsRegister { - - public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/335/2012"; - - @XmlElement(name = "Entry", namespace = XML_NAMESPACE) - @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) - private final ArrayList entries = new ArrayList<>(); - - public ElementsRegisterModel() { - } - - @Override - public Collection getEntries() { - return entries; - } - - /** - * Single Entry in an Elements Register (SMPTE ST 335) - */ - @XmlType(name = "ElementEntry", namespace = ElementsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Entry implements com.sandflow.smpte.register.ElementsRegister.Entry { - - @XmlElement(name = "Register") - static final String register = "Elements"; - - @XmlElement(name = "NamespaceName", required = true) - protected URI namespaceName; - - @XmlElement(name = "Symbol", required = true) - protected String symbol; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - protected UL ul; - - @XmlElement(name = "Kind") - private Kind kind; - - @XmlElement(name = "Name") - private String name; - - @XmlElement(name = "Definition") - private String definition; - - @XmlElement(name = "Applications") - private String applications; - - @XmlElement(name = "Notes") - private String notes; - - @XmlElement(name = "DefiningDocument") - private String definingDocument; - - @XmlElement(name = "IsDeprecated") - private boolean deprecated; - - @XmlElement(name = "ContextScope") - private String contextScope; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "Type") - private UL typeUL; - - @XmlElement(name = "ValueLength") - private String valueLength; - - @XmlElement(name = "ValueRange") - private String valueRange; - - @XmlElement(name = "UnitOfMeasure") - private String unitOfMeasure; - - @Override - public URI getNamespaceName() { - return namespaceName; - } - - @Override - public String getSymbol() { - return symbol; - } - - @Override - public UL getUL() { - return ul; - } - - public void setNamespaceName(URI namespaceName) { - this.namespaceName = namespaceName; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public UL getTypeUL() { - return typeUL; - } - - public void setTypeUL(UL typeUL) { - this.typeUL = typeUL; - } - - @Override - public String getValueLength() { - return valueLength; - } - - public void setValueLength(String valueLength) { - this.valueLength = valueLength; - } - - @Override - public String getValueRange() { - return valueRange; - } - - public void setValueRange(String valueRange) { - this.valueRange = valueRange; - } - - @Override - public String getUnitOfMeasure() { - return unitOfMeasure; - } - - public void setUnitOfMeasure(String unitOfMeasure) { - this.unitOfMeasure = unitOfMeasure; - } - - @Override - public String getDefiningDocument() { - return definingDocument; - } - - public void setDefiningDocument(String definingDocument) { - this.definingDocument = definingDocument; - } - - @Override - public String getContextScope() { - return contextScope; - } - - public void setContextScope(String contextScope) { - this.contextScope = contextScope; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - } - - -} +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.catsup; + +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.xml.ULAdapter; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Elements Register as defined in SMPTE ST 335 + */ +@XmlRootElement(name = "ElementsRegister", namespace = ElementsRegisterModel.XML_NAMESPACE) +@XmlAccessorType(XmlAccessType.NONE) +@XmlType(name = "") +public class ElementsRegisterModel extends com.sandflow.smpte.register.ElementsRegister { + + public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/335/2012"; + + @XmlElement(name = "Entry", namespace = XML_NAMESPACE) + @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) + private final ArrayList entries = new ArrayList<>(); + + public ElementsRegisterModel() { + } + + @Override + public Collection getEntries() { + return entries; + } + + /** + * Single Entry in an Elements Register (SMPTE ST 335) + */ + @XmlType(name = "ElementEntry", namespace = ElementsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Entry implements com.sandflow.smpte.register.ElementsRegister.Entry { + + @XmlElement(name = "Register") + static final String register = "Elements"; + + @XmlElement(name = "NamespaceName", required = true) + protected URI namespaceName; + + @XmlElement(name = "Symbol", required = true) + protected String symbol; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + protected UL ul; + + @XmlElement(name = "Kind") + private Kind kind; + + @XmlElement(name = "Name") + private String name; + + @XmlElement(name = "Definition") + private String definition; + + @XmlElement(name = "Applications") + private String applications; + + @XmlElement(name = "Notes") + private String notes; + + @XmlElement(name = "DefiningDocument") + private String definingDocument; + + @XmlElement(name = "IsDeprecated") + private boolean deprecated; + + @XmlElement(name = "ContextScope") + private String contextScope; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "Type") + private UL typeUL; + + @XmlElement(name = "ValueLength") + private String valueLength; + + @XmlElement(name = "ValueRange") + private String valueRange; + + @XmlElement(name = "UnitOfMeasure") + private String unitOfMeasure; + + @Override + public URI getNamespaceName() { + return namespaceName; + } + + @Override + public String getSymbol() { + return symbol; + } + + @Override + public UL getUL() { + return ul; + } + + public void setNamespaceName(URI namespaceName) { + this.namespaceName = namespaceName; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public UL getTypeUL() { + return typeUL; + } + + public void setTypeUL(UL typeUL) { + this.typeUL = typeUL; + } + + @Override + public String getValueLength() { + return valueLength; + } + + public void setValueLength(String valueLength) { + this.valueLength = valueLength; + } + + @Override + public String getValueRange() { + return valueRange; + } + + public void setValueRange(String valueRange) { + this.valueRange = valueRange; + } + + @Override + public String getUnitOfMeasure() { + return unitOfMeasure; + } + + public void setUnitOfMeasure(String unitOfMeasure) { + this.unitOfMeasure = unitOfMeasure; + } + + @Override + public String getDefiningDocument() { + return definingDocument; + } + + public void setDefiningDocument(String definingDocument) { + this.definingDocument = definingDocument; + } + + @Override + public String getContextScope() { + return contextScope; + } + + public void setContextScope(String contextScope) { + this.contextScope = contextScope; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java b/src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java rename to src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java index f21bd37..a7af7e7 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java +++ b/src/main/java/com/sandflow/smpte/register/catsup/GroupsRegisterModel.java @@ -1,345 +1,345 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.catsup; - -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.xml.ULAdapter; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlList; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Groups Register as defined in SMPTE ST 395 - */ -@XmlRootElement(name = "GroupsRegister", namespace = GroupsRegisterModel.XML_NAMESPACE) -@XmlAccessorType(XmlAccessType.NONE) -@XmlType(name = "") -public class GroupsRegisterModel extends com.sandflow.smpte.register.GroupsRegister { - - public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/395/2014"; - - @XmlElement(name = "Entry", namespace = XML_NAMESPACE) - @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) - private final ArrayList entries = new ArrayList<>(); - - public GroupsRegisterModel() { - } - - @Override - public Collection getEntries() { - return entries; - } - - /** - * Single Entry in a Groups Register (SMPTE ST 395) - */ - @XmlType(name = "GroupEntry", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Entry implements com.sandflow.smpte.register.GroupsRegister.Entry { - - @XmlElement(name = "Register") - static final String register = "Groups"; - - @XmlElement(name = "NamespaceName", required = true) - protected URI namespaceName; - - @XmlElement(name = "Symbol", required = true) - protected String symbol; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - protected UL ul; - - @XmlElement(name = "Kind") - private Kind kind; - - @XmlElement(name = "Name") - private String name; - - @XmlElement(name = "Definition") - private String definition; - - @XmlElement(name = "Applications") - private String applications; - - @XmlElement(name = "Notes") - private String notes; - - @XmlElement(name = "DefiningDocument") - private String definingDocument; - - @XmlElement(name = "IsDeprecated") - private boolean deprecated = false; - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "Parent") - private UL parent; - - @XmlElement(name = "IsConcrete") - private Boolean concrete; - - @XmlElement(name = "KLVSyntax") - @XmlList - private HashSet klvSyntax = new HashSet<>(); - - @XmlElementWrapper(name = "Contents", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlElement(name = "Record", namespace = GroupsRegisterModel.XML_NAMESPACE) - private List contents = new ArrayList<>(); - - @Override - public URI getNamespaceName() { - return namespaceName; - } - - @Override - public String getSymbol() { - return symbol; - } - - @Override - public UL getUL() { - return ul; - } - - public void setNamespaceName(URI namespaceName) { - this.namespaceName = namespaceName; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public UL getParent() { - return parent; - } - - public void setParent(UL parent) { - this.parent = parent; - } - - @Override - public Boolean isConcrete() { - return concrete; - } - - public void setConcrete(Boolean concrete) { - this.concrete = concrete; - } - - @Override - public Set getKlvSyntax() { - return klvSyntax; - } - - public void setKlvSyntax(Set klvSyntax) { - this.klvSyntax = new HashSet<>(klvSyntax); - } - - @Override - public Collection getContents() { - return contents; - } - - public void setContents(List contents) { - this.contents = contents; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - - @Override - public String getDefiningDocument() { - return definingDocument; - } - - public void setDefiningDocument(String definingDocument) { - this.definingDocument = definingDocument; - } - - @XmlType(name = "RecordType", namespace = GroupsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Record implements com.sandflow.smpte.register.GroupsRegister.Entry.Record { - - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - private UL item; - @XmlElement(name = "LocalTag") - private Long localTag; - @XmlElement(name = "LimitLength") - private Long limitLength; - @XmlElement(name = "IsUniqueID") - private Boolean uniqueID; - @XmlElement(name = "IsOptional") - private Boolean optional; - @XmlElement(name = "IsIgnorable") - private Boolean ignorable; - @XmlElement(name = "IsDistinguished") - private Boolean distinguished; - @XmlElement(name = "Value") - private String value; - - @Override - public UL getItem() { - return item; - } - - public void setItem(UL item) { - this.item = item; - } - - @Override - public Long getLocalTag() { - return localTag; - } - - public void setLocalTag(Long localTag) { - this.localTag = localTag; - } - - @Override - public Long getLimitLength() { - return limitLength; - } - - public void setLimitLength(Long limitLength) { - this.limitLength = limitLength; - } - - @Override - public Boolean getUniqueID() { - return uniqueID; - } - - public void setUniqueID(Boolean uniqueID) { - this.uniqueID = uniqueID; - } - - @Override - public Boolean getOptional() { - return optional; - } - - public void setOptional(Boolean optional) { - this.optional = optional; - } - - @Override - public Boolean getIgnorable() { - return ignorable; - } - - public void setIgnorable(Boolean ignorable) { - this.ignorable = ignorable; - } - - @Override - public Boolean getDistinguished() { - return distinguished; - } - - public void setDistinguished(Boolean distinguished) { - this.distinguished = distinguished; - } - - @Override - public String getValue() { - return value; - } - - public void setValue(String value) { - this.value = value; - } - } - } - -} +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.catsup; + +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.xml.ULAdapter; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlList; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Groups Register as defined in SMPTE ST 395 + */ +@XmlRootElement(name = "GroupsRegister", namespace = GroupsRegisterModel.XML_NAMESPACE) +@XmlAccessorType(XmlAccessType.NONE) +@XmlType(name = "") +public class GroupsRegisterModel extends com.sandflow.smpte.register.GroupsRegister { + + public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/395/2014"; + + @XmlElement(name = "Entry", namespace = XML_NAMESPACE) + @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) + private final ArrayList entries = new ArrayList<>(); + + public GroupsRegisterModel() { + } + + @Override + public Collection getEntries() { + return entries; + } + + /** + * Single Entry in a Groups Register (SMPTE ST 395) + */ + @XmlType(name = "GroupEntry", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Entry implements com.sandflow.smpte.register.GroupsRegister.Entry { + + @XmlElement(name = "Register") + static final String register = "Groups"; + + @XmlElement(name = "NamespaceName", required = true) + protected URI namespaceName; + + @XmlElement(name = "Symbol", required = true) + protected String symbol; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + protected UL ul; + + @XmlElement(name = "Kind") + private Kind kind; + + @XmlElement(name = "Name") + private String name; + + @XmlElement(name = "Definition") + private String definition; + + @XmlElement(name = "Applications") + private String applications; + + @XmlElement(name = "Notes") + private String notes; + + @XmlElement(name = "DefiningDocument") + private String definingDocument; + + @XmlElement(name = "IsDeprecated") + private boolean deprecated = false; + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "Parent") + private UL parent; + + @XmlElement(name = "IsConcrete") + private Boolean concrete; + + @XmlElement(name = "KLVSyntax") + @XmlList + private HashSet klvSyntax = new HashSet<>(); + + @XmlElementWrapper(name = "Contents", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlElement(name = "Record", namespace = GroupsRegisterModel.XML_NAMESPACE) + private List contents = new ArrayList<>(); + + @Override + public URI getNamespaceName() { + return namespaceName; + } + + @Override + public String getSymbol() { + return symbol; + } + + @Override + public UL getUL() { + return ul; + } + + public void setNamespaceName(URI namespaceName) { + this.namespaceName = namespaceName; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public UL getParent() { + return parent; + } + + public void setParent(UL parent) { + this.parent = parent; + } + + @Override + public Boolean isConcrete() { + return concrete; + } + + public void setConcrete(Boolean concrete) { + this.concrete = concrete; + } + + @Override + public Set getKlvSyntax() { + return klvSyntax; + } + + public void setKlvSyntax(Set klvSyntax) { + this.klvSyntax = new HashSet<>(klvSyntax); + } + + @Override + public Collection getContents() { + return contents; + } + + public void setContents(List contents) { + this.contents = contents; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + + @Override + public String getDefiningDocument() { + return definingDocument; + } + + public void setDefiningDocument(String definingDocument) { + this.definingDocument = definingDocument; + } + + @XmlType(name = "RecordType", namespace = GroupsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Record implements com.sandflow.smpte.register.GroupsRegister.Entry.Record { + + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + private UL item; + @XmlElement(name = "LocalTag") + private Long localTag; + @XmlElement(name = "LimitLength") + private Long limitLength; + @XmlElement(name = "IsUniqueID") + private Boolean uniqueID; + @XmlElement(name = "IsOptional") + private Boolean optional; + @XmlElement(name = "IsIgnorable") + private Boolean ignorable; + @XmlElement(name = "IsDistinguished") + private Boolean distinguished; + @XmlElement(name = "Value") + private String value; + + @Override + public UL getItem() { + return item; + } + + public void setItem(UL item) { + this.item = item; + } + + @Override + public Long getLocalTag() { + return localTag; + } + + public void setLocalTag(Long localTag) { + this.localTag = localTag; + } + + @Override + public Long getLimitLength() { + return limitLength; + } + + public void setLimitLength(Long limitLength) { + this.limitLength = limitLength; + } + + @Override + public Boolean getUniqueID() { + return uniqueID; + } + + public void setUniqueID(Boolean uniqueID) { + this.uniqueID = uniqueID; + } + + @Override + public Boolean getOptional() { + return optional; + } + + public void setOptional(Boolean optional) { + this.optional = optional; + } + + @Override + public Boolean getIgnorable() { + return ignorable; + } + + public void setIgnorable(Boolean ignorable) { + this.ignorable = ignorable; + } + + @Override + public Boolean getDistinguished() { + return distinguished; + } + + public void setDistinguished(Boolean distinguished) { + this.distinguished = distinguished; + } + + @Override + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java b/src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java rename to src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java index db1db60..7562e1a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java +++ b/src/main/java/com/sandflow/smpte/register/catsup/LabelsRegisterModel.java @@ -1,185 +1,185 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.catsup; - -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.xml.ULAdapter; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Labels Register as defined in SMPTE ST 400 - */ -@XmlRootElement(name = "LabelsRegister", namespace = LabelsRegisterModel.XML_NAMESPACE) -@XmlType(name = "") -@XmlAccessorType(XmlAccessType.NONE) -public class LabelsRegisterModel extends com.sandflow.smpte.register.LabelsRegister { - - public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/400/2012"; - - @XmlElement(name = "Entry", namespace = XML_NAMESPACE) - @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) - private final ArrayList entries = new ArrayList<>(); - - public LabelsRegisterModel() { - } - - @Override - public Collection getEntries() { - return entries; - } - - /** - * Single Entry in a Labels Register (SMPTE ST 400) - */ - @XmlType(name = "LabelEntry", namespace = LabelsRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Entry implements com.sandflow.smpte.register.LabelsRegister.Entry { - - @XmlElement(name = "Register") - static final String register = "Labels"; - @XmlElement(name = "NamespaceName", required = true) - protected URI namespaceName; - @XmlElement(name = "Symbol", required = true) - protected String symbol; - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - protected UL ul; - @XmlElement(name = "Kind") - private Kind kind; - @XmlElement(name = "Name") - private String name; - @XmlElement(name = "Definition") - private String definition; - @XmlElement(name = "Applications") - private String applications; - @XmlElement(name = "Notes") - private String notes; - @XmlElement(name = "DefiningDocument") - private String definingDocument; - @XmlElement(name = "IsDeprecated") - private boolean deprecated = false; - - @Override - public URI getNamespaceName() { - return namespaceName; - } - - @Override - public String getSymbol() { - return symbol; - } - - @Override - public UL getUL() { - return ul; - } - - public void setNamespaceName(URI namespaceName) { - this.namespaceName = namespaceName; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public String getDefiningDocument() { - return definingDocument; - } - - public void setDefiningDocument(String definingDocument) { - this.definingDocument = definingDocument; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - - } -} +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.catsup; + +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.xml.ULAdapter; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Labels Register as defined in SMPTE ST 400 + */ +@XmlRootElement(name = "LabelsRegister", namespace = LabelsRegisterModel.XML_NAMESPACE) +@XmlType(name = "") +@XmlAccessorType(XmlAccessType.NONE) +public class LabelsRegisterModel extends com.sandflow.smpte.register.LabelsRegister { + + public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/400/2012"; + + @XmlElement(name = "Entry", namespace = XML_NAMESPACE) + @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) + private final ArrayList entries = new ArrayList<>(); + + public LabelsRegisterModel() { + } + + @Override + public Collection getEntries() { + return entries; + } + + /** + * Single Entry in a Labels Register (SMPTE ST 400) + */ + @XmlType(name = "LabelEntry", namespace = LabelsRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Entry implements com.sandflow.smpte.register.LabelsRegister.Entry { + + @XmlElement(name = "Register") + static final String register = "Labels"; + @XmlElement(name = "NamespaceName", required = true) + protected URI namespaceName; + @XmlElement(name = "Symbol", required = true) + protected String symbol; + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + protected UL ul; + @XmlElement(name = "Kind") + private Kind kind; + @XmlElement(name = "Name") + private String name; + @XmlElement(name = "Definition") + private String definition; + @XmlElement(name = "Applications") + private String applications; + @XmlElement(name = "Notes") + private String notes; + @XmlElement(name = "DefiningDocument") + private String definingDocument; + @XmlElement(name = "IsDeprecated") + private boolean deprecated = false; + + @Override + public URI getNamespaceName() { + return namespaceName; + } + + @Override + public String getSymbol() { + return symbol; + } + + @Override + public UL getUL() { + return ul; + } + + public void setNamespaceName(URI namespaceName) { + this.namespaceName = namespaceName; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public String getDefiningDocument() { + return definingDocument; + } + + public void setDefiningDocument(String definingDocument) { + this.definingDocument = definingDocument; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java b/src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java rename to src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java index 300f601..96221ed 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java +++ b/src/main/java/com/sandflow/smpte/register/catsup/TypesRegisterModel.java @@ -1,366 +1,366 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.catsup; - -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.xml.ULAdapter; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import java.util.EnumSet; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlList; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Types Register as defined in SMPTE ST 2003 - */ -@XmlRootElement(name = "TypesRegister", namespace = TypesRegisterModel.XML_NAMESPACE) -@XmlType(name = "") -@XmlAccessorType(XmlAccessType.NONE) -public class TypesRegisterModel extends com.sandflow.smpte.register.TypesRegister { - - public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/2003/2012"; - - @XmlElement(name="Entry", namespace = XML_NAMESPACE) - @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) - private final ArrayList entries = new ArrayList<>(); - - public TypesRegisterModel() { - } - - @Override - public Collection getEntries() { - return entries; - } - - /** - * Single Entry in a Types Register (SMPTE ST 2003) - */ - @XmlType(name = "TypeEntry", namespace = TypesRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Entry implements com.sandflow.smpte.register.TypesRegister.Entry { - - @XmlElement(name = "Register") - static final String register = "Types"; - @XmlElement(name = "NamespaceName", required = true) - protected URI namespaceName; - @XmlElement(name = "Symbol", required = true) - protected String symbol; - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL", required = true) - protected UL ul; - @XmlElement(name = "Kind") - private Kind kind; - @XmlElement(name = "Name") - private String name; - @XmlElement(name = "Definition") - private String definition; - @XmlElement(name = "Applications") - private String applications; - @XmlElement(name = "Notes") - private String notes; - @XmlElement(name = "DefiningDocument") - private String definingDocument; - @XmlElement(name = "IsDeprecated") - private boolean deprecated; - @XmlElement(name = "ContextScope") - private ContextScope contextScope = ContextScope.UnknownContext; - @XmlElement(name = "TypeKind") - private String typeKind; - @XmlElement(name = "TypeSize") - private Long typeSize; - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "BaseType") - private UL baseType; - @XmlElement(name = "TypeQualifiers") - @XmlList - private EnumSet typeQualifiers = EnumSet.noneOf(TypeQualifiers.class); - @XmlElementWrapper(name = "Facets") - @XmlElement(name = "Facet") - private List facets = new ArrayList<>(); - - - @Override - public URI getNamespaceName() { - return namespaceName; - } - - @Override - public String getSymbol() { - return symbol; - } - - @Override - public UL getUL() { - return ul; - } - - public void setNamespaceName(URI namespaceName) { - this.namespaceName = namespaceName; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public EnumSet getTypeQualifiers() { - return typeQualifiers; - } - - public void setTypeQualifiers(EnumSet typeQualifiers) { - this.typeQualifiers = typeQualifiers; - } - - @Override - public Kind getKind() { - return kind; - } - - public void setKind(Kind kind) { - this.kind = kind; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public String getTypeKind() { - return typeKind; - } - - public void setTypeKind(String typeKind) { - this.typeKind = typeKind; - } - - @Override - public Long getTypeSize() { - return typeSize; - } - - public void setTypeSize(Long typeSize) { - this.typeSize = typeSize; - } - - @Override - public UL getBaseType() { - return baseType; - } - - public void setBaseType(UL baseType) { - this.baseType = baseType; - } - - @Override - public Collection getFacets() { - return facets; - } - - public void setFacets(List facets) { - this.facets = facets; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - - @Override - public String getDefiningDocument() { - return definingDocument; - } - - public void setDefiningDocument(String definingDocument) { - this.definingDocument = definingDocument; - } - - @Override - public ContextScope getContextScope() { - return contextScope; - } - - public void setContextScope(ContextScope contextScope) { - this.contextScope = contextScope; - } - - @XmlType(name = "FacetType", namespace = TypesRegisterModel.XML_NAMESPACE) - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Facet implements com.sandflow.smpte.register.TypesRegister.Entry.Facet { - - @XmlElement(name = "Symbol") - private String symbol; - @XmlElement(name = "Name") - private String name; - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "Type") - private UL type; - @XmlElement(name = "Value") - private String value; - @XmlJavaTypeAdapter(value = ULAdapter.class) - @XmlElement(name = "UL") - private UL ul; - @XmlElement(name = "Definition") - private String definition; - @XmlElement(name = "Applications") - private String applications; - @XmlElement(name = "Notes") - private String notes; - @XmlElement(name = "IsDeprecated") - private boolean deprecated; - - @Override - public String getSymbol() { - return symbol; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - @Override - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - @Override - public UL getType() { - return type; - } - - public void setType(UL type) { - this.type = type; - } - - @Override - public String getValue() { - return value; - } - - public void setValue(String value) { - this.value = value; - } - - @Override - public UL getUL() { - return ul; - } - - public void setUL(UL ul) { - this.ul = ul; - } - - @Override - public String getDefinition() { - return definition; - } - - public void setDefinition(String definition) { - this.definition = definition; - } - - @Override - public String getApplications() { - return applications; - } - - public void setApplications(String applications) { - this.applications = applications; - } - - @Override - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - @Override - public boolean isDeprecated() { - return deprecated; - } - - public void setDeprecated(boolean deprecated) { - this.deprecated = deprecated; - } - } - - } - -} +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.catsup; + +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.xml.ULAdapter; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import java.util.EnumSet; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlList; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Types Register as defined in SMPTE ST 2003 + */ +@XmlRootElement(name = "TypesRegister", namespace = TypesRegisterModel.XML_NAMESPACE) +@XmlType(name = "") +@XmlAccessorType(XmlAccessType.NONE) +public class TypesRegisterModel extends com.sandflow.smpte.register.TypesRegister { + + public final static String XML_NAMESPACE = "http://www.smpte-ra.org/schemas/2003/2012"; + + @XmlElement(name="Entry", namespace = XML_NAMESPACE) + @XmlElementWrapper(name = "Entries", namespace = XML_NAMESPACE) + private final ArrayList entries = new ArrayList<>(); + + public TypesRegisterModel() { + } + + @Override + public Collection getEntries() { + return entries; + } + + /** + * Single Entry in a Types Register (SMPTE ST 2003) + */ + @XmlType(name = "TypeEntry", namespace = TypesRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Entry implements com.sandflow.smpte.register.TypesRegister.Entry { + + @XmlElement(name = "Register") + static final String register = "Types"; + @XmlElement(name = "NamespaceName", required = true) + protected URI namespaceName; + @XmlElement(name = "Symbol", required = true) + protected String symbol; + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL", required = true) + protected UL ul; + @XmlElement(name = "Kind") + private Kind kind; + @XmlElement(name = "Name") + private String name; + @XmlElement(name = "Definition") + private String definition; + @XmlElement(name = "Applications") + private String applications; + @XmlElement(name = "Notes") + private String notes; + @XmlElement(name = "DefiningDocument") + private String definingDocument; + @XmlElement(name = "IsDeprecated") + private boolean deprecated; + @XmlElement(name = "ContextScope") + private ContextScope contextScope = ContextScope.UnknownContext; + @XmlElement(name = "TypeKind") + private String typeKind; + @XmlElement(name = "TypeSize") + private Long typeSize; + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "BaseType") + private UL baseType; + @XmlElement(name = "TypeQualifiers") + @XmlList + private EnumSet typeQualifiers = EnumSet.noneOf(TypeQualifiers.class); + @XmlElementWrapper(name = "Facets") + @XmlElement(name = "Facet") + private List facets = new ArrayList<>(); + + + @Override + public URI getNamespaceName() { + return namespaceName; + } + + @Override + public String getSymbol() { + return symbol; + } + + @Override + public UL getUL() { + return ul; + } + + public void setNamespaceName(URI namespaceName) { + this.namespaceName = namespaceName; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public EnumSet getTypeQualifiers() { + return typeQualifiers; + } + + public void setTypeQualifiers(EnumSet typeQualifiers) { + this.typeQualifiers = typeQualifiers; + } + + @Override + public Kind getKind() { + return kind; + } + + public void setKind(Kind kind) { + this.kind = kind; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public String getTypeKind() { + return typeKind; + } + + public void setTypeKind(String typeKind) { + this.typeKind = typeKind; + } + + @Override + public Long getTypeSize() { + return typeSize; + } + + public void setTypeSize(Long typeSize) { + this.typeSize = typeSize; + } + + @Override + public UL getBaseType() { + return baseType; + } + + public void setBaseType(UL baseType) { + this.baseType = baseType; + } + + @Override + public Collection getFacets() { + return facets; + } + + public void setFacets(List facets) { + this.facets = facets; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + + @Override + public String getDefiningDocument() { + return definingDocument; + } + + public void setDefiningDocument(String definingDocument) { + this.definingDocument = definingDocument; + } + + @Override + public ContextScope getContextScope() { + return contextScope; + } + + public void setContextScope(ContextScope contextScope) { + this.contextScope = contextScope; + } + + @XmlType(name = "FacetType", namespace = TypesRegisterModel.XML_NAMESPACE) + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Facet implements com.sandflow.smpte.register.TypesRegister.Entry.Facet { + + @XmlElement(name = "Symbol") + private String symbol; + @XmlElement(name = "Name") + private String name; + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "Type") + private UL type; + @XmlElement(name = "Value") + private String value; + @XmlJavaTypeAdapter(value = ULAdapter.class) + @XmlElement(name = "UL") + private UL ul; + @XmlElement(name = "Definition") + private String definition; + @XmlElement(name = "Applications") + private String applications; + @XmlElement(name = "Notes") + private String notes; + @XmlElement(name = "IsDeprecated") + private boolean deprecated; + + @Override + public String getSymbol() { + return symbol; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + @Override + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + @Override + public UL getType() { + return type; + } + + public void setType(UL type) { + this.type = type; + } + + @Override + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + @Override + public UL getUL() { + return ul; + } + + public void setUL(UL ul) { + this.ul = ul; + } + + @Override + public String getDefinition() { + return definition; + } + + public void setDefinition(String definition) { + this.definition = definition; + } + + @Override + public String getApplications() { + return applications; + } + + public void setApplications(String applications) { + this.applications = applications; + } + + @Override + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + @Override + public boolean isDeprecated() { + return deprecated; + } + + public void setDeprecated(boolean deprecated) { + this.deprecated = deprecated; + } + } + + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/package-info.java b/src/main/java/com/sandflow/smpte/register/catsup/package-info.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/register/catsup/package-info.java rename to src/main/java/com/sandflow/smpte/register/catsup/package-info.java index 1671314..4c04c9a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/catsup/package-info.java +++ b/src/main/java/com/sandflow/smpte/register/catsup/package-info.java @@ -1,36 +1,36 @@ -/* - * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Models the XML schema used by the catsup release of the SMPTE Metadata Registers. - */ -@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) -package com.sandflow.smpte.register.catsup; - - -import javax.xml.bind.annotation.XmlNsForm; -import javax.xml.bind.annotation.XmlSchema; - +/* + * Copyright (c) 2016, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Models the XML schema used by the catsup release of the SMPTE Metadata Registers. + */ +@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) +package com.sandflow.smpte.register.catsup; + + +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; + diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java b/src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java rename to src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java index 797c05f..98291de 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java +++ b/src/main/java/com/sandflow/smpte/register/exceptions/DuplicateEntryException.java @@ -1,37 +1,37 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.register.exceptions; - -/** - * Raised when two entries have identical ULs and/or symbols - */ -public class DuplicateEntryException extends Exception { - - public DuplicateEntryException(String msg) { - super(msg); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.register.exceptions; + +/** + * Raised when two entries have identical ULs and/or symbols + */ +public class DuplicateEntryException extends Exception { + + public DuplicateEntryException(String msg) { + super(msg); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/exceptions/InvalidEntryException.java b/src/main/java/com/sandflow/smpte/register/exceptions/InvalidEntryException.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/smpte/register/exceptions/InvalidEntryException.java rename to src/main/java/com/sandflow/smpte/register/exceptions/InvalidEntryException.java diff --git a/regxmllib/src/main/java/com/sandflow/smpte/register/package-info.java b/src/main/java/com/sandflow/smpte/register/package-info.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/register/package-info.java rename to src/main/java/com/sandflow/smpte/register/package-info.java index ec173db..906b7a4 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/register/package-info.java +++ b/src/main/java/com/sandflow/smpte/register/package-info.java @@ -1,38 +1,38 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Allows the import, export and manipulation of SMPTE Metadata Registers. - * Java XML annotations are used to bind Java classes with the XML format by SMPTE - * for publication and interchange of its metadata registers. - */ -@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) -package com.sandflow.smpte.register; - - -import javax.xml.bind.annotation.XmlNsForm; -import javax.xml.bind.annotation.XmlSchema; - +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Allows the import, export and manipulation of SMPTE Metadata Registers. + * Java XML annotations are used to bind Java classes with the XML format by SMPTE + * for publication and interchange of its metadata registers. + */ +@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED) +package com.sandflow.smpte.register; + + +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; + diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java b/src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java similarity index 79% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java rename to src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java index 5cc8046..8237b00 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java +++ b/src/main/java/com/sandflow/smpte/regxml/FragmentBuilder.java @@ -1,1754 +1,1796 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml; - -import com.sandflow.smpte.klv.Group; -import com.sandflow.smpte.klv.KLVInputStream.ByteOrder; -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.mxf.MXFInputStream; -import com.sandflow.smpte.mxf.Set; -import com.sandflow.smpte.regxml.dict.DefinitionResolver; -import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; -import com.sandflow.smpte.util.AUID; -import com.sandflow.util.events.EventHandler; -import com.sandflow.smpte.util.HalfFloat; -import com.sandflow.smpte.util.IDAU; -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.UMID; -import com.sandflow.smpte.util.UUID; -import com.sandflow.util.events.Event; -import java.io.DataInputStream; -import java.io.EOFException; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.Reader; -import java.io.UnsupportedEncodingException; -import java.math.BigInteger; -import java.net.URI; -import java.net.URISyntaxException; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.Map; -import java.util.logging.Logger; -import org.w3c.dom.Attr; -import org.w3c.dom.Document; -import org.w3c.dom.DocumentFragment; -import org.w3c.dom.Element; -import org.w3c.dom.Node; - -/** - * Builds a RegXML Fragment of a single KLV Group, typically a Header Metadata - * MXF Set, using a collection of MetaDictionary definitions - */ -public class FragmentBuilder { - - /** - * Defines all events raised by this class - */ - public static enum EventCodes { - - /** - * Raised when a Group Key cannot be matched to a group definition - */ - UNKNOWN_GROUP(Event.Severity.INFO), - /** - * Raised when a Property Key cannot be matched to a property definition - */ - UNKNOWN_PROPERTY(Event.Severity.INFO), - /** - * Raised when the version byte of a UL does not match that listed in - * the metadictionary - */ - VERSION_BYTE_MISMATCH(Event.Severity.WARN), - /** - * Raised when the definition associated with a UL does not match the - * kind of definition that was expected - */ - UNEXPECTED_DEFINITION(Event.Severity.ERROR), - /** - * Raised when a circular reference is found between Sets - */ - CIRCULAR_STRONG_REFERENCE(Event.Severity.ERROR), - /** - * Raised when the byte order indicated in the file does not match the - * specification. - */ - UNEXPECTED_BYTE_ORDER(Event.Severity.ERROR), - /** - * Raised when a type definition is not found. - */ - UNKNOWN_TYPE(Event.Severity.ERROR), - /** - * Raised when the target of a weak reference does not have a unique - * property. - */ - MISSING_UNIQUE(Event.Severity.ERROR), - /** - * Raised when the referenced primary package is not found. - */ - MISSING_PRIMARY_PACKAGE(Event.Severity.ERROR), - /** - * Raised when the size of data read does not match expectations. - */ - VALUE_LENGTH_MISMATCH(Event.Severity.ERROR), - /** - * Raised when the type of a Character definition is not supported. - */ - UNSUPPORTED_CHAR_TYPE(Event.Severity.ERROR), - /** - * Raised when the type of an enum definition is not supported. - */ - UNSUPPORTED_ENUM_TYPE(Event.Severity.ERROR), - /** - * Raised when an enum value is not supported. - */ - UNKNOWN_ENUM_VALUE(Event.Severity.ERROR), - /** - * Raised when an IDAU is invalid. - */ - INVALID_IDAU(Event.Severity.ERROR), - /** - * Raised when an enum value is not supported. - */ - INVALID_INTEGER_VALUE(Event.Severity.ERROR), - /** - * Raised when the type of a String definition is not supported. - */ - UNSUPPORTED_STRING_TYPE(Event.Severity.ERROR), - /** - * Raised when the target of a Strong Reference Type is not a class. - */ - INVALID_STRONG_REFERENCE_TYPE(Event.Severity.ERROR), - /** - * Raised when the target of a Strong Reference is not found - */ - STRONG_REFERENCE_NOT_FOUND(Event.Severity.ERROR); - - public final Event.Severity severity; - - private EventCodes(Event.Severity severity) { - this.severity = severity; - } - - } - - /** - * All events raised by this class are instances of this class - */ - public static class FragmentEvent extends com.sandflow.util.events.BasicEvent { - - final String reason; - final String where; - - public FragmentEvent(EventCodes kind, String reason) { - this(kind, reason, null); - } - - public FragmentEvent(EventCodes kind, String reason, String where) { - super(kind.severity, kind, reason + (where != null ? " at " + where : "")); - - this.reason = reason; - this.where = where; - } - - public String getReason() { - return reason; - } - - public String getWhere() { - return where; - } - - } - - private final static Logger LOG = Logger.getLogger(FragmentBuilder.class.getName()); - - private static final UL INSTANCE_UID_ITEM_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000"); - private static final UL AUID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.01.00.00.00.00.00"); - private static final UL UUID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.03.00.00.00.00.00"); - private static final UL DateStruct_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.05.00.00.00.00.00"); - private static final UL PackageID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.02.00.00.00.00.00"); - private static final UL Rational_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.01.00.00.00.00.00"); - private static final UL TimeStruct_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.06.00.00.00.00.00"); - private static final UL TimeStamp_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.07.00.00.00.00.00"); - private static final UL VersionType_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.03.00.00.00.00.00"); - private static final UL ByteOrder_UL = UL.fromDotValue("06.0E.2B.34.01.01.01.01.03.01.02.01.02.00.00.00"); - private static final UL Character_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100100.00000000"); - private static final UL Char_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100300.00000000"); - private static final UL UTF8Character_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100500.00000000"); - private static final UL ProductReleaseType_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.02010101.00000000"); - private static final UL Boolean_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01040100.00000000"); - private static final UL PrimaryPackage_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010104.06010104.01080000"); - private static final UL LinkedGenerationID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.08000000"); - private static final UL GenerationID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.01000000"); - private static final UL ApplicationProductID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.07000000"); - - private static final String REGXML_NS = "http://sandflow.com/ns/SMPTEST2001-1/baseline"; - private final static String XMLNS_NS = "http://www.w3.org/2000/xmlns/"; - - private static final String BYTEORDER_BE = "BigEndian"; - private static final String BYTEORDER_LE = "LittleEndian"; - private static final String UID_ATTR = "uid"; - private static final String ACTUALTYPE_ATTR = "actualType"; - - private final DefinitionResolver defresolver; - private final Map setresolver; - private final HashMap nsprefixes = new HashMap<>(); - private final AUIDNameResolver anameresolver; - private final EventHandler evthandler; - - /** - * Resolves a AUID into a local name - */ - public static interface AUIDNameResolver { - - /** - * Retrieves a local name for the provided AUID - * - * @param enumid AUID - * - * @return Local name of the AUID - */ - String getLocalName(AUID enumid); - } - - /** - * Instantiates a FragmentBuilder. If the anamresolver argument is not null, - * the FragmentBuilder will attempt to resolve the name of each AUID it - * writes to the output and add it as an XML comment. If the evthandler - * argument is not null, the Fragment builder will call back the caller with - * events it encounters as it transforms a Triplet. - * - * @param defresolver Maps Group Keys to MetaDictionary definitions. Must - * not be null; - * @param setresolver Resolves Strong References to groups. Must not be - * null. - * @param anameresolver Resolves a AUID to a human-readable symbol. May be - * null. - * @param evthandler Calls back the caller when an event occurs. May be - * null. - */ - public FragmentBuilder(DefinitionResolver defresolver, - Map setresolver, - AUIDNameResolver anameresolver, - EventHandler evthandler) { - - if (defresolver == null || setresolver == null) { - throw new IllegalArgumentException(); - - } - - this.defresolver = defresolver; - this.setresolver = setresolver; - this.anameresolver = anameresolver; - this.evthandler = evthandler; - } - - /** - * Instantiates a FragmentBuilder - * - * @deprecated Replaced by - * {@link #FragmentBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, java.util.Map, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler)}. - * This constructor does not allow the - * caller to provide an event handler, and instead uses java.util.logging to - * output events. - * - * @param defresolver Maps Group Keys to MetaDictionary definitions. Must - * not be null; - * @param setresolver Resolves Strong References to groups. Must not be - * null. - * @param anameresolver Resolves a AUID to a human-readable symbol. May be - * null. - */ - public FragmentBuilder(DefinitionResolver defresolver, - Map setresolver, - AUIDNameResolver anameresolver) { - - this(defresolver, - setresolver, - null, - new EventHandler() { - - @Override - public boolean handle(com.sandflow.util.events.Event evt) { - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(evt.getMessage()); - break; - case INFO: - LOG.info(evt.getMessage()); - break; - case WARN: - LOG.warning(evt.getMessage()); - } - - return true; - } - } - ); - } - - /** - * Instantiates a FragmentBuilder. - * - * @deprecated Replaced by - * {@link #FragmentBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, java.util.Map, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler) }. This constructor does not allow the - * caller to provide an event handler, and instead uses java.util.logging to - * output events. - * - * @param defresolver Maps Group Keys to MetaDictionary definitions. Must - * not be null; - * @param setresolver Resolves Strong References to groups. Must not be - * null. - */ - public FragmentBuilder(DefinitionResolver defresolver, Map setresolver) { - this(defresolver, setresolver, null); - } - - /** - * Creates a RegXML Fragment, represented an XML DOM Document Fragment - * - * @param group KLV Group for which the Fragment will be generated. - * @param document Document from which the XML DOM Document Fragment will be - * created. - * - * @return XML DOM Document Fragment containing a single RegXML Fragment - * - * @throws KLVException - * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException - */ - public DocumentFragment fromTriplet(Group group, Document document) throws KLVException, RuleException { - - DocumentFragment df = document.createDocumentFragment(); - - applyRule3(df, group); - - /* NOTE: Hack to clean-up namespace prefixes */ - for (Map.Entry entry : nsprefixes.entrySet()) { - ((Element) df.getFirstChild()).setAttributeNS(XMLNS_NS, "xmlns:" + entry.getValue(), entry.getKey().toString()); - } - - return df; - } - - private String getPrefix(URI ns) { - String prefix = this.nsprefixes.get(ns); - - /* if prefix does not exist, create one */ - if (prefix == null) { - prefix = "r" + this.nsprefixes.size(); - - this.nsprefixes.put(ns, prefix); - } - - return prefix; - } - - String getPrefix(String ns) { - - try { - return getPrefix(new URI(ns)); - } catch (URISyntaxException ex) { - throw new RuntimeException(ex); - } - } - - void addInformativeComment(Element element, String comment) { - element.appendChild(element.getOwnerDocument().createComment(comment)); - } - - void handleEvent(FragmentEvent evt) throws RuleException { - - if (evthandler != null) { - - if (! evthandler.handle(evt) || - evt.getSeverity() == Event.Severity.FATAL) { - - /* die on FATAL events or if requested by the handler */ - - throw new RuleException(evt.getMessage()); - - } - - } else if (evt.getSeverity() == Event.Severity.ERROR || - evt.getSeverity() == Event.Severity.FATAL) { - - /* if no event handler was provided, die on FATAL and ERROR events */ - - throw new RuleException(evt.getMessage()); - - } - - } - - void applyRule3(Node node, Group group) throws RuleException { - - Definition definition = defresolver.getDefinition(new AUID(group.getKey())); - - if (definition == null) { - - handleEvent(new FragmentEvent( - EventCodes.UNKNOWN_GROUP, - String.format( - "Unknown Group UL %s", - group.getKey().toString() - ) - ) - ); - - return; - } - - if (definition.getIdentification().asUL().getVersion() != group.getKey().getVersion()) { - - handleEvent(new FragmentEvent( - EventCodes.VERSION_BYTE_MISMATCH, - String.format( - "Group UL %s in file does not have the same version as in the register (0x%02x)", - group.getKey(), - definition.getIdentification().asUL().getVersion() - ) - ) - ); - - } - - Element objelem = node.getOwnerDocument().createElementNS(definition.getNamespace().toString(), definition.getSymbol()); - - node.appendChild(objelem); - - objelem.setPrefix(getPrefix(definition.getNamespace())); - - for (Triplet item : group.getItems()) { - - /* skip if the property is not defined in the registers */ - Definition itemdef = defresolver.getDefinition(new AUID(item.getKey())); - - if (itemdef == null) { - - handleEvent(new FragmentEvent( - EventCodes.UNKNOWN_PROPERTY, - String.format( - "Unknown property %s", - item.getKey().toString() - ), - String.format( - "Group %s", - definition.getSymbol() - ) - ) - ); - - /* inserts the full value of the dark property as a comment */ - addInformativeComment( - objelem, - String.format( - "Unknown property\nKey: %s\nData: %s", - item.getKey().toString(), - bytesToString(item.getValue()) - ) - ); - - continue; - - } - - /* make sure this is a property definition */ - if (!(itemdef instanceof PropertyDefinition)) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNEXPECTED_DEFINITION, - String.format( - "Item %s is not a property", - item.getKey().toString() - ), - String.format( - "Group %s", - definition.getSymbol() - ) - ); - - handleEvent(evt); - - addInformativeComment(objelem, evt.getReason()); - - continue; - } - - /* warn if version byte of the property does not match the register version byte */ - if (itemdef.getIdentification().asUL().getVersion() != item.getKey().getVersion()) { - - handleEvent(new FragmentEvent( - EventCodes.VERSION_BYTE_MISMATCH, - String.format( - "Property UL %s in file does not have the same version as in the register (0x%02x)", - item.getKey().toString(), - itemdef.getIdentification().asUL().getVersion() - ), - String.format( - "Group %s", - definition.getSymbol() - ) - ) - ); - - } - - Element elem = node.getOwnerDocument().createElementNS(itemdef.getNamespace().toString(), itemdef.getSymbol()); - - objelem.appendChild(elem); - - elem.setPrefix(getPrefix(itemdef.getNamespace())); - - /* write the property */ - applyRule4(elem, new MXFInputStream(item.getValueAsStream()), itemdef); - - /* detect cyclic references */ - if (item.getKey().equals(INSTANCE_UID_ITEM_UL)) { - - String iidns = objelem.getLastChild().getNamespaceURI(); - String iidname = objelem.getLastChild().getLocalName(); - String iid = objelem.getLastChild().getTextContent(); - - /* look for identical instanceID in parent elements */ - Node parent = node; - - while (parent.getNodeType() == Node.ELEMENT_NODE) { - - for (Node n = parent.getFirstChild(); n != null; n = n.getNextSibling()) { - - if (n.getNodeType() == Node.ELEMENT_NODE - && iidname.equals(n.getLocalName()) - && iidns.equals(n.getNamespaceURI()) - && iid.equals(n.getTextContent())) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.CIRCULAR_STRONG_REFERENCE, - String.format( - "Circular Strong Reference to Set UID %s", - iid - ), - String.format( - "Group %s", - definition.getSymbol() - ) - ); - - handleEvent(evt); - - addInformativeComment( - (Element) node, - evt.getReason() - ); - - return; - } - } - - parent = parent.getParentNode(); - } - - } - - /* add reg:uid if property is a unique ID */ - if (((PropertyDefinition) itemdef).isUniqueIdentifier()) { - - Attr attr = node.getOwnerDocument().createAttributeNS(REGXML_NS, UID_ATTR); - - attr.setPrefix(getPrefix(REGXML_NS)); - attr.setTextContent(objelem.getLastChild().getTextContent()); - - objelem.setAttributeNodeNS(attr); - } - - } - - } - - void applyRule4(Element element, MXFInputStream value, Definition propdef) throws RuleException { - - try { - - if (propdef.getIdentification().equals(ByteOrder_UL)) { - - int byteorder; - - byteorder = value.readUnsignedShort(); - - /* ISSUE: ST 2001-1 inverses these constants */ - if (byteorder == 0x4D4D) { - - element.setTextContent(BYTEORDER_BE); - - } else if (byteorder == 0x4949) { - - element.setTextContent(BYTEORDER_LE); - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNEXPECTED_BYTE_ORDER, - "ByteOrder property set to little-endian: either the property is set" - + "incorrectly or the file does not conform to MXF. Processing will" - + "assume a big-endian byte order going forward." - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } else { - throw new RuleException("Unknown ByteOrder value."); - } - - } else { - - if (propdef instanceof PropertyAliasDefinition) { - propdef = defresolver.getDefinition(((PropertyAliasDefinition) propdef).getOriginalProperty()); - } - - Definition typedef = findBaseDefinition(defresolver.getDefinition(((PropertyDefinition) propdef).getType())); - - /* return if no type definition is found */ - if (typedef == null) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Type %s not found", - ((PropertyDefinition) propdef).getType().toString() - ), - String.format( - "Property %s at Element %s", - propdef.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - - } - - if (propdef.getIdentification().equals(PrimaryPackage_UL)) { - - /* EXCEPTION: PrimaryPackage is encoded as the Instance UUID of the target set - but needs to be the UMID contained in the unique ID of the target set */ - UUID uuid = value.readUUID(); - - /* is this a local reference through Instance ID? */ - Group g = setresolver.get(uuid); - - if (g != null) { - - boolean foundUniqueID = false; - - /* find the unique identifier in the group */ - for (Triplet item : g.getItems()) { - - Definition itemdef = defresolver.getDefinition(new AUID(item.getKey())); - - if (itemdef != null - && itemdef instanceof PropertyDefinition - && ((PropertyDefinition) itemdef).isUniqueIdentifier()) { - - applyRule4(element, new MXFInputStream(item.getValueAsStream()), itemdef); - - foundUniqueID = true; - - break; - - } - - } - - if (foundUniqueID != true) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.MISSING_UNIQUE, - String.format( - "Target Primary Package with Instance UID %s has no IsUnique element.", - uuid.toString() - ), - String.format( - "Property %s at Element %s", - propdef.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - - } else { - - FragmentEvent evt = new FragmentEvent( - EventCodes.MISSING_PRIMARY_PACKAGE, - String.format( - "Target Primary Package with Instance UID %s not found", - uuid.toString() - ), - String.format( - "Property %s at Element %s", - propdef.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - - } else { - - if (propdef.getIdentification().equals(LinkedGenerationID_UL) - || propdef.getIdentification().equals(GenerationID_UL) - || propdef.getIdentification().equals(ApplicationProductID_UL)) { - - /* EXCEPTION: LinkedGenerationID, GenerationID and ApplicationProductID - are encoded using UUID */ - typedef = defresolver.getDefinition(new AUID(UUID_UL)); - } - - applyRule5(element, value, typedef); - } - } - - } catch (EOFException eof) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - "Value too short", - String.format( - "Property %s at Element %s", - propdef.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } catch (IOException ioe) { - - throw new RuleException(ioe); - - } - - } - - void applyRule5(Element element, MXFInputStream value, Definition definition) throws RuleException, IOException { - - if (definition instanceof CharacterTypeDefinition) { - applyRule5_1(element, value, (CharacterTypeDefinition) definition); - } else if (definition instanceof EnumerationTypeDefinition) { - applyRule5_2(element, value, (EnumerationTypeDefinition) definition); - } else if (definition instanceof ExtendibleEnumerationTypeDefinition) { - applyRule5_3(element, value, (ExtendibleEnumerationTypeDefinition) definition); - } else if (definition instanceof FixedArrayTypeDefinition) { - applyRule5_4(element, value, (FixedArrayTypeDefinition) definition); - } else if (definition instanceof IndirectTypeDefinition) { - applyRule5_5(element, value, (IndirectTypeDefinition) definition); - } else if (definition instanceof IntegerTypeDefinition) { - applyRule5_6(element, value, (IntegerTypeDefinition) definition); - } else if (definition instanceof OpaqueTypeDefinition) { - applyRule5_7(element, value, (OpaqueTypeDefinition) definition); - } else if (definition instanceof RecordTypeDefinition) { - applyRule5_8(element, value, (RecordTypeDefinition) definition); - } else if (definition instanceof RenameTypeDefinition) { - applyRule5_9(element, value, (RenameTypeDefinition) definition); - } else if (definition instanceof SetTypeDefinition) { - applyRule5_10(element, value, (SetTypeDefinition) definition); - } else if (definition instanceof StreamTypeDefinition) { - applyRule5_11(element, value, (StreamTypeDefinition) definition); - } else if (definition instanceof StringTypeDefinition) { - applyRule5_12(element, value, (StringTypeDefinition) definition); - } else if (definition instanceof StrongReferenceTypeDefinition) { - applyRule5_13(element, value, (StrongReferenceTypeDefinition) definition); - } else if (definition instanceof VariableArrayTypeDefinition) { - applyRule5_14(element, value, (VariableArrayTypeDefinition) definition); - } else if (definition instanceof WeakReferenceTypeDefinition) { - applyRule5_15(element, value, (WeakReferenceTypeDefinition) definition); - } else if (definition instanceof FloatTypeDefinition) { - applyRule5_alpha(element, value, (FloatTypeDefinition) definition); - } else if (definition instanceof LensSerialFloatTypeDefinition) { - applyRule5_beta(element, value, (LensSerialFloatTypeDefinition) definition); - } else { - - throw new RuleException( - String.format( - "Unknown Definition %s in Rule 5.", - definition.getClass().toString() - ) - ); - - } - - } - - private void readCharacters(Element element, MXFInputStream value, CharacterTypeDefinition definition, boolean removeTrailingZeroes) throws RuleException, IOException { - - StringBuilder sb = new StringBuilder(); - - Reader in = null; - - if (definition.getIdentification().equals(Character_UL)) { - - if (value.getByteorder() == ByteOrder.BIG_ENDIAN) { - - in = new InputStreamReader(value, "UTF-16BE"); - - } else { - - in = new InputStreamReader(value, "UTF-16LE"); - - } - - } else if (definition.getIdentification().equals(Char_UL)) { - - in = new InputStreamReader(value, "US-ASCII"); - - } else if (definition.getIdentification().equals(UTF8Character_UL)) { - - /* NOTE: Use of UTF-8 character encoding is specified in RP 2057 */ - in = new InputStreamReader(value, "UTF-8"); - - } else { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNSUPPORTED_CHAR_TYPE, - String.format( - "Character type %s is not supported at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - - } - - char[] chars = new char[32]; - - for (int c; (c = in.read(chars)) != -1;) { - sb.append(chars, 0, c); - } - - if (removeTrailingZeroes) { - - /* remove trailing zeroes if any */ - int nullpos = sb.indexOf("\0"); - - if (nullpos > -1) { - sb.setLength(nullpos); - } - } - - element.setTextContent(sb.toString()); - } - - void applyRule5_1(Element element, MXFInputStream value, CharacterTypeDefinition definition) throws RuleException, IOException { - - readCharacters(element, value, definition, false /* do not remove trailing zeroes for a single char */); - - } - - void applyRule5_2(Element element, MXFInputStream value, EnumerationTypeDefinition definition) throws RuleException, IOException { - - try { - - Definition bdef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); - - if (!(bdef instanceof IntegerTypeDefinition)) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNSUPPORTED_ENUM_TYPE, - "Enum does not have an Integer base type.", - String.format( - "Enum %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - } - - IntegerTypeDefinition idef = (IntegerTypeDefinition) bdef; - - int len = 0; - - if (definition.getIdentification().equals(ProductReleaseType_UL)) { - - /* EXCEPTION: ProductReleaseType_UL is listed as - a UInt8 enum but encoded as a UInt16 */ - len = 2; - - } else { - switch (idef.getSize()) { - case ONE: - len = 1; - break; - case TWO: - len = 2; - break; - case FOUR: - len = 4; - break; - case EIGHT: - len = 8; - break; - } - } - - byte[] val = new byte[len]; - - int br = value.read(val); - - String str = null; - - if (br == 0) { - - str = "ERROR"; - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - "No data", - String.format( - "Enum %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } else { - - /* always try to read the value even if the length is not as expected */ - BigInteger bi = idef.isSigned() ? new BigInteger(val) : new BigInteger(1, val); - - if (definition.getElementType().equals(Boolean_UL)) { - - /* find the "true" enum element */ - /* MXF can encode "true" as any value other than 0 */ - for (EnumerationTypeDefinition.Element e : definition.getElements()) { - if ((bi.intValue() == 0 && e.getValue() == 0) || (bi.intValue() != 0 && e.getValue() == 1)) { - str = e.getName(); - } - } - - } else { - - for (EnumerationTypeDefinition.Element e : definition.getElements()) { - if (e.getValue() == bi.intValue()) { - str = e.getName(); - } - } - - } - - if (str == null) { - - str = "UNDEFINED"; - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNKNOWN_ENUM_VALUE, - String.format( - "Undefined value %d", - bi.intValue() - ), - String.format( - "Enum %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } else if (br != len) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - String.format( - "Incorrect length: expected %d and received %d", - len, - br - ), - String.format( - "Enumeration %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - } - - element.setTextContent(str); - - } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); - } - } - - void appendCommentWithAUIDName(AUIDNameResolver anr, AUID auid, Element elem) { - if (this.anameresolver != null) { - - String ename = this.anameresolver.getLocalName(auid); - - if (ename != null) { - elem.appendChild(elem.getOwnerDocument().createComment(ename)); - } - - } - } - - void applyRule5_3(Element element, MXFInputStream value, ExtendibleEnumerationTypeDefinition definition) throws RuleException, IOException { - - try { - - UL ul = value.readUL(); - - /* NOTE: ST 2001-1 XML Schema does not allow ULs as values for Extendible Enumerations, which - defeats the purpose of the type. This issue could be addressed at the next revision opportunity. */ - element.setTextContent(ul.toString()); - - appendCommentWithAUIDName(anameresolver, new AUID(ul), element); - - } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); - } - } - - void applyRule5_4(Element element, MXFInputStream value, FixedArrayTypeDefinition definition) throws RuleException, IOException { - - if (definition.getIdentification().equals(UUID_UL)) { - - UUID uuid = value.readUUID(); - - element.setTextContent(uuid.toString()); - - } else { - - Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); - - applyCoreRule5_4(element, value, typedef, definition.getElementCount()); - - } - } - - void applyCoreRule5_4(Element element, MXFInputStream value, Definition typedef, int elementcount) throws RuleException, IOException { - - for (int i = 0; i < elementcount; i++) { - - if (typedef instanceof StrongReferenceTypeDefinition) { - - /* Rule 5.4.1 */ - applyRule5_13(element, value, (StrongReferenceTypeDefinition) typedef); - - } else { - - /* Rule 5.4.2 */ - Element elem = element.getOwnerDocument().createElementNS(typedef.getNamespace().toString(), typedef.getSymbol()); - - elem.setPrefix(getPrefix(typedef.getNamespace())); - - applyRule5(elem, value, typedef); - - element.appendChild(elem); - - } - } - } - - void applyRule5_5(Element element, MXFInputStream value, IndirectTypeDefinition definition) throws RuleException, IOException { - - /* see https://github.com/sandflow/regxmllib/issues/74 for a discussion on Indirect Type */ - ByteOrder bo; - - switch (value.readUnsignedByte()) { - case 0x4c /* little endian */: - bo = ByteOrder.LITTLE_ENDIAN; - break; - case 0x42 /* big endian */: - bo = ByteOrder.BIG_ENDIAN; - break; - default: - throw new RuleException("Unknown Indirect Byte Order value."); - } - - MXFInputStream orderedval = new MXFInputStream(value, bo); - - IDAU idau = orderedval.readIDAU(); - - if (idau == null) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.INVALID_IDAU, - "Invalid IDAU", - String.format( - "Indirect Type %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - } - - AUID auid = idau.asAUID(); - - Definition def = (Definition) defresolver.getDefinition(auid); - - if (def == null) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "No definition found for indirect type %s.", - auid.toString() - ), - String.format( - "Indirect Type %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - } - - // create reg:actualType attribute - Attr attr = element.getOwnerDocument().createAttributeNS(REGXML_NS, ACTUALTYPE_ATTR); - attr.setPrefix(getPrefix(REGXML_NS)); - attr.setTextContent(def.getSymbol()); - element.setAttributeNodeNS(attr); - - applyRule5(element, orderedval, def); - - } - - void applyRule5_6(Element element, MXFInputStream value, IntegerTypeDefinition definition) throws RuleException, IOException { - - try { - - int len = 0; - - switch (definition.getSize()) { - case ONE: - len = 1; - break; - case TWO: - len = 2; - break; - case FOUR: - len = 4; - break; - case EIGHT: - len = 8; - break; - } - - byte[] val = new byte[len]; - - int br = value.read(val); - - if (br == 0) { - - element.setTextContent("NaN"); - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - "No data", - String.format( - "Integer %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } else { - - try { - - BigInteger bi = definition.isSigned() ? new BigInteger(val) : new BigInteger(1, val); - - element.setTextContent(bi.toString()); - - if (br != len) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - String.format( - "Incorrect field length: expected %d and parsed %d.", - len, - br - ), - String.format( - "Integer %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - - } catch (NumberFormatException e) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.INVALID_INTEGER_VALUE, - "Invalid integer value", - String.format( - "Integer %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - } - - } - - } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); - } - - } - - void applyRule5_7(Element element, MXFInputStream value, OpaqueTypeDefinition definition) throws RuleException { - - /* NOTE: Opaque Types are not used in MXF */ - throw new RuleException("Opaque types are not supported."); - - } - - String generateISO8601Time(int hour, int minutes, int seconds, int millis) { - StringBuilder sb = new StringBuilder(); - - sb.append(String.format("%02d:%02d:%02d", hour, minutes, seconds)); - - if (millis != 0) { - sb.append(String.format(".%03d", millis)); - } - - sb.append("Z"); - - return sb.toString(); - } - - String generateISO8601Date(int year, int month, int day) { - return String.format("%04d-%02d-%02d", year, month, day); - } - - void applyRule5_8(Element element, MXFInputStream value, RecordTypeDefinition definition) throws RuleException, IOException { - - if (definition.getIdentification().equals(AUID_UL)) { - - AUID auid = value.readAUID(); - - element.setTextContent(auid.toString()); - - appendCommentWithAUIDName(anameresolver, auid, element); - - } else if (definition.getIdentification().equals(DateStruct_UL)) { - - int year = value.readUnsignedShort(); - int month = value.readUnsignedByte(); - int day = value.readUnsignedByte(); - - element.setTextContent(generateISO8601Date(year, month, day)); - - } else if (definition.getIdentification().equals(PackageID_UL)) { - - UMID umid = value.readUMID(); - - element.setTextContent(umid.toString()); - - } else if (definition.getIdentification().equals(Rational_UL)) { - - int numerator = value.readInt(); - int denominator = value.readInt(); - - element.setTextContent(String.format("%d/%d", numerator, denominator)); - - } else if (definition.getIdentification().equals(TimeStruct_UL)) { - - /*INFO: ST 2001-1 and ST 377-1 diverge on the meaning of 'fraction'. - fraction is msec/4 according to 377-1 */ - int hour = value.readUnsignedByte(); - int minute = value.readUnsignedByte(); - int second = value.readUnsignedByte(); - int fraction = value.readUnsignedByte(); - - element.setTextContent(generateISO8601Time(hour, minute, second, 4 * fraction)); - - } else if (definition.getIdentification().equals(TimeStamp_UL)) { - - int year = value.readUnsignedShort(); - int month = value.readUnsignedByte(); - int day = value.readUnsignedByte(); - int hour = value.readUnsignedByte(); - int minute = value.readUnsignedByte(); - int second = value.readUnsignedByte(); - int fraction = value.readUnsignedByte(); - - element.setTextContent(generateISO8601Date(year, month, day) + "T" + generateISO8601Time(hour, minute, second, 4 * fraction)); - - } else if (definition.getIdentification().equals(VersionType_UL)) { - - /* EXCEPTION: registers used Int8 but MXF specifies UInt8 */ - int major = value.readUnsignedByte(); - int minor = value.readUnsignedByte(); - - element.setTextContent(String.format("%d.%d", major, minor)); - - } else { - - for (RecordTypeDefinition.Member member : definition.getMembers()) { - - Definition itemdef = findBaseDefinition(defresolver.getDefinition(member.getType())); - - Element elem = element.getOwnerDocument().createElementNS(definition.getNamespace().toString(), member.getName()); - - elem.setPrefix(getPrefix(definition.getNamespace())); - - applyRule5(elem, value, itemdef); - - element.appendChild(elem); - } - } - - } - - void applyRule5_9(Element element, MXFInputStream value, RenameTypeDefinition definition) throws RuleException, IOException { - - Definition rdef = defresolver.getDefinition(definition.getRenamedType()); - - applyRule5(element, value, rdef); - - } - - void applyRule5_10(Element element, MXFInputStream value, SetTypeDefinition definition) throws RuleException, IOException { - - Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); - - try { - - DataInputStream dis = new DataInputStream(value); - - long itemcount = dis.readInt() & 0xfffffffL; - long itemlength = dis.readInt() & 0xfffffffL; - - applyCoreRule5_4(element, value, typedef, (int) itemcount); - - } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); - } - - } - - void applyRule5_11(Element element, MXFInputStream value, StreamTypeDefinition definition) throws RuleException { - - throw new RuleException("Rule 5.11 is not supported yet."); - - } - - void applyRule5_12(Element element, MXFInputStream value, StringTypeDefinition definition) throws RuleException, IOException { - - /* Rule 5.12 */ - Definition chrdef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); - - /* NOTE: ST 2001-1 implies that integer-based strings are supported, but - does not described semantics. - */ - if (!(chrdef instanceof CharacterTypeDefinition)) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.UNSUPPORTED_STRING_TYPE, - String.format( - "Unsupported String with Element %s", - chrdef.getSymbol() - ), - String.format( - "String %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - } - - readCharacters( - element, - value, - (CharacterTypeDefinition) chrdef, - true /* remove trailing zeroes */ - ); - - } - - void applyRule5_13(Element element, MXFInputStream value, StrongReferenceTypeDefinition definition) throws RuleException, IOException { - - Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getReferenceType())); - - if (!(typedef instanceof ClassDefinition)) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.INVALID_STRONG_REFERENCE_TYPE, - String.format( - "Target %s of Strong Reference Type is not a class", - typedef.getSymbol() - ), - String.format( - "Type %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - - } - - UUID uuid = value.readUUID(); - - Group g = setresolver.get(uuid); - - if (g != null) { - - applyRule3(element, g); - - } else { - - FragmentEvent evt = new FragmentEvent( - EventCodes.STRONG_REFERENCE_NOT_FOUND, - String.format( - "Strong Reference target %s is not found", - uuid.toString() - ), - String.format( - "Type %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - - } - - void applyRule5_alpha(Element element, MXFInputStream value, FloatTypeDefinition definition) throws RuleException, IOException { - - try { - - DataInputStream dis = new DataInputStream(value); - - double val = 0; - - switch (definition.getSize()) { - case HALF: - - val = HalfFloat.toDouble(dis.readUnsignedShort()); - - break; - case SINGLE: - val = dis.readFloat(); - break; - case DOUBLE: - val = dis.readDouble(); - break; - } - - element.setTextContent(Double.toString(val)); - - } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); - } - - } - - void applyRule5_beta(Element element, MXFInputStream value, LensSerialFloatTypeDefinition definition) throws RuleException { - - throw new RuleException("Lens serial floats not supported."); - - } - - Definition findBaseDefinition(Definition definition) { - - while (definition instanceof RenameTypeDefinition) { - definition = defresolver.getDefinition(((RenameTypeDefinition) definition).getRenamedType()); - } - - return definition; - } - - private Collection getAllMembersOf(ClassDefinition definition) { - ClassDefinition cdef = definition; - - ArrayList props = new ArrayList<>(); - - while (cdef != null) { - - for (AUID auid : defresolver.getMembersOf(cdef)) { - props.add((PropertyDefinition) defresolver.getDefinition(auid)); - } - - if (cdef.getParentClass() != null) { - cdef = (ClassDefinition) defresolver.getDefinition(cdef.getParentClass()); - } else { - cdef = null; - } - - } - - return props; - } - - final static char[] HEXMAP = "0123456789abcdef".toCharArray(); - - private String bytesToString(byte[] buffer) { - - char[] out = new char[2 * buffer.length]; - - for (int j = 0; j < buffer.length; j++) { - - int v = buffer[j] & 0xFF; - out[j * 2] = HEXMAP[v >>> 4]; - out[j * 2 + 1] = HEXMAP[v & 0x0F]; - } - - return new String(out); - } - - void applyRule5_14(Element element, MXFInputStream value, VariableArrayTypeDefinition definition) throws RuleException, IOException { - - Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); - - try { - - DataInputStream dis = new DataInputStream(value); - - if (definition.getSymbol().equals("DataValue")) { - - /* RULE 5.14.2 */ - /* DataValue is string of octets, without number of elements or size of elements */ - byte[] buffer = new byte[32]; - - StringBuilder sb = new StringBuilder(); - - for (int sz = 0; (sz = dis.read(buffer)) > -1;) { - - for (int j = 0; j < sz; j++) { - - int v = buffer[j] & 0xFF; - sb.append(HEXMAP[v >>> 4]); - sb.append(HEXMAP[v & 0x0F]); - } - } - - element.setTextContent(sb.toString()); - - } else { - - Definition base = findBaseDefinition(typedef); - - if (base instanceof CharacterTypeDefinition || base.getName().contains("StringArray")) { - - /* RULE 5.14.1 */ - /* INFO: StringArray is not used in MXF (ST 377-1) */ - throw new RuleException("StringArray not supported."); - - } else { - - long itemcount = dis.readInt() & 0xfffffffL; - long itemlength = dis.readInt() & 0xfffffffL; - - applyCoreRule5_4(element, value, typedef, (int) itemcount); - } - - } - - } catch (UnsupportedEncodingException e) { - - throw new RuntimeException(e); - - } catch (EOFException eof) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.VALUE_LENGTH_MISMATCH, - "Value too short", - String.format( - "Array %s at Element %s", - definition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - } - - } - - void applyRule5_15(Element element, MXFInputStream value, WeakReferenceTypeDefinition typedefinition) throws RuleException { - - ClassDefinition classdef = (ClassDefinition) defresolver.getDefinition(typedefinition.getReferencedType()); - - PropertyDefinition uniquepropdef = null; - - for (PropertyDefinition propdef : getAllMembersOf(classdef)) { - - if (propdef.isUniqueIdentifier()) { - uniquepropdef = propdef; - break; - } - } - - if (uniquepropdef == null) { - - FragmentEvent evt = new FragmentEvent( - EventCodes.MISSING_UNIQUE, - String.format( - "Weak reference target %s has no IsUnique element.", - classdef.getSymbol() - ), - String.format( - "Type %s at Element %s", - typedefinition.getSymbol(), - element.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(element, evt.getReason()); - - return; - } - - applyRule4(element, value, uniquepropdef); - - } - - public static class RuleException extends Exception { - - public RuleException(Throwable t) { - super(t); - } - - public RuleException(String msg) { - super(msg); - } - - public RuleException(String msg, Throwable t) { - super(msg, t); - } - - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml; + +import com.sandflow.smpte.klv.Group; +import com.sandflow.smpte.klv.KLVInputStream.ByteOrder; +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.mxf.MXFInputStream; +import com.sandflow.smpte.mxf.Set; +import com.sandflow.smpte.regxml.dict.DefinitionResolver; +import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; +import com.sandflow.smpte.util.AUID; +import com.sandflow.util.events.EventHandler; +import com.sandflow.smpte.util.HalfFloat; +import com.sandflow.smpte.util.IDAU; +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.UMID; +import com.sandflow.smpte.util.UUID; +import com.sandflow.util.events.Event; +import java.io.DataInputStream; +import java.io.EOFException; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; +import java.io.UnsupportedEncodingException; +import java.math.BigInteger; +import java.net.URI; +import java.net.URISyntaxException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.HashMap; +import java.util.Map; +import java.util.logging.Logger; +import org.w3c.dom.Attr; +import org.w3c.dom.Document; +import org.w3c.dom.DocumentFragment; +import org.w3c.dom.Element; +import org.w3c.dom.Node; + +/** + * Builds a RegXML Fragment of a single KLV Group, typically a Header Metadata + * MXF Set, using a collection of MetaDictionary definitions + */ +public class FragmentBuilder { + + /** + * Defines all events raised by this class + */ + public static enum EventCodes { + + /** + * Raised when a Group Key cannot be matched to a group definition + */ + UNKNOWN_GROUP(Event.Severity.INFO), + /** + * Raised when a Property Key cannot be matched to a property definition + */ + UNKNOWN_PROPERTY(Event.Severity.INFO), + /** + * Raised when the version byte of a UL does not match that listed in + * the metadictionary + */ + VERSION_BYTE_MISMATCH(Event.Severity.WARN), + /** + * Raised when the definition associated with a UL does not match the + * kind of definition that was expected + */ + UNEXPECTED_DEFINITION(Event.Severity.ERROR), + /** + * Raised when a circular reference is found between Sets + */ + CIRCULAR_STRONG_REFERENCE(Event.Severity.ERROR), + /** + * Raised when the byte order indicated in the file does not match the + * specification. + */ + UNEXPECTED_BYTE_ORDER(Event.Severity.ERROR), + /** + * Raised when a type definition is not found. + */ + UNKNOWN_TYPE(Event.Severity.ERROR), + /** + * Raised when the target of a weak reference does not have a unique + * property. + */ + MISSING_UNIQUE(Event.Severity.ERROR), + /** + * Raised when the referenced primary package is not found. + */ + MISSING_PRIMARY_PACKAGE(Event.Severity.ERROR), + /** + * Raised when the size of data read does not match expectations. + */ + VALUE_LENGTH_MISMATCH(Event.Severity.ERROR), + /** + * Raised when the type of a Character definition is not supported. + */ + UNSUPPORTED_CHAR_TYPE(Event.Severity.ERROR), + /** + * Raised when the type of an enum definition is not supported. + */ + UNSUPPORTED_ENUM_TYPE(Event.Severity.ERROR), + /** + * Raised when an enum value is not supported. + */ + UNKNOWN_ENUM_VALUE(Event.Severity.ERROR), + /** + * Raised when an IDAU is invalid. + */ + INVALID_IDAU(Event.Severity.ERROR), + /** + * Raised when an enum value is not supported. + */ + INVALID_INTEGER_VALUE(Event.Severity.ERROR), + /** + * Raised when the type of a String definition is not supported. + */ + UNSUPPORTED_STRING_TYPE(Event.Severity.ERROR), + /** + * Raised when the target of a Strong Reference Type is not a class. + */ + INVALID_STRONG_REFERENCE_TYPE(Event.Severity.ERROR), + /** + * Raised when the target of a Strong Reference is not found + */ + STRONG_REFERENCE_NOT_FOUND(Event.Severity.ERROR); + + public final Event.Severity severity; + + private EventCodes(Event.Severity severity) { + this.severity = severity; + } + + } + + /** + * All events raised by this class are instances of this class + */ + public static class FragmentEvent extends com.sandflow.util.events.BasicEvent { + + final String reason; + final String where; + + public FragmentEvent(EventCodes kind, String reason) { + this(kind, reason, null); + } + + public FragmentEvent(EventCodes kind, String reason, String where) { + super(kind.severity, kind, reason + (where != null ? " at " + where : "")); + + this.reason = reason; + this.where = where; + } + + public String getReason() { + return reason; + } + + public String getWhere() { + return where; + } + + } + + private final static Logger LOG = Logger.getLogger(FragmentBuilder.class.getName()); + + private static final UL INSTANCE_UID_ITEM_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000"); + private static final UL AUID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.01.00.00.00.00.00"); + private static final UL UUID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.03.00.00.00.00.00"); + private static final UL DateStruct_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.05.00.00.00.00.00"); + private static final UL PackageID_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.02.00.00.00.00.00"); + private static final UL Rational_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.01.00.00.00.00.00"); + private static final UL TimeStruct_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.06.00.00.00.00.00"); + private static final UL TimeStamp_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.07.00.00.00.00.00"); + private static final UL VersionType_UL = UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.03.00.00.00.00.00"); + private static final UL ByteOrder_UL = UL.fromDotValue("06.0E.2B.34.01.01.01.01.03.01.02.01.02.00.00.00"); + private static final UL Character_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100100.00000000"); + private static final UL Char_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100300.00000000"); + private static final UL UTF8Character_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01100500.00000000"); + private static final UL ProductReleaseType_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.02010101.00000000"); + private static final UL Boolean_UL = UL.fromURN("urn:smpte:ul:060e2b34.01040101.01040100.00000000"); + private static final UL PrimaryPackage_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010104.06010104.01080000"); + private static final UL LinkedGenerationID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.08000000"); + private static final UL GenerationID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.01000000"); + private static final UL ApplicationProductID_UL = UL.fromURN("urn:smpte:ul:060e2b34.01010102.05200701.07000000"); + + private static final String REGXML_NS = "http://sandflow.com/ns/SMPTEST2001-1/baseline"; + private final static String XMLNS_NS = "http://www.w3.org/2000/xmlns/"; + + private static final String BYTEORDER_BE = "BigEndian"; + private static final String BYTEORDER_LE = "LittleEndian"; + private static final String UID_ATTR = "uid"; + private static final String ACTUALTYPE_ATTR = "actualType"; + private static final String ESCAPE_ATTR = "escape"; + + private final DefinitionResolver defresolver; + private final Map setresolver; + private final HashMap nsprefixes = new HashMap<>(); + private final AUIDNameResolver anameresolver; + private final EventHandler evthandler; + + /** + * Resolves a AUID into a local name + */ + public static interface AUIDNameResolver { + + /** + * Retrieves a local name for the provided AUID + * + * @param enumid AUID + * + * @return Local name of the AUID + */ + String getLocalName(AUID enumid); + } + + /** + * Instantiates a FragmentBuilder. If the anamresolver argument is not null, + * the FragmentBuilder will attempt to resolve the name of each AUID it + * writes to the output and add it as an XML comment. If the evthandler + * argument is not null, the Fragment builder will call back the caller with + * events it encounters as it transforms a Triplet. + * + * @param defresolver Maps Group Keys to MetaDictionary definitions. Must + * not be null; + * @param setresolver Resolves Strong References to groups. Must not be + * null. + * @param anameresolver Resolves a AUID to a human-readable symbol. May be + * null. + * @param evthandler Calls back the caller when an event occurs. May be + * null. + */ + public FragmentBuilder(DefinitionResolver defresolver, + Map setresolver, + AUIDNameResolver anameresolver, + EventHandler evthandler) { + + if (defresolver == null || setresolver == null) { + throw new IllegalArgumentException(); + + } + + this.defresolver = defresolver; + this.setresolver = setresolver; + this.anameresolver = anameresolver; + this.evthandler = evthandler; + } + + /** + * Instantiates a FragmentBuilder + * + * @deprecated Replaced by + * {@link #FragmentBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, java.util.Map, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler)}. + * This constructor does not allow the caller to provide an event handler, + * and instead uses java.util.logging to output events. + * + * @param defresolver Maps Group Keys to MetaDictionary definitions. Must + * not be null; + * @param setresolver Resolves Strong References to groups. Must not be + * null. + * @param anameresolver Resolves a AUID to a human-readable symbol. May be + * null. + */ + public FragmentBuilder(DefinitionResolver defresolver, + Map setresolver, + AUIDNameResolver anameresolver) { + + this(defresolver, + setresolver, + null, + new EventHandler() { + + @Override + public boolean handle(com.sandflow.util.events.Event evt) { + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(evt.getMessage()); + break; + case INFO: + LOG.info(evt.getMessage()); + break; + case WARN: + LOG.warning(evt.getMessage()); + } + + return true; + } + } + ); + } + + /** + * Instantiates a FragmentBuilder. + * + * @deprecated Replaced by + * {@link #FragmentBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, java.util.Map, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler) }. + * This constructor does not allow the caller to provide an event handler, + * and instead uses java.util.logging to output events. + * + * @param defresolver Maps Group Keys to MetaDictionary definitions. Must + * not be null; + * @param setresolver Resolves Strong References to groups. Must not be + * null. + */ + public FragmentBuilder(DefinitionResolver defresolver, Map setresolver) { + this(defresolver, setresolver, null); + } + + /** + * Creates a RegXML Fragment, represented an XML DOM Document Fragment + * + * @param group KLV Group for which the Fragment will be generated. + * @param document Document from which the XML DOM Document Fragment will be + * created. + * + * @return XML DOM Document Fragment containing a single RegXML Fragment + * + * @throws KLVException + * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException + */ + public DocumentFragment fromTriplet(Group group, Document document) throws KLVException, RuleException { + + DocumentFragment df = document.createDocumentFragment(); + + applyRule3(df, group); + + /* NOTE: Hack to clean-up namespace prefixes */ + for (Map.Entry entry : nsprefixes.entrySet()) { + ((Element) df.getFirstChild()).setAttributeNS(XMLNS_NS, "xmlns:" + entry.getValue(), entry.getKey().toString()); + } + + return df; + } + + private String getPrefix(URI ns) { + String prefix = this.nsprefixes.get(ns); + + /* if prefix does not exist, create one */ + if (prefix == null) { + prefix = "r" + this.nsprefixes.size(); + + this.nsprefixes.put(ns, prefix); + } + + return prefix; + } + + String getPrefix(String ns) { + + try { + return getPrefix(new URI(ns)); + } catch (URISyntaxException ex) { + throw new RuntimeException(ex); + } + } + + void addInformativeComment(Element element, String comment) { + element.appendChild(element.getOwnerDocument().createComment(comment)); + } + + void handleEvent(FragmentEvent evt) throws RuleException { + + if (evthandler != null) { + + if (!evthandler.handle(evt) + || evt.getSeverity() == Event.Severity.FATAL) { + + /* die on FATAL events or if requested by the handler */ + throw new RuleException(evt.getMessage()); + + } + + } else if (evt.getSeverity() == Event.Severity.ERROR + || evt.getSeverity() == Event.Severity.FATAL) { + + /* if no event handler was provided, die on FATAL and ERROR events */ + throw new RuleException(evt.getMessage()); + + } + + } + + void applyRule3(Node node, Group group) throws RuleException { + + Definition definition = defresolver.getDefinition(new AUID(group.getKey())); + + if (definition == null) { + + handleEvent(new FragmentEvent( + EventCodes.UNKNOWN_GROUP, + String.format( + "Unknown Group UL %s", + group.getKey().toString() + ) + ) + ); + + return; + } + + if (definition.getIdentification().asUL().getVersion() != group.getKey().getVersion()) { + + handleEvent(new FragmentEvent( + EventCodes.VERSION_BYTE_MISMATCH, + String.format( + "Group UL %s in file does not have the same version as in the register (0x%02x)", + group.getKey(), + definition.getIdentification().asUL().getVersion() + ) + ) + ); + + } + + Element objelem = node.getOwnerDocument().createElementNS(definition.getNamespace().toString(), definition.getSymbol()); + + node.appendChild(objelem); + + objelem.setPrefix(getPrefix(definition.getNamespace())); + + for (Triplet item : group.getItems()) { + + /* skip if the property is not defined in the registers */ + Definition itemdef = defresolver.getDefinition(item.getKey()); + + if (itemdef == null) { + + handleEvent(new FragmentEvent( + EventCodes.UNKNOWN_PROPERTY, + String.format( + "Unknown property %s", + item.getKey().toString() + ), + String.format( + "Group %s", + definition.getSymbol() + ) + ) + ); + + /* inserts the full value of the dark property as a comment */ + addInformativeComment( + objelem, + String.format( + "Unknown property\nKey: %s\nData: %s", + item.getKey().toString(), + bytesToString(item.getValue()) + ) + ); + + continue; + + } + + /* make sure this is a property definition */ + if (!(itemdef instanceof PropertyDefinition)) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNEXPECTED_DEFINITION, + String.format( + "Item %s is not a property", + item.getKey().toString() + ), + String.format( + "Group %s", + definition.getSymbol() + ) + ); + + handleEvent(evt); + + addInformativeComment(objelem, evt.getReason()); + + continue; + } + + /* warn if version byte of the property does not match the register version byte */ + if (itemdef.getIdentification().asUL().getVersion() != item.getKey().asUL().getVersion()) { + + handleEvent(new FragmentEvent( + EventCodes.VERSION_BYTE_MISMATCH, + String.format( + "Property UL %s in file does not have the same version as in the register (0x%02x)", + item.getKey().toString(), + itemdef.getIdentification().asUL().getVersion() + ), + String.format( + "Group %s", + definition.getSymbol() + ) + ) + ); + + } + + Element elem = node.getOwnerDocument().createElementNS(itemdef.getNamespace().toString(), itemdef.getSymbol()); + + objelem.appendChild(elem); + + elem.setPrefix(getPrefix(itemdef.getNamespace())); + + /* write the property */ + applyRule4(elem, new MXFInputStream(item.getValueAsStream()), itemdef); + + /* detect cyclic references */ + if (item.getKey().equals(INSTANCE_UID_ITEM_UL)) { + + String iidns = objelem.getLastChild().getNamespaceURI(); + String iidname = objelem.getLastChild().getLocalName(); + String iid = objelem.getLastChild().getTextContent(); + + /* look for identical instanceID in parent elements */ + Node parent = node; + + while (parent.getNodeType() == Node.ELEMENT_NODE) { + + for (Node n = parent.getFirstChild(); n != null; n = n.getNextSibling()) { + + if (n.getNodeType() == Node.ELEMENT_NODE + && iidname.equals(n.getLocalName()) + && iidns.equals(n.getNamespaceURI()) + && iid.equals(n.getTextContent())) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.CIRCULAR_STRONG_REFERENCE, + String.format( + "Circular Strong Reference to Set UID %s", + iid + ), + String.format( + "Group %s", + definition.getSymbol() + ) + ); + + handleEvent(evt); + + addInformativeComment( + (Element) node, + evt.getReason() + ); + + return; + } + } + + parent = parent.getParentNode(); + } + + } + + /* add reg:uid if property is a unique ID */ + if (((PropertyDefinition) itemdef).isUniqueIdentifier()) { + + Attr attr = node.getOwnerDocument().createAttributeNS(REGXML_NS, UID_ATTR); + + attr.setPrefix(getPrefix(REGXML_NS)); + attr.setTextContent(objelem.getLastChild().getTextContent()); + + objelem.setAttributeNodeNS(attr); + } + + } + + } + + void applyRule4(Element element, MXFInputStream value, Definition propdef) throws RuleException { + + try { + + if (propdef.getIdentification().equals(ByteOrder_UL)) { + + int byteorder; + + byteorder = value.readUnsignedShort(); + + /* ISSUE: ST 2001-1 inverses these constants */ + if (byteorder == 0x4D4D) { + + element.setTextContent(BYTEORDER_BE); + + } else if (byteorder == 0x4949) { + + element.setTextContent(BYTEORDER_LE); + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNEXPECTED_BYTE_ORDER, + "ByteOrder property set to little-endian: either the property is set" + + "incorrectly or the file does not conform to MXF. Processing will" + + "assume a big-endian byte order going forward." + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } else { + throw new RuleException("Unknown ByteOrder value."); + } + + } else { + + if (propdef instanceof PropertyAliasDefinition) { + propdef = defresolver.getDefinition(((PropertyAliasDefinition) propdef).getOriginalProperty()); + } + + Definition typedef = findBaseDefinition(defresolver.getDefinition(((PropertyDefinition) propdef).getType())); + + /* return if no type definition is found */ + if (typedef == null) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Type %s not found", + ((PropertyDefinition) propdef).getType().toString() + ), + String.format( + "Property %s at Element %s", + propdef.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + + } + + if (propdef.getIdentification().equals(PrimaryPackage_UL)) { + + /* EXCEPTION: PrimaryPackage is encoded as the Instance UUID of the target set + but needs to be the UMID contained in the unique ID of the target set */ + UUID uuid = value.readUUID(); + + /* is this a local reference through Instance ID? */ + Group g = setresolver.get(uuid); + + if (g != null) { + + boolean foundUniqueID = false; + + /* find the unique identifier in the group */ + for (Triplet item : g.getItems()) { + + Definition itemdef = defresolver.getDefinition(item.getKey()); + + if (itemdef != null + && itemdef instanceof PropertyDefinition + && ((PropertyDefinition) itemdef).isUniqueIdentifier()) { + + applyRule4(element, new MXFInputStream(item.getValueAsStream()), itemdef); + + foundUniqueID = true; + + break; + + } + + } + + if (foundUniqueID != true) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.MISSING_UNIQUE, + String.format( + "Target Primary Package with Instance UID %s has no IsUnique element.", + uuid.toString() + ), + String.format( + "Property %s at Element %s", + propdef.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + + } else { + + FragmentEvent evt = new FragmentEvent( + EventCodes.MISSING_PRIMARY_PACKAGE, + String.format( + "Target Primary Package with Instance UID %s not found", + uuid.toString() + ), + String.format( + "Property %s at Element %s", + propdef.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + + } else { + + if (propdef.getIdentification().equals(LinkedGenerationID_UL) + || propdef.getIdentification().equals(GenerationID_UL) + || propdef.getIdentification().equals(ApplicationProductID_UL)) { + + /* EXCEPTION: LinkedGenerationID, GenerationID and ApplicationProductID + are encoded using UUID */ + typedef = defresolver.getDefinition(new AUID(UUID_UL)); + } + + applyRule5(element, value, typedef); + } + } + + } catch (EOFException eof) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + "Value too short", + String.format( + "Property %s at Element %s", + propdef.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } catch (IOException ioe) { + + throw new RuleException(ioe); + + } + + } + + void applyRule5(Element element, MXFInputStream value, Definition definition) throws RuleException, IOException { + + if (definition instanceof CharacterTypeDefinition) { + applyRule5_1(element, value, (CharacterTypeDefinition) definition); + } else if (definition instanceof EnumerationTypeDefinition) { + applyRule5_2(element, value, (EnumerationTypeDefinition) definition); + } else if (definition instanceof ExtendibleEnumerationTypeDefinition) { + applyRule5_3(element, value, (ExtendibleEnumerationTypeDefinition) definition); + } else if (definition instanceof FixedArrayTypeDefinition) { + applyRule5_4(element, value, (FixedArrayTypeDefinition) definition); + } else if (definition instanceof IndirectTypeDefinition) { + applyRule5_5(element, value, (IndirectTypeDefinition) definition); + } else if (definition instanceof IntegerTypeDefinition) { + applyRule5_6(element, value, (IntegerTypeDefinition) definition); + } else if (definition instanceof OpaqueTypeDefinition) { + applyRule5_7(element, value, (OpaqueTypeDefinition) definition); + } else if (definition instanceof RecordTypeDefinition) { + applyRule5_8(element, value, (RecordTypeDefinition) definition); + } else if (definition instanceof RenameTypeDefinition) { + applyRule5_9(element, value, (RenameTypeDefinition) definition); + } else if (definition instanceof SetTypeDefinition) { + applyRule5_10(element, value, (SetTypeDefinition) definition); + } else if (definition instanceof StreamTypeDefinition) { + applyRule5_11(element, value, (StreamTypeDefinition) definition); + } else if (definition instanceof StringTypeDefinition) { + applyRule5_12(element, value, (StringTypeDefinition) definition); + } else if (definition instanceof StrongReferenceTypeDefinition) { + applyRule5_13(element, value, (StrongReferenceTypeDefinition) definition); + } else if (definition instanceof VariableArrayTypeDefinition) { + applyRule5_14(element, value, (VariableArrayTypeDefinition) definition); + } else if (definition instanceof WeakReferenceTypeDefinition) { + applyRule5_15(element, value, (WeakReferenceTypeDefinition) definition); + } else if (definition instanceof FloatTypeDefinition) { + applyRule5_alpha(element, value, (FloatTypeDefinition) definition); + } else if (definition instanceof LensSerialFloatTypeDefinition) { + applyRule5_beta(element, value, (LensSerialFloatTypeDefinition) definition); + } else { + + throw new RuleException( + String.format( + "Unknown Definition %s in Rule 5.", + definition.getClass().toString() + ) + ); + + } + + } + + private void readCharacters(Element element, MXFInputStream value, CharacterTypeDefinition definition, boolean isSingleChar) throws RuleException, IOException { + + StringBuilder sb = new StringBuilder(); + + Reader in = null; + + if (definition.getIdentification().equals(Character_UL)) { + + if (value.getByteOrder() == ByteOrder.BIG_ENDIAN) { + + in = new InputStreamReader(value, "UTF-16BE"); + + } else { + + in = new InputStreamReader(value, "UTF-16LE"); + + } + + } else if (definition.getIdentification().equals(Char_UL)) { + + in = new InputStreamReader(value, "US-ASCII"); + + } else if (definition.getIdentification().equals(UTF8Character_UL)) { + + /* NOTE: Use of UTF-8 character encoding is specified in RP 2057 */ + in = new InputStreamReader(value, "UTF-8"); + + } else { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNSUPPORTED_CHAR_TYPE, + String.format( + "Character type %s is not supported at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + + } + + char[] chars = new char[32]; + + for (int c; (c = in.read(chars)) != -1;) { + sb.append(chars, 0, c); + } + + StringBuilder esb = new StringBuilder(); + + /* remove trailing zeroes if requested */ + /* and escape characters per ST 2001-1 */ + boolean isescaped = false; + + for (int i = 0; i < sb.length(); i++) { + char c = sb.charAt(i); + + if (c == 0 && (! isSingleChar)) break; + + if (c == 0x09 || + c == 0x0A || + (c >= 0x20 && c <= 0x23) || + c >= 0x25) { + + esb.append(c); + + } else { + + isescaped = true; + + esb.append("$#x"); + esb.append(Integer.toString(c, 16)); + esb.append(";"); + + } + } + + if (isescaped) { + + Attr attr = element.getOwnerDocument().createAttributeNS(REGXML_NS, ESCAPE_ATTR); + attr.setPrefix(getPrefix(REGXML_NS)); + attr.setTextContent("true"); + element.setAttributeNodeNS(attr); + + } + + element.setTextContent(esb.toString()); + + } + + void applyRule5_1(Element element, MXFInputStream value, CharacterTypeDefinition definition) throws RuleException, IOException { + + readCharacters(element, value, definition, true /* do not remove trailing zeroes for a single char */); + + } + + private byte[] fullyReadBytes(MXFInputStream value, int len) throws IOException { + byte[] bytes = new byte[len]; + + int br = 0; + + while (br < len) { + int count = value.read(bytes, br, len - br); + if (count < 0) break; + br += count; + } + + if (br < len) { + bytes = Arrays.copyOf(bytes, br); + } + + return bytes; + } + + void applyRule5_2(Element element, MXFInputStream value, EnumerationTypeDefinition definition) throws RuleException, IOException { + + try { + + Definition bdef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); + + if (!(bdef instanceof IntegerTypeDefinition)) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNSUPPORTED_ENUM_TYPE, + "Enum does not have an Integer base type.", + String.format( + "Enum %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + } + + IntegerTypeDefinition idef = (IntegerTypeDefinition) bdef; + + int len = 0; + + if (definition.getIdentification().equals(ProductReleaseType_UL)) { + + /* EXCEPTION: ProductReleaseType_UL is listed as + a UInt8 enum but encoded as a UInt16 */ + len = 2; + + } else { + switch (idef.getSize()) { + case ONE: + len = 1; + break; + case TWO: + len = 2; + break; + case FOUR: + len = 4; + break; + case EIGHT: + len = 8; + break; + } + } + + byte[] val = fullyReadBytes(value, len); + + String str = null; + + if (val.length == 0) { + + str = "ERROR"; + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + "No data", + String.format( + "Enum %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } else { + + /* always try to read the value even if the length is not as expected */ + BigInteger bi = idef.isSigned() ? new BigInteger(val) : new BigInteger(1, val); + + if (definition.getElementType().equals(Boolean_UL)) { + + /* find the "true" enum element */ + /* MXF can encode "true" as any value other than 0 */ + for (EnumerationTypeDefinition.Element e : definition.getElements()) { + if ((bi.intValue() == 0 && e.getValue() == 0) || (bi.intValue() != 0 && e.getValue() == 1)) { + str = e.getName(); + } + } + + } else { + + for (EnumerationTypeDefinition.Element e : definition.getElements()) { + if (e.getValue() == bi.intValue()) { + str = e.getName(); + } + } + + } + + if (str == null) { + + str = "UNDEFINED"; + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNKNOWN_ENUM_VALUE, + String.format( + "Undefined value %d", + bi.intValue() + ), + String.format( + "Enum %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } else if (val.length != len) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + String.format( + "Incorrect length: expected %d and received %d", + len, + val.length + ), + String.format( + "Enumeration %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + } + + element.setTextContent(str); + + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + } + + void appendCommentWithAUIDName(AUIDNameResolver anr, AUID auid, Element elem) { + if (this.anameresolver != null) { + + String ename = this.anameresolver.getLocalName(auid); + + if (ename != null) { + elem.appendChild(elem.getOwnerDocument().createComment(ename)); + } + + } + } + + void applyRule5_3(Element element, MXFInputStream value, ExtendibleEnumerationTypeDefinition definition) throws RuleException, IOException { + + try { + + UL ul = value.readUL(); + + /* NOTE: ST 2001-1 XML Schema does not allow ULs as values for Extendible Enumerations, which + defeats the purpose of the type. This issue could be addressed at the next revision opportunity. */ + element.setTextContent(ul.toString()); + + appendCommentWithAUIDName(anameresolver, new AUID(ul), element); + + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + } + + void applyRule5_4(Element element, MXFInputStream value, FixedArrayTypeDefinition definition) throws RuleException, IOException { + + if (definition.getIdentification().equals(UUID_UL)) { + + UUID uuid = value.readUUID(); + + element.setTextContent(uuid.toString()); + + } else { + + Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); + + applyCoreRule5_4(element, value, typedef, definition.getElementCount()); + + } + } + + void applyCoreRule5_4(Element element, MXFInputStream value, Definition typedef, int elementcount) throws RuleException, IOException { + + for (int i = 0; i < elementcount; i++) { + + if (typedef instanceof StrongReferenceTypeDefinition) { + + /* Rule 5.4.1 */ + applyRule5_13(element, value, (StrongReferenceTypeDefinition) typedef); + + } else { + + /* Rule 5.4.2 */ + Element elem = element.getOwnerDocument().createElementNS(typedef.getNamespace().toString(), typedef.getSymbol()); + + elem.setPrefix(getPrefix(typedef.getNamespace())); + + applyRule5(elem, value, typedef); + + element.appendChild(elem); + + } + } + } + + void applyRule5_5(Element element, MXFInputStream value, IndirectTypeDefinition definition) throws RuleException, IOException { + + /* see https://github.com/sandflow/regxmllib/issues/74 for a discussion on Indirect Type */ + ByteOrder bo; + + switch (value.readUnsignedByte()) { + case 0x4c /* little endian */: + bo = ByteOrder.LITTLE_ENDIAN; + break; + case 0x42 /* big endian */: + bo = ByteOrder.BIG_ENDIAN; + break; + default: + throw new RuleException("Unknown Indirect Byte Order value."); + } + + MXFInputStream orderedval = new MXFInputStream(value, bo); + + IDAU idau = orderedval.readIDAU(); + + if (idau == null) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.INVALID_IDAU, + "Invalid IDAU", + String.format( + "Indirect Type %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + } + + AUID auid = idau.asAUID(); + + Definition def = (Definition) defresolver.getDefinition(auid); + + if (def == null) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "No definition found for indirect type %s.", + auid.toString() + ), + String.format( + "Indirect Type %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + } + + // create reg:actualType attribute + Attr attr = element.getOwnerDocument().createAttributeNS(REGXML_NS, ACTUALTYPE_ATTR); + attr.setPrefix(getPrefix(REGXML_NS)); + attr.setTextContent(def.getSymbol()); + element.setAttributeNodeNS(attr); + + applyRule5(element, orderedval, def); + + } + + void applyRule5_6(Element element, MXFInputStream value, IntegerTypeDefinition definition) throws RuleException, IOException { + + try { + + int len = 0; + + switch (definition.getSize()) { + case ONE: + len = 1; + break; + case TWO: + len = 2; + break; + case FOUR: + len = 4; + break; + case EIGHT: + len = 8; + break; + } + + byte[] val = fullyReadBytes(value, len); + + if (val.length == 0) { + + element.setTextContent("NaN"); + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + "No data", + String.format( + "Integer %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } else { + + try { + + BigInteger bi = definition.isSigned() ? new BigInteger(val) : new BigInteger(1, val); + + element.setTextContent(bi.toString()); + + if (val.length != len) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + String.format( + "Incorrect field length: expected %d and parsed %d.", + len, + val.length + ), + String.format( + "Integer %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + + } catch (NumberFormatException e) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.INVALID_INTEGER_VALUE, + "Invalid integer value", + String.format( + "Integer %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + } + + } + + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + + } + + void applyRule5_7(Element element, MXFInputStream value, OpaqueTypeDefinition definition) throws RuleException { + + /* NOTE: Opaque Types are not used in MXF */ + throw new RuleException("Opaque types are not supported."); + + } + + String generateISO8601Time(int hour, int minutes, int seconds, int millis) { + StringBuilder sb = new StringBuilder(); + + sb.append(String.format("%02d:%02d:%02d", hour, minutes, seconds)); + + if (millis != 0) { + sb.append(String.format(".%03d", millis)); + } + + sb.append("Z"); + + return sb.toString(); + } + + String generateISO8601Date(int year, int month, int day) { + return String.format("%04d-%02d-%02d", year, month, day); + } + + void applyRule5_8(Element element, MXFInputStream value, RecordTypeDefinition definition) throws RuleException, IOException { + + if (definition.getIdentification().equals(AUID_UL)) { + + AUID auid = value.readAUID(); + + element.setTextContent(auid.toString()); + + appendCommentWithAUIDName(anameresolver, auid, element); + + } else if (definition.getIdentification().equals(DateStruct_UL)) { + + int year = value.readUnsignedShort(); + int month = value.readUnsignedByte(); + int day = value.readUnsignedByte(); + + element.setTextContent(generateISO8601Date(year, month, day)); + + } else if (definition.getIdentification().equals(PackageID_UL)) { + + UMID umid = value.readUMID(); + + element.setTextContent(umid.toString()); + + } else if (definition.getIdentification().equals(Rational_UL)) { + + int numerator = value.readInt(); + int denominator = value.readInt(); + + element.setTextContent(String.format("%d/%d", numerator, denominator)); + + } else if (definition.getIdentification().equals(TimeStruct_UL)) { + + /*INFO: ST 2001-1 and ST 377-1 diverge on the meaning of 'fraction'. + fraction is msec/4 according to 377-1 */ + int hour = value.readUnsignedByte(); + int minute = value.readUnsignedByte(); + int second = value.readUnsignedByte(); + int fraction = value.readUnsignedByte(); + + element.setTextContent(generateISO8601Time(hour, minute, second, 4 * fraction)); + + } else if (definition.getIdentification().equals(TimeStamp_UL)) { + + int year = value.readUnsignedShort(); + int month = value.readUnsignedByte(); + int day = value.readUnsignedByte(); + int hour = value.readUnsignedByte(); + int minute = value.readUnsignedByte(); + int second = value.readUnsignedByte(); + int fraction = value.readUnsignedByte(); + + element.setTextContent(generateISO8601Date(year, month, day) + "T" + generateISO8601Time(hour, minute, second, 4 * fraction)); + + } else if (definition.getIdentification().equals(VersionType_UL)) { + + /* EXCEPTION: registers used Int8 but MXF specifies UInt8 */ + int major = value.readUnsignedByte(); + int minor = value.readUnsignedByte(); + + element.setTextContent(String.format("%d.%d", major, minor)); + + } else { + + for (RecordTypeDefinition.Member member : definition.getMembers()) { + + Definition itemdef = findBaseDefinition(defresolver.getDefinition(member.getType())); + + Element elem = element.getOwnerDocument().createElementNS(definition.getNamespace().toString(), member.getName()); + + elem.setPrefix(getPrefix(definition.getNamespace())); + + applyRule5(elem, value, itemdef); + + element.appendChild(elem); + } + } + + } + + void applyRule5_9(Element element, MXFInputStream value, RenameTypeDefinition definition) throws RuleException, IOException { + + Definition rdef = defresolver.getDefinition(definition.getRenamedType()); + + applyRule5(element, value, rdef); + + } + + void applyRule5_10(Element element, MXFInputStream value, SetTypeDefinition definition) throws RuleException, IOException { + + Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); + + try { + + DataInputStream dis = new DataInputStream(value); + + long itemcount = dis.readInt() & 0xfffffffL; + long itemlength = dis.readInt() & 0xfffffffL; + + applyCoreRule5_4(element, value, typedef, (int) itemcount); + + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + + } + + void applyRule5_11(Element element, MXFInputStream value, StreamTypeDefinition definition) throws RuleException { + + throw new RuleException("Rule 5.11 is not supported yet."); + + } + + void applyRule5_12(Element element, MXFInputStream value, StringTypeDefinition definition) throws RuleException, IOException { + + /* Rule 5.12 */ + Definition chrdef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); + + /* NOTE: ST 2001-1 implies that integer-based strings are supported, but + does not described semantics. + */ + if (!(chrdef instanceof CharacterTypeDefinition)) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.UNSUPPORTED_STRING_TYPE, + String.format( + "Unsupported String with Element %s", + chrdef.getSymbol() + ), + String.format( + "String %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + } + + readCharacters( + element, + value, + (CharacterTypeDefinition) chrdef, + false /* remove trailing zeroes */ + ); + + } + + void applyRule5_13(Element element, MXFInputStream value, StrongReferenceTypeDefinition definition) throws RuleException, IOException { + + Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getReferencedType())); + + if (!(typedef instanceof ClassDefinition)) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.INVALID_STRONG_REFERENCE_TYPE, + String.format( + "Target %s of Strong Reference Type is not a class", + typedef.getSymbol() + ), + String.format( + "Type %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + + } + + UUID uuid = value.readUUID(); + + Group g = setresolver.get(uuid); + + if (g != null) { + + applyRule3(element, g); + + } else { + + FragmentEvent evt = new FragmentEvent( + EventCodes.STRONG_REFERENCE_NOT_FOUND, + String.format( + "Strong Reference target %s is not found", + uuid.toString() + ), + String.format( + "Type %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + + } + + void applyRule5_alpha(Element element, MXFInputStream value, FloatTypeDefinition definition) throws RuleException, IOException { + + try { + + DataInputStream dis = new DataInputStream(value); + + double val = 0; + + switch (definition.getSize()) { + case HALF: + + val = HalfFloat.toDouble(dis.readUnsignedShort()); + + break; + case SINGLE: + val = dis.readFloat(); + break; + case DOUBLE: + val = dis.readDouble(); + break; + } + + element.setTextContent(Double.toString(val)); + + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + + } + + void applyRule5_beta(Element element, MXFInputStream value, LensSerialFloatTypeDefinition definition) throws RuleException { + + throw new RuleException("Lens serial floats not supported."); + + } + + Definition findBaseDefinition(Definition definition) { + + while (definition instanceof RenameTypeDefinition) { + definition = defresolver.getDefinition(((RenameTypeDefinition) definition).getRenamedType()); + } + + return definition; + } + + private Collection getAllMembersOf(ClassDefinition definition) { + ClassDefinition cdef = definition; + + ArrayList props = new ArrayList<>(); + + while (cdef != null) { + + for (AUID auid : defresolver.getMembersOf(cdef)) { + props.add((PropertyDefinition) defresolver.getDefinition(auid)); + } + + if (cdef.getParentClass() != null) { + cdef = (ClassDefinition) defresolver.getDefinition(cdef.getParentClass()); + } else { + cdef = null; + } + + } + + return props; + } + + final static char[] HEXMAP = "0123456789abcdef".toCharArray(); + + private String bytesToString(byte[] buffer) { + + char[] out = new char[2 * buffer.length]; + + for (int j = 0; j < buffer.length; j++) { + + int v = buffer[j] & 0xFF; + out[j * 2] = HEXMAP[v >>> 4]; + out[j * 2 + 1] = HEXMAP[v & 0x0F]; + } + + return new String(out); + } + + void applyRule5_14(Element element, MXFInputStream value, VariableArrayTypeDefinition definition) throws RuleException, IOException { + + Definition typedef = findBaseDefinition(defresolver.getDefinition(definition.getElementType())); + + try { + + DataInputStream dis = new DataInputStream(value); + + if (definition.getSymbol().equals("DataValue")) { + + /* RULE 5.14.2 */ + /* DataValue is string of octets, without number of elements or size of elements */ + byte[] buffer = new byte[32]; + + StringBuilder sb = new StringBuilder(); + + for (int sz = 0; (sz = dis.read(buffer)) > -1;) { + + for (int j = 0; j < sz; j++) { + + int v = buffer[j] & 0xFF; + sb.append(HEXMAP[v >>> 4]); + sb.append(HEXMAP[v & 0x0F]); + } + } + + element.setTextContent(sb.toString()); + + } else { + + Definition base = findBaseDefinition(typedef); + + if (base instanceof CharacterTypeDefinition || base.getName().contains("StringArray")) { + + /* RULE 5.14.1 */ + /* INFO: StringArray is not used in MXF (ST 377-1) */ + throw new RuleException("StringArray not supported."); + + } else { + + long itemcount = dis.readInt() & 0xfffffffL; + long itemlength = dis.readInt() & 0xfffffffL; + + applyCoreRule5_4(element, value, typedef, (int) itemcount); + } + + } + + } catch (UnsupportedEncodingException e) { + + throw new RuntimeException(e); + + } catch (EOFException eof) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.VALUE_LENGTH_MISMATCH, + "Value too short", + String.format( + "Array %s at Element %s", + definition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + } + + } + + void applyRule5_15(Element element, MXFInputStream value, WeakReferenceTypeDefinition typedefinition) throws RuleException { + + ClassDefinition classdef = (ClassDefinition) defresolver.getDefinition(typedefinition.getReferencedType()); + + PropertyDefinition uniquepropdef = null; + + for (PropertyDefinition propdef : getAllMembersOf(classdef)) { + + if (propdef.isUniqueIdentifier()) { + uniquepropdef = propdef; + break; + } + } + + if (uniquepropdef == null) { + + FragmentEvent evt = new FragmentEvent( + EventCodes.MISSING_UNIQUE, + String.format( + "Weak reference target %s has no IsUnique element.", + classdef.getSymbol() + ), + String.format( + "Type %s at Element %s", + typedefinition.getSymbol(), + element.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(element, evt.getReason()); + + return; + } + + applyRule4(element, value, uniquepropdef); + + } + + public static class RuleException extends Exception { + + public RuleException(Throwable t) { + super(t); + } + + public RuleException(String msg) { + super(msg); + } + + public RuleException(String msg, Throwable t) { + super(msg, t); + } + + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java b/src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java similarity index 95% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java rename to src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java index 443b030..5769d5a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java +++ b/src/main/java/com/sandflow/smpte/regxml/MXFFragmentBuilder.java @@ -1,467 +1,467 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml; - -import com.sandflow.smpte.klv.Group; -import com.sandflow.smpte.klv.KLVInputStream; -import com.sandflow.smpte.klv.LocalSet; -import com.sandflow.smpte.klv.LocalTagRegister; -import com.sandflow.smpte.klv.Triplet; -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.mxf.FillItem; -import com.sandflow.smpte.mxf.PartitionPack; -import com.sandflow.smpte.mxf.PrimerPack; -import com.sandflow.smpte.mxf.Set; -import com.sandflow.smpte.regxml.dict.DefinitionResolver; -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.CountingInputStream; -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.UUID; -import com.sandflow.util.events.BasicEvent; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.io.IOException; -import java.io.InputStream; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.logging.Logger; -import org.w3c.dom.Document; -import org.w3c.dom.DocumentFragment; - -/** - * Builds a RegXML Fragment (SMPTE ST 2001-1) from an MXF file (SMPTE ST 377-1). - */ -public class MXFFragmentBuilder { - - private final static Logger LOG = Logger.getLogger(MXFFragmentBuilder.class.getName()); - - private static final UL INDEX_TABLE_SEGMENT_UL - = UL.fromURN("urn:smpte:ul:060e2b34.02530101.0d010201.01100100"); - - private static final UL PREFACE_KEY - = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); - - /** - * Defines all events raised by this class - */ - public static enum EventCodes { - - /** - * No root object found - */ - MISSING_ROOT_OBJECT(Event.Severity.FATAL), - /** - * No partition pack found in the MXF file - */ - MISSING_PARTITION_PACK(Event.Severity.FATAL), - /** - * No primer pack found in the MXF file - */ - MISSING_PRIMER_PACK(Event.Severity.FATAL), - /** - * Unexpected group sequence encountered - */ - UNEXPECTED_STRUCTURE(Event.Severity.ERROR), - /** - * Failed to read Group - */ - GROUP_READ_FAILED(Event.Severity.ERROR); - - public final Event.Severity severity; - - private EventCodes(Event.Severity severity) { - this.severity = severity; - } - - } - - /** - * All events raised by this class are instance of this class - */ - public static class MXFEvent extends BasicEvent { - - public MXFEvent(EventCodes kind, String message) { - super(kind.severity, kind, message); - } - - } - - static void handleEvent(EventHandler handler, com.sandflow.util.events.Event evt) throws MXFException { - - if (handler != null) { - - if (! handler.handle(evt) || - evt.getSeverity() == Event.Severity.FATAL) { - - /* die on FATAL events or if requested by the handler */ - - throw new MXFException(evt.getMessage()); - - } - - } else if (evt.getSeverity() == Event.Severity.ERROR || - evt.getSeverity() == Event.Severity.FATAL) { - - /* if no event handler was provided, die on FATAL and ERROR events */ - - throw new MXFException(evt.getMessage()); - - } - } - - /** - * @deprecated Replaced by {@link #fromInputStream(java.io.InputStream, com.sandflow.smpte.regxml.dict.DefinitionResolver, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler, com.sandflow.smpte.util.UL, org.w3c.dom.Document) }. This constructor does not allow the - * caller to provide an event handler, and instead uses java.util.logging to - * output events. - * - * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. - * @param defresolver MetaDictionary definitions. Must not be null. - * @param rootclasskey Root class of Fragment. The Preface class is used if null. - * @param document DOM for which the Document Fragment is created. Must not be null. - * - * @return Document Fragment containing a single RegXML Fragment - * - * @throws IOException - * @throws KLVException - * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException - * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException - */ - public static DocumentFragment fromInputStream(InputStream mxfpartition, - DefinitionResolver defresolver, - UL rootclasskey, - Document document) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { - - return fromInputStream(mxfpartition, - defresolver, - null, - rootclasskey, - document); - } - - /** - * @deprecated Replaced by {@link #fromInputStream(java.io.InputStream, com.sandflow.smpte.regxml.dict.DefinitionResolver, - * com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler, - * com.sandflow.smpte.util.UL, org.w3c.dom.Document)} - * This constructor does not allow the - * caller to provide an event handler, and instead uses java.util.logging to - * output events. - * - * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. - * @param defresolver MetaDictionary definitions. Must not be null. - * @param enumnameresolver Allows the local name of extendible enumeration - * values to be inserted as comments. May be null. - * @param rootclasskey Root class of Fragment. The Preface class is used if null. - * @param document DOM for which the Document Fragment is created. Must not be null. - * - * @return Document Fragment containing a single RegXML Fragment - * - * @throws IOException - * @throws KLVException - * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException - * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException - */ - public static DocumentFragment fromInputStream(InputStream mxfpartition, - DefinitionResolver defresolver, - FragmentBuilder.AUIDNameResolver enumnameresolver, - UL rootclasskey, - Document document) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { - - EventHandler handler = new EventHandler() { - - @Override - public boolean handle(Event evt) { - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(evt.getMessage()); - break; - case INFO: - LOG.info(evt.getMessage()); - break; - case WARN: - LOG.warning(evt.getMessage()); - } - - return true; - } - }; - - return fromInputStream(mxfpartition, - defresolver, - enumnameresolver, - handler, - rootclasskey, - document); - } - - /** - * Returns a DOM Document Fragment containing a RegXML Fragment rooted at - * the first Header Metadata object with a class that descends from the - * specified class. - * - * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. - * @param defresolver MetaDictionary definitions. Must not be null. - * @param enumnameresolver Allows the local name of extendible enumeration - * values to be inserted as comments. May be null. - * @param evthandler Calls back the caller when an event occurs. Must not be null. - * @param rootclasskey Root class of Fragment. The Preface class is used if null. - * @param document DOM for which the Document Fragment is created. Must not be null. - * - * @return Document Fragment containing a single RegXML Fragment - * - * @throws IOException - * @throws KLVException - * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException - * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException - */ - public static DocumentFragment fromInputStream( - InputStream mxfpartition, - DefinitionResolver defresolver, - FragmentBuilder.AUIDNameResolver enumnameresolver, - EventHandler evthandler, - UL rootclasskey, - Document document - ) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { - - CountingInputStream cis = new CountingInputStream(mxfpartition); - - /* look for the partition pack */ - KLVInputStream kis = new KLVInputStream(cis); - - PartitionPack pp = null; - - for (Triplet t; (t = kis.readTriplet()) != null;) { - - if ((pp = PartitionPack.fromTriplet(t)) != null) { - break; - } - } - - if (pp == null) { - - MXFEvent evt = new MXFEvent( - EventCodes.MISSING_PARTITION_PACK, - "No Partition Pack found" - ); - - handleEvent(evthandler, evt); - - } - - /* start counting header metadata bytes */ - cis.resetCount(); - - /* look for the primer pack */ - LocalTagRegister localreg = null; - - for (Triplet t; (t = kis.readTriplet()) != null; cis.resetCount()) { - - /* skip fill items, if any */ - if (!t.getKey().equalsIgnoreVersion(FillItem.getKey())) { - localreg = PrimerPack.createLocalTagRegister(t); - break; - } - - } - - if (localreg == null) { - - MXFEvent evt = new MXFEvent( - EventCodes.MISSING_PRIMER_PACK, - "No Primer Pack found" - ); - - handleEvent(evthandler, evt); - } - - /* capture all local sets within the header metadata */ - ArrayList gs = new ArrayList<>(); - HashMap setresolver = new HashMap<>(); - - for (Triplet t; - cis.getCount() < pp.getHeaderByteCount() - && (t = kis.readTriplet()) != null;) { - - if (t.getKey().equalsIgnoreVersion(INDEX_TABLE_SEGMENT_UL)) { - - /* stop if Index Table reached */ - MXFEvent evt = new MXFEvent( - EventCodes.UNEXPECTED_STRUCTURE, - "Index Table Segment encountered before Header Byte Count bytes read" - ); - - handleEvent(evthandler, evt); - - break; - - } else if (t.getKey().equalsIgnoreVersion(FillItem.getKey())) { - - /* skip fill items */ - continue; - } - - try { - Group g = LocalSet.fromTriplet(t, localreg); - - if (g != null) { - - gs.add(g); - - Set set = Set.fromGroup(g); - - if (set != null) { - setresolver.put(set.getInstanceID(), set); - } - - } else { - - MXFEvent evt = new MXFEvent( - EventCodes.GROUP_READ_FAILED, - String.format( - "Failed to read Group: {0}", - t.getKey().toString() - ) - ); - - handleEvent(evthandler, evt); - - } - } catch (KLVException ke) { - - MXFEvent evt = new MXFEvent( - EventCodes.GROUP_READ_FAILED, - String.format( - "Failed to read Group %s with error %s", - t.getKey().toString(), - ke.getMessage() - ) - ); - - handleEvent(evthandler, evt); - - } - } - - for (Group agroup : gs) { - - /* in MXF, the first header metadata set should be the - Preface set according to ST 377-1 Section 9.5.1, preceded - by Class 14 groups - */ - if (agroup.getKey().equalsWithMask(PREFACE_KEY, 0b1111101011111111 /* ignore version and Group coding */)) { - - break; - - } else if (!agroup.getKey().isClass14()) { - - MXFEvent evt = new MXFEvent( - EventCodes.UNEXPECTED_STRUCTURE, - String.format( - "At least one non-class 14 Set %s was found between" - + " the Primer Pack and the Preface Set.", - agroup.getKey() - ) - ); - - handleEvent(evthandler, evt); - - break; - - } - - } - - /* create the fragment */ - FragmentBuilder fb = new FragmentBuilder(defresolver, setresolver, enumnameresolver, evthandler); - - Group rootgroup = null; - - if (rootclasskey != null) { - - Iterator iter = gs.iterator(); - - /* find first essence descriptor */ - while (rootgroup == null && iter.hasNext()) { - - Group g = iter.next(); - - AUID gid = new AUID(g.getKey()); - - /* go up the class hierarchy */ - while (rootgroup == null && gid != null) { - - Definition def = defresolver.getDefinition(gid); - - /* skip if not a class instance */ - if (!(def instanceof ClassDefinition)) { - break; - } - - /* is it an instance of the requested root object */ - UL gul = def.getIdentification().asUL(); - - if (gul.equalsWithMask(rootclasskey, 0b1111101011111111 /* ignore version and Group coding */)) { - rootgroup = g; - - } else { - /* get parent class */ - gid = ((ClassDefinition) def).getParentClass(); - } - } - - } - - } else { - - rootgroup = gs.get(0); - - } - - if (rootgroup == null) { - - MXFEvent evt = new MXFEvent( - EventCodes.MISSING_ROOT_OBJECT, - "No Root Object found" - ); - - handleEvent(evthandler, evt); - - } - - return fb.fromTriplet(rootgroup, document); - - } - - public static class MXFException extends Exception { - - public MXFException(String msg) { - super(msg); - } - } -} +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml; + +import com.sandflow.smpte.klv.Group; +import com.sandflow.smpte.klv.KLVInputStream; +import com.sandflow.smpte.klv.LocalSet; +import com.sandflow.smpte.klv.LocalTagRegister; +import com.sandflow.smpte.klv.Triplet; +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.mxf.FillItem; +import com.sandflow.smpte.mxf.PartitionPack; +import com.sandflow.smpte.mxf.PrimerPack; +import com.sandflow.smpte.mxf.Set; +import com.sandflow.smpte.regxml.dict.DefinitionResolver; +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.CountingInputStream; +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.UUID; +import com.sandflow.util.events.BasicEvent; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.io.IOException; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.logging.Logger; +import org.w3c.dom.Document; +import org.w3c.dom.DocumentFragment; + +/** + * Builds a RegXML Fragment (SMPTE ST 2001-1) from an MXF file (SMPTE ST 377-1). + */ +public class MXFFragmentBuilder { + + private final static Logger LOG = Logger.getLogger(MXFFragmentBuilder.class.getName()); + + private static final UL INDEX_TABLE_SEGMENT_UL + = UL.fromURN("urn:smpte:ul:060e2b34.02530101.0d010201.01100100"); + + private static final UL PREFACE_KEY + = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); + + /** + * Defines all events raised by this class + */ + public static enum EventCodes { + + /** + * No root object found + */ + MISSING_ROOT_OBJECT(Event.Severity.FATAL), + /** + * No partition pack found in the MXF file + */ + MISSING_PARTITION_PACK(Event.Severity.FATAL), + /** + * No primer pack found in the MXF file + */ + MISSING_PRIMER_PACK(Event.Severity.FATAL), + /** + * Unexpected group sequence encountered + */ + UNEXPECTED_STRUCTURE(Event.Severity.ERROR), + /** + * Failed to read Group + */ + GROUP_READ_FAILED(Event.Severity.ERROR); + + public final Event.Severity severity; + + private EventCodes(Event.Severity severity) { + this.severity = severity; + } + + } + + /** + * All events raised by this class are instance of this class + */ + public static class MXFEvent extends BasicEvent { + + public MXFEvent(EventCodes kind, String message) { + super(kind.severity, kind, message); + } + + } + + static void handleEvent(EventHandler handler, com.sandflow.util.events.Event evt) throws MXFException { + + if (handler != null) { + + if (! handler.handle(evt) || + evt.getSeverity() == Event.Severity.FATAL) { + + /* die on FATAL events or if requested by the handler */ + + throw new MXFException(evt.getMessage()); + + } + + } else if (evt.getSeverity() == Event.Severity.ERROR || + evt.getSeverity() == Event.Severity.FATAL) { + + /* if no event handler was provided, die on FATAL and ERROR events */ + + throw new MXFException(evt.getMessage()); + + } + } + + /** + * @deprecated Replaced by {@link #fromInputStream(java.io.InputStream, com.sandflow.smpte.regxml.dict.DefinitionResolver, com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler, com.sandflow.smpte.util.UL, org.w3c.dom.Document) }. This constructor does not allow the + * caller to provide an event handler, and instead uses java.util.logging to + * output events. + * + * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. + * @param defresolver MetaDictionary definitions. Must not be null. + * @param rootclasskey Root class of Fragment. The Preface class is used if null. + * @param document DOM for which the Document Fragment is created. Must not be null. + * + * @return Document Fragment containing a single RegXML Fragment + * + * @throws IOException + * @throws KLVException + * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException + * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException + */ + public static DocumentFragment fromInputStream(InputStream mxfpartition, + DefinitionResolver defresolver, + UL rootclasskey, + Document document) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { + + return fromInputStream(mxfpartition, + defresolver, + null, + rootclasskey, + document); + } + + /** + * @deprecated Replaced by {@link #fromInputStream(java.io.InputStream, com.sandflow.smpte.regxml.dict.DefinitionResolver, + * com.sandflow.smpte.regxml.FragmentBuilder.AUIDNameResolver, com.sandflow.util.events.EventHandler, + * com.sandflow.smpte.util.UL, org.w3c.dom.Document)} + * This constructor does not allow the + * caller to provide an event handler, and instead uses java.util.logging to + * output events. + * + * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. + * @param defresolver MetaDictionary definitions. Must not be null. + * @param enumnameresolver Allows the local name of extendible enumeration + * values to be inserted as comments. May be null. + * @param rootclasskey Root class of Fragment. The Preface class is used if null. + * @param document DOM for which the Document Fragment is created. Must not be null. + * + * @return Document Fragment containing a single RegXML Fragment + * + * @throws IOException + * @throws KLVException + * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException + * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException + */ + public static DocumentFragment fromInputStream(InputStream mxfpartition, + DefinitionResolver defresolver, + FragmentBuilder.AUIDNameResolver enumnameresolver, + UL rootclasskey, + Document document) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { + + EventHandler handler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(evt.getMessage()); + break; + case INFO: + LOG.info(evt.getMessage()); + break; + case WARN: + LOG.warning(evt.getMessage()); + } + + return true; + } + }; + + return fromInputStream(mxfpartition, + defresolver, + enumnameresolver, + handler, + rootclasskey, + document); + } + + /** + * Returns a DOM Document Fragment containing a RegXML Fragment rooted at + * the first Header Metadata object with a class that descends from the + * specified class. + * + * @param mxfpartition MXF partition, including the Partition Pack. Must not be null. + * @param defresolver MetaDictionary definitions. Must not be null. + * @param enumnameresolver Allows the local name of extendible enumeration + * values to be inserted as comments. May be null. + * @param evthandler Calls back the caller when an event occurs. Must not be null. + * @param rootclasskey Root class of Fragment. The Preface class is used if null. + * @param document DOM for which the Document Fragment is created. Must not be null. + * + * @return Document Fragment containing a single RegXML Fragment + * + * @throws IOException + * @throws KLVException + * @throws com.sandflow.smpte.regxml.MXFFragmentBuilder.MXFException + * @throws com.sandflow.smpte.regxml.FragmentBuilder.RuleException + */ + public static DocumentFragment fromInputStream( + InputStream mxfpartition, + DefinitionResolver defresolver, + FragmentBuilder.AUIDNameResolver enumnameresolver, + EventHandler evthandler, + UL rootclasskey, + Document document + ) throws IOException, KLVException, MXFException, FragmentBuilder.RuleException { + + CountingInputStream cis = new CountingInputStream(mxfpartition); + + /* look for the partition pack */ + KLVInputStream kis = new KLVInputStream(cis); + + PartitionPack pp = null; + + for (Triplet t; (t = kis.readTriplet()) != null;) { + + if ((pp = PartitionPack.fromTriplet(t)) != null) { + break; + } + } + + if (pp == null) { + + MXFEvent evt = new MXFEvent( + EventCodes.MISSING_PARTITION_PACK, + "No Partition Pack found" + ); + + handleEvent(evthandler, evt); + + } + + /* start counting header metadata bytes */ + cis.resetCount(); + + /* look for the primer pack */ + LocalTagRegister localreg = null; + + for (Triplet t; (t = kis.readTriplet()) != null; cis.resetCount()) { + + /* skip fill items, if any */ + if (!FillItem.getKey().equalsIgnoreVersion(t.getKey())) { + localreg = PrimerPack.createLocalTagRegister(t); + break; + } + + } + + if (localreg == null) { + + MXFEvent evt = new MXFEvent( + EventCodes.MISSING_PRIMER_PACK, + "No Primer Pack found" + ); + + handleEvent(evthandler, evt); + } + + /* capture all local sets within the header metadata */ + ArrayList gs = new ArrayList<>(); + HashMap setresolver = new HashMap<>(); + + for (Triplet t; + cis.getCount() < pp.getHeaderByteCount() + && (t = kis.readTriplet()) != null;) { + + if (INDEX_TABLE_SEGMENT_UL.equalsIgnoreVersion(t.getKey())) { + + /* stop if Index Table reached */ + MXFEvent evt = new MXFEvent( + EventCodes.UNEXPECTED_STRUCTURE, + "Index Table Segment encountered before Header Byte Count bytes read" + ); + + handleEvent(evthandler, evt); + + break; + + } else if (FillItem.getKey().equalsIgnoreVersion(t.getKey())) { + + /* skip fill items */ + continue; + } + + try { + Group g = LocalSet.fromTriplet(t, localreg); + + if (g != null) { + + gs.add(g); + + Set set = Set.fromGroup(g); + + if (set != null) { + setresolver.put(set.getInstanceID(), set); + } + + } else { + + MXFEvent evt = new MXFEvent( + EventCodes.GROUP_READ_FAILED, + String.format( + "Failed to read Group: {0}", + t.getKey().toString() + ) + ); + + handleEvent(evthandler, evt); + + } + } catch (KLVException ke) { + + MXFEvent evt = new MXFEvent( + EventCodes.GROUP_READ_FAILED, + String.format( + "Failed to read Group %s with error %s", + t.getKey().toString(), + ke.getMessage() + ) + ); + + handleEvent(evthandler, evt); + + } + } + + for (Group agroup : gs) { + + /* in MXF, the first header metadata set should be the + Preface set according to ST 377-1 Section 9.5.1, preceded + by Class 14 groups + */ + if (agroup.getKey().equalsWithMask(PREFACE_KEY, 0b1111101011111111 /* ignore version and Group coding */)) { + + break; + + } else if (!agroup.getKey().isClass14()) { + + MXFEvent evt = new MXFEvent( + EventCodes.UNEXPECTED_STRUCTURE, + String.format( + "At least one non-class 14 Set %s was found between" + + " the Primer Pack and the Preface Set.", + agroup.getKey() + ) + ); + + handleEvent(evthandler, evt); + + break; + + } + + } + + /* create the fragment */ + FragmentBuilder fb = new FragmentBuilder(defresolver, setresolver, enumnameresolver, evthandler); + + Group rootgroup = null; + + if (rootclasskey != null) { + + Iterator iter = gs.iterator(); + + /* find first essence descriptor */ + while (rootgroup == null && iter.hasNext()) { + + Group g = iter.next(); + + AUID gid = new AUID(g.getKey()); + + /* go up the class hierarchy */ + while (rootgroup == null && gid != null) { + + Definition def = defresolver.getDefinition(gid); + + /* skip if not a class instance */ + if (!(def instanceof ClassDefinition)) { + break; + } + + /* is it an instance of the requested root object */ + UL gul = def.getIdentification().asUL(); + + if (gul.equalsWithMask(rootclasskey, 0b1111101011111111 /* ignore version and Group coding */)) { + rootgroup = g; + + } else { + /* get parent class */ + gid = ((ClassDefinition) def).getParentClass(); + } + } + + } + + } else { + + rootgroup = gs.get(0); + + } + + if (rootgroup == null) { + + MXFEvent evt = new MXFEvent( + EventCodes.MISSING_ROOT_OBJECT, + "No Root Object found" + ); + + handleEvent(evthandler, evt); + + } + + return fb.fromTriplet(rootgroup, document); + + } + + public static class MXFException extends Exception { + + public MXFException(String msg) { + super(msg); + } + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java b/src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java rename to src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java index c206ca1..1700252 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java +++ b/src/main/java/com/sandflow/smpte/regxml/XMLSchemaBuilder.java @@ -1,1567 +1,1567 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml; - -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.regxml.dict.DefinitionResolver; -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.UL; -import com.sandflow.util.events.BasicEvent; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.io.IOException; -import java.net.URI; -import java.security.InvalidParameterException; -import java.util.HashMap; -import java.util.Set; -import java.util.logging.Logger; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.parsers.ParserConfigurationException; -import org.w3c.dom.Document; -import org.w3c.dom.Element; -import org.xml.sax.SAXException; - -/** - * Generates XML Schemas from RegXML dictionaries according to the Model Mapping - * Rules specified in SMPTE ST 2001-1. These XML Schemas can be used to validate - * RegXML fragments, including those generated using - * {@link com.sandflow.smpte.regxml.FragmentBuilder} - */ -public class XMLSchemaBuilder { - - private final static Logger LOG = Logger.getLogger(XMLSchemaBuilder.class.getName()); - - public static final String REGXML_NS = "http://sandflow.com/ns/SMPTEST2001-1/baseline"; - private final static String XMLNS_NS = "http://www.w3.org/2000/xmlns/"; - private static final String XSD_NS = "http://www.w3.org/2001/XMLSchema"; - private static final String XLINK_NS = "http://www.w3.org/1999/xlink"; - private static final String XLINK_LOC = "http://www.w3.org/1999/xlink.xsd"; - - private static final AUID AUID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.01.00.00.00.00.00")); - private static final AUID UUID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.03.00.00.00.00.00")); - private static final AUID DateStruct_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.05.00.00.00.00.00")); - private static final AUID PackageID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.02.00.00.00.00.00")); - private static final AUID Rational_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.01.00.00.00.00.00")); - private static final AUID TimeStruct_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.06.00.00.00.00.00")); - private static final AUID TimeStamp_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.07.00.00.00.00.00")); - private static final AUID VersionType_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.03.00.00.00.00.00")); - private static final AUID ObjectClass_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.01.01.02.06.01.01.04.01.01.00.00")); - private static final AUID ByteOrder_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.01.01.01.03.01.02.01.02.00.00.00")); - private static final AUID InstanceID_AUID = new AUID(UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000")); - - private DefinitionResolver resolver; - private final NamespacePrefixMapper prefixes = new NamespacePrefixMapper(); - private final EventHandler evthandler; - - /** - * Defines the events returned by this class - */ - public static enum EventCodes { - - /** - * Raised when a type definition is not found. - */ - UNKNOWN_TYPE(Event.Severity.ERROR); - - public final Event.Severity severity; - - private EventCodes(Event.Severity severity) { - this.severity = severity; - } - - } - - /** - * All events raised by this class are instances of this class. - */ - public static class SchemaEvent extends BasicEvent { - - final String reason; - final String where; - - public SchemaEvent(EventCodes kind, String reason) { - this(kind, reason, null); - } - - public SchemaEvent(EventCodes kind, String reason, String where) { - super(kind.severity, kind, reason + (where != null ? " at " + where : "")); - - this.reason = reason; - this.where = where; - } - - public String getReason() { - return reason; - } - - public String getWhere() { - return where; - } - - } - - void addInformativeComment(Element element, String comment) { - element.appendChild(element.getOwnerDocument().createComment(comment)); - } - - void handleEvent(SchemaEvent evt) throws RuleException { - - if (evthandler != null) { - - if (!evthandler.handle(evt) || evt.getSeverity() == Event.Severity.FATAL) { - - /* die on FATAL events or if requested by the handler */ - throw new RuleException(evt.getMessage()); - - } - - } else if (evt.getSeverity() == Event.Severity.ERROR - || evt.getSeverity() == Event.Severity.FATAL) { - - /* if no event handler was provided, die on FATAL and ERROR events */ - throw new RuleException(evt.getMessage()); - - } - - } - - /** - * Creates an XMLSchemaBuilder that can be used to generate XML Schemas for - * any metadictionary covered by the resolver. The caller can optionally - * provide an EventHandler to receive notifications of events encountered in - * the process. - * - * @param resolver Collection of Metadictionary definitions, typically a - * {@link com.sandflow.smpte.regxml.dict.MetaDictionaryCollection} - * @param handler Event handler provided by the caller. May be null. - */ - public XMLSchemaBuilder(DefinitionResolver resolver, EventHandler handler) { - if (resolver == null) { - throw new InvalidParameterException("A resolver must be provided"); - } - - this.resolver = resolver; - this.evthandler = handler; - } - - /** - * Creates an XMLSchemaBuilder that can be used to generate XML Schemas for - * any metadictionary covered by the resolver. - * - * @deprecated Replaced by - * {@link #XMLSchemaBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, com.sandflow.util.events.EventHandler) } - * This constructor does not allow the caller to provide an event handler, - * and instead uses java.util.logging to output events. - * - * @param resolver Collection of Metadictionary definitions, typically a - * {@link com.sandflow.smpte.regxml.dict.MetaDictionaryCollection} - */ - public XMLSchemaBuilder(DefinitionResolver resolver) { - this(resolver, - new EventHandler() { - - @Override - public boolean handle(Event evt) { - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(evt.getMessage()); - break; - case INFO: - LOG.info(evt.getMessage()); - break; - case WARN: - LOG.warning(evt.getMessage()); - } - - return true; - } - } - ); - } - - private String createQName(URI uri, String name) { - return this.prefixes.getPrefixOrCreate(uri) + ":" + name; - } - - /** - * Generates a single XML Schema document from a single Metadictionary. A - * definition from the latter may reference a definition from another - * Metadictionary, i.e. in a different namespace, as long as this second - * Metadictionary can be resolved by the {@link DefinitionResolver} provided - * a creation-time. - * - * @param dict Metadictionary for which an XML Schema will be generated. - * - * @return XML Schema document - * - * @throws javax.xml.parsers.ParserConfigurationException - * @throws com.sandflow.smpte.klv.exceptions.KLVException - * @throws com.sandflow.smpte.regxml.XMLSchemaBuilder.RuleException - * @throws org.xml.sax.SAXException - * @throws java.io.IOException - */ - public Document fromDictionary(MetaDictionary dict) throws ParserConfigurationException, KLVException, RuleException, SAXException, IOException { - - /* reset namespace prefixes */ - this.prefixes.clear(); - - /* create the DOM from the STD_DECL template */ - DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); - - factory.setNamespaceAware(true); - - DocumentBuilder builder = factory.newDocumentBuilder(); - - Document doc = builder.newDocument(); - - doc.setXmlStandalone(true); - - Element schema = doc.createElementNS(XSD_NS, "xs:schema"); - schema.setAttribute("targetNamespace", dict.getSchemeURI().toString()); - schema.setAttributeNS(XMLNS_NS, "xmlns:reg", REGXML_NS); - schema.setAttributeNS(XMLNS_NS, "xmlns:xlink", XLINK_NS); - schema.setAttribute("elementFormDefault", "qualified"); - schema.setAttribute("attributeFormDefault", "unqualified"); - doc.appendChild(schema); - - Element importelem = doc.createElementNS(XSD_NS, "xs:import"); - importelem.setAttribute("namespace", XLINK_NS); - importelem.setAttribute("schemaLocation", XLINK_LOC); - doc.getDocumentElement().appendChild(importelem); - - importelem = doc.createElementNS(XSD_NS, "xs:import"); - importelem.setAttribute("namespace", REGXML_NS); - doc.getDocumentElement().appendChild(importelem); - - for (Definition definition : dict.getDefinitions()) { - - if (definition instanceof ClassDefinition) { - - applyRule4(doc.getDocumentElement(), (ClassDefinition) definition); - - } else if (definition.getClass() == PropertyDefinition.class) { - - applyRule5(doc.getDocumentElement(), (PropertyDefinition) definition); - - } else if (definition.getClass() == PropertyAliasDefinition.class) { - - /* need to supress alias declaration since they use the same symbol and AUID as parent */ - } else { - applyRule6(doc.getDocumentElement(), definition); - } - } - - /* hack to clean-up namespace prefixes */ - for (URI uri : prefixes.getURIs()) { - - doc.getDocumentElement().setAttributeNS( - XMLNS_NS, - "xmlns:" + prefixes.getPrefixOrCreate(uri), - uri.toString() - ); - - if (!uri.equals(dict.getSchemeURI())) { - importelem = doc.createElementNS(XSD_NS, "xs:import"); - importelem.setAttribute("namespace", uri.toString()); - doc.getDocumentElement().insertBefore(importelem, doc.getDocumentElement().getFirstChild()); - - } - } - - return doc; - } - - void applyRule4(Element root, ClassDefinition definition) throws RuleException { - - /* - - - - - Apply rule 4.1 - - []? - - - - - - */ - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("name", definition.getSymbol()); - if (!definition.isConcrete()) { - element.setAttribute("abstract", "true"); - } - root.appendChild(element); - - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - element.appendChild(complexType); - - Element all = root.getOwnerDocument().createElementNS(XSD_NS, "xs:all"); - complexType.appendChild(all); - - boolean hasUID = false; - ClassDefinition cdef = definition; - - while (cdef != null) { - - for (AUID auid : resolver.getMembersOf(cdef)) { - - PropertyDefinition pdef - = (PropertyDefinition) resolver.getDefinition(auid); - - element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("ref", createQName(pdef.getNamespace(), pdef.getSymbol())); - - if (pdef.isOptional() || pdef.getIdentification().equals(ObjectClass_AUID)) { - element.setAttribute("minOccurs", "0"); - } - - /* NOTE: require reg:uid only if the object has one property - with IsUniqueIdentifier */ - hasUID |= pdef.isUniqueIdentifier(); - - all.appendChild(element); - - } - - if (cdef.getParentClass() != null) { - cdef = (ClassDefinition) resolver.getDefinition(cdef.getParentClass()); - } else { - cdef = null; - } - - } - - Element attribute = null; - - /* @reg:uid */ - if (hasUID) { - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:uid"); - attribute.setAttribute("use", "required"); - complexType.appendChild(attribute); - } - - /* @reg:path */ - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:path"); - attribute.setAttribute("use", "optional"); - complexType.appendChild(attribute); - - } - - void applyRule5(Element root, PropertyDefinition definition) throws RuleException { - - Element elem = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - elem.setAttribute("name", definition.getSymbol()); - - if (definition.getIdentification().equals(ByteOrder_AUID)) { - - /* rule 5.1 */ - elem.setAttribute("type", "reg:ByteOrderType"); - } else { - Definition typedef = resolver.getDefinition(definition.getType()); - - if (typedef == null) { - - throw new RuleException( - String.format( - "Type UL does not resolve at Element %s ", - definition.getIdentification().toString() - ) - ); - - } - - elem.setAttribute("type", createQName(typedef.getNamespace(), typedef.getSymbol())); - } - - root.appendChild(elem); - } - - void applyRule6(Element element, Definition definition) throws RuleException { - - if (definition instanceof CharacterTypeDefinition) { - - applyRule6_1(element, (CharacterTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof EnumerationTypeDefinition) { - - applyRule6_2(element, (EnumerationTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof ExtendibleEnumerationTypeDefinition) { - - applyRule6_3(element, (ExtendibleEnumerationTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof FixedArrayTypeDefinition) { - - applyRule6_4(element, (FixedArrayTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof IndirectTypeDefinition) { - - applyRule6_5(element, (IndirectTypeDefinition) definition); - - } else if (definition instanceof IntegerTypeDefinition) { - - applyRule6_6(element, (IntegerTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof OpaqueTypeDefinition) { - - applyRule6_7(element, (OpaqueTypeDefinition) definition); - - } else if (definition instanceof RecordTypeDefinition) { - - applyRule6_8(element, (RecordTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof RenameTypeDefinition) { - - applyRule6_9(element, (RenameTypeDefinition) definition); - - /* need to check if rename type works */ - applyRule6Sub2(element, definition); - - } else if (definition instanceof SetTypeDefinition) { - - applyRule6_10(element, (SetTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof StreamTypeDefinition) { - - applyRule6_11(element, (StreamTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof StringTypeDefinition) { - - applyRule6_12(element, (StringTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof StrongReferenceTypeDefinition) { - - applyRule6_13(element, (StrongReferenceTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof VariableArrayTypeDefinition) { - - applyRule6_14(element, (VariableArrayTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof WeakReferenceTypeDefinition) { - - applyRule6_15(element, (WeakReferenceTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof FloatTypeDefinition) { - - applyRule6_alpha(element, (FloatTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else if (definition instanceof LensSerialFloatTypeDefinition) { - - applyRule6_beta(element, (LensSerialFloatTypeDefinition) definition); - - applyRule6Sub2(element, definition); - - } else { - - throw new RuleException("Illegal Definition in Rule 5."); - - } - - } - - void applyRule6Sub2(Element root, Definition definition) throws RuleException { - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("name", definition.getSymbol()); - element.setAttribute("type", createQName(definition.getNamespace(), definition.getSymbol())); - root.appendChild(element); - - } - - void applyRule6_1(Element root, CharacterTypeDefinition definition) throws RuleException { - - /* - - - - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); - complexType.appendChild(simpleContent); - - Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); - extension.setAttribute("base", "xs:string"); - simpleContent.appendChild(extension); - - Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:escaped"); - attribute.setAttribute("use", "optional"); - extension.appendChild(attribute); - - } - - void applyRule6_2(Element root, EnumerationTypeDefinition definition) throws RuleException { - - /* - - - For each enumeration element - - - - - */ - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:token"); - simpleType.appendChild(restriction); - - for (EnumerationTypeDefinition.Element e : definition.getElements()) { - Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); - enumeration.setAttribute("value", e.getName()); - restriction.appendChild(enumeration); - } - - } - - void applyRule6_3(Element root, ExtendibleEnumerationTypeDefinition definition) throws RuleException { - - /* - NOTE: ST 2001-1 does not allow arbitrary AUIDs. This should be corrected. - */ - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "reg:AUID"); - - root.appendChild(simpleType).appendChild(restriction); - - } - - void applyRule6_4(Element root, FixedArrayTypeDefinition definition) throws RuleException { - - /* - Apply one of the following rules: - 1. rule 6.4.1 if the elements of the fixed array have a Strong Object Reference base type category - 2. otherwise rule 6.4.2 - */ - Definition elemdef = resolver.getDefinition(definition.getElementType()); - - if (definition.getIdentification().equals(UUID_AUID)) { - /* - - - - - - - - */ - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "UUID"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:anyURI"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "urn:uuid:[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}"); - restriction.appendChild(pattern); - - } else if (elemdef instanceof StrongReferenceTypeDefinition) { - - /* Rule 6.4.1 */ - - /* - - - if the referenced class is concrete: - - for all concrete sub-classes: - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); - choice.setAttribute("minOccurs", Integer.toString(definition.getElementCount())); - choice.setAttribute("maxOccurs", Integer.toString(definition.getElementCount())); - complexType.appendChild(choice); - - ClassDefinition parent - = (ClassDefinition) resolver.getDefinition( - ((StrongReferenceTypeDefinition) elemdef).getReferenceType() - ); - - if (parent == null) { - - SchemaEvent evt = new SchemaEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Cannot resolve referenced type %s", - ((StrongReferenceTypeDefinition) elemdef).getReferenceType().toString() - ), - String.format( - "Definition %s at ComplexType %s", - elemdef.getSymbol(), - complexType.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(choice, evt.getReason()); - - } else { - - applyRule6_4_1a(choice, parent); - - } - - } else { - - /* Rule 6.4.2 */ - /* - - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - complexType.appendChild(sequence); - - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("minOccurs", Integer.toString(definition.getElementCount())); - element.setAttribute("maxOccurs", Integer.toString(definition.getElementCount())); - element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); - sequence.appendChild(element); - - } - - } - - void applyRule6_4_1a(Element root, ClassDefinition cdef) throws RuleException { - - if (cdef.isConcrete()) { - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("ref", createQName(cdef.getNamespace(), cdef.getSymbol())); - root.appendChild(element); - } - - for (AUID auid : resolver.getSubclassesOf(cdef)) { - ClassDefinition child - = (ClassDefinition) resolver.getDefinition(auid); - - if (child == null) { - - SchemaEvent evt = new SchemaEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Cannot resolve subclass %s", - auid.toString() - ), - String.format( - "Class %s", - cdef.getIdentification().toString() - ) - ); - - handleEvent(evt); - - addInformativeComment(root, evt.getReason()); - - } else { - - applyRule6_4_1a(root, child); - } - } - - } - - void applyRule6_5(Element root, IndirectTypeDefinition definition) throws RuleException { - - /* - - - - - - - - - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element complexContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexContent"); - complexType.appendChild(complexContent); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:anyType"); - complexContent.appendChild(restriction); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - restriction.appendChild(sequence); - - Element any = root.getOwnerDocument().createElementNS(XSD_NS, "xs:any"); - any.setAttribute("minOccurs", "0"); - any.setAttribute("maxOccurs", "unbounded"); - sequence.appendChild(any); - - Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:actualType"); - attribute.setAttribute("use", "required"); - restriction.appendChild(attribute); - - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:escaped"); - attribute.setAttribute("use", "optional"); - restriction.appendChild(attribute); - - } - - void applyRule6_6(Element root, IntegerTypeDefinition definition) throws RuleException { - - /* - - - - - - - - - - - - - - */ - String typename = "ERROR"; - String intpattern = "ERROR"; - - switch (definition.getSize()) { - case ONE: - typename = definition.isSigned() ? "xs:byte" : "xs:unsignedByte"; - intpattern = "0x[0-9a-fA-F]{1,2}"; - break; - case TWO: - typename = definition.isSigned() ? "xs:short" : "xs:unsignedShort"; - intpattern = "0x[0-9a-fA-F]{1,4}"; - break; - case FOUR: - typename = definition.isSigned() ? "xs:int" : "xs:unsignedInt"; - intpattern = "0x[0-9a-fA-F]{1,8}"; - break; - case EIGHT: - typename = definition.isSigned() ? "xs:long" : "xs:unsignedLong"; - intpattern = "0x[0-9a-fA-F]{1,16}"; - break; - } - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); - simpleType.appendChild(union); - - Element simpleType2 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType2); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", typename); - simpleType2.appendChild(restriction); - - Element simpleType3 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType3); - - Element restriction2 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction2.setAttribute("base", "xs:string"); - simpleType3.appendChild(restriction2); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", intpattern); - restriction2.appendChild(pattern); - - } - - void applyRule6_7(Element root, OpaqueTypeDefinition definition) throws RuleException { - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); - complexType.appendChild(simpleContent); - - Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); - extension.setAttribute("base", "reg:HexByteArrayType"); - simpleContent.appendChild(extension); - - Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:actualType"); - attribute.setAttribute("use", "required"); - extension.appendChild(attribute); - - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:byteOrder"); - attribute.setAttribute("use", "required"); - extension.appendChild(attribute); - } - - void applyRule6_8(Element root, RecordTypeDefinition definition) throws RuleException { - - /* - Apply one of the following: - 1. Apply rule 6.8.1 for types with well known string representations, namely AUID, DateStruct, PackageID, Rational, TimeStruct, TimeStamp and VersionType - 2. Otherwise: - - - for each record member - - - - - */ - if (definition.getIdentification().equals(AUID_AUID)) { - /* - - - - - - - - */ - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "AUID"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:anyURI"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "urn:smpte:ul:([0-9a-fA-F]{8}\\.){3}[0-9a-fA-F]{8}"); - restriction.appendChild(pattern); - - pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "urn:uuid:[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}"); - restriction.appendChild(pattern); - - } else if (definition.getIdentification().equals(DateStruct_AUID)) { - - /* - - - - - - - - - - - - - - - - - */ - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "DateStruct"); - root.appendChild(simpleType); - - Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); - simpleType.appendChild(union); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:date"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); - restriction.appendChild(pattern); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); - enumeration.setAttribute("value", "0000-00-00Z"); - restriction.appendChild(enumeration); - - } else if (definition.getIdentification().equals(PackageID_AUID)) { - /* - - - - - - - */ - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "PackageIDType"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "urn:smpte:umid:([0-9a-fA-F]{8}\\.){7}[0-9a-fA-F]{8}"); - restriction.appendChild(pattern); - - } else if (definition.getIdentification().equals(Rational_AUID)) { - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "Rational"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "\\-?\\d{1,10}(/\\-?\\d{1,10})?"); - restriction.appendChild(pattern); - - } else if (definition.getIdentification().equals(TimeStruct_AUID)) { - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "TimeStruct"); - root.appendChild(simpleType); - - Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); - simpleType.appendChild(union); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:time"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); - restriction.appendChild(pattern); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); - enumeration.setAttribute("value", "00:00:00Z"); - restriction.appendChild(enumeration); - - } else if (definition.getIdentification().equals(TimeStamp_AUID)) { - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "TimeStamp"); - root.appendChild(simpleType); - - Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); - simpleType.appendChild(union); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:dateTime"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); - restriction.appendChild(pattern); - - simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - union.appendChild(simpleType); - - restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); - enumeration.setAttribute("value", "0000-00-00T00:00:00Z"); - restriction.appendChild(enumeration); - - } else if (definition.getIdentification().equals(VersionType_AUID)) { - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "VersionType"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:string"); - simpleType.appendChild(restriction); - - Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); - pattern.setAttribute("value", "\\-?\\d{1,3}\\.\\-?\\d{1,3}"); - restriction.appendChild(pattern); - - } else { - - /* - - - for each record member - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - complexType.appendChild(sequence); - - for (RecordTypeDefinition.Member member : definition.getMembers()) { - - Definition typedef = resolver.getDefinition(member.getType()); - - if (typedef == null) { - throw new RuleException(String.format("Bad type %s at member %s.", member.getType().toString(), member.getName())); - } - - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("name", member.getName()); - element.setAttribute("type", createQName(typedef.getNamespace(), typedef.getSymbol())); - - sequence.appendChild(element); - - } - - } - - } - - void applyRule6_9(Element root, RenameTypeDefinition definition) throws RuleException { - - Definition origtype = resolver.getDefinition(definition.getRenamedType()); - - Element dummy = root.getOwnerDocument().createElement("dummy"); - - applyRule6(dummy, origtype); - - if ("simpleType".equals(dummy.getFirstChild().getLocalName())) { - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", createQName(origtype.getNamespace(), origtype.getSymbol())); - simpleType.appendChild(restriction); - - } else { - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element complexContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexContent"); - complexType.appendChild(complexContent); - - Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); - extension.setAttribute("base", createQName(origtype.getNamespace(), origtype.getSymbol())); - complexContent.appendChild(extension); - } - } - - void applyRule6_10(Element root, SetTypeDefinition definition) throws RuleException { - Definition elemdef = resolver.getDefinition(definition.getElementType()); - - if (elemdef instanceof StrongReferenceTypeDefinition) { - - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); - choice.setAttribute("minOccurs", "0"); - choice.setAttribute("maxOccurs", "unbounded"); - complexType.appendChild(choice); - - ClassDefinition parent - = (ClassDefinition) resolver.getDefinition( - ((StrongReferenceTypeDefinition) elemdef).getReferenceType() - ); - - if (parent == null) { - - SchemaEvent evt = new SchemaEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Cannot resolve referenced type %s", - ((StrongReferenceTypeDefinition) elemdef).getReferenceType().toString() - ), - String.format( - "Definition %s at ComplexType %s", - elemdef.getSymbol(), - complexType.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(choice, evt.getReason()); - - } else { - - applyRule6_4_1a(choice, parent); - - } - - } else { - - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - complexType.appendChild(sequence); - - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("minOccurs", "0"); - element.setAttribute("maxOccurs", "unbounded"); - element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); - sequence.appendChild(element); - - } - } - - void applyRule6_11(Element root, StreamTypeDefinition definition) throws RuleException { - - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:stream"); - attribute.setAttribute("use", "optional"); - complexType.appendChild(attribute); - - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "xlink:href"); - attribute.setAttribute("use", "optional"); - complexType.appendChild(attribute); - - attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:byteOrder"); - attribute.setAttribute("use", "optional"); - complexType.appendChild(attribute); - } - - void applyRule6_12(Element root, StringTypeDefinition definition) throws RuleException { - - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); - complexType.appendChild(simpleContent); - - Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); - extension.setAttribute("base", "xs:string"); - simpleContent.appendChild(extension); - - Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); - attribute.setAttribute("ref", "reg:escaped"); - attribute.setAttribute("use", "optional"); - extension.appendChild(attribute); - - } - - void applyRule6_13(Element root, StrongReferenceTypeDefinition definition) throws RuleException { - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); - complexType.appendChild(choice); - - ClassDefinition parent - = (ClassDefinition) resolver.getDefinition( - definition.getReferenceType() - ); - - if (parent == null) { - - SchemaEvent evt = new SchemaEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Cannot resolve referenced type %s", - definition.getReferenceType().toString() - ), - String.format( - "Definition %s at ComplexType %s", - definition.getSymbol(), - complexType.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(choice, evt.getReason()); - - } else { - - applyRule6_4_1a(choice, parent); - - } - - } - - void applyRule6_14(Element root, VariableArrayTypeDefinition definition) throws RuleException { - - /* - Apply one of the following rules: - 1. rule 6.14.1 if the elements of the array have a Strong Object Reference base type category - 2. rule 6.14.2 if the element type is Character or the type name contains StringArray - 3. rule 6.14.3 if the type name is DataValue - 4. otherwise rule 6.14.4 - - */ - Definition elemdef = resolver.getDefinition(definition.getElementType()); - - if (elemdef instanceof StrongReferenceTypeDefinition) { - - /* Rule 6.14.1 */ - - /* - - - if the referenced class is concrete: - - for all concrete sub-classes: - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); - choice.setAttribute("minOccurs", "0"); - choice.setAttribute("maxOccurs", "unbounded"); - complexType.appendChild(choice); - - ClassDefinition parent - = (ClassDefinition) resolver.getDefinition( - ((StrongReferenceTypeDefinition) elemdef).getReferenceType() - ); - - if (parent == null) { - - SchemaEvent evt = new SchemaEvent( - EventCodes.UNKNOWN_TYPE, - String.format( - "Cannot resolve referenced type %s", - ((StrongReferenceTypeDefinition) elemdef).getReferenceType().toString() - ), - String.format( - "Definition %s at ComplextType %s", - elemdef.getSymbol(), - complexType.getLocalName() - ) - ); - - handleEvent(evt); - - addInformativeComment(root, evt.getReason()); - - } else { - - applyRule6_4_1a(choice, parent); - - } - } else if (elemdef instanceof CharacterTypeDefinition || elemdef.getSymbol().contains("StringArray")) { - - /* Rule 6.14.2 - - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - complexType.appendChild(sequence); - - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("minOccurs", "0"); - element.setAttribute("maxOccurs", "unbounded"); - element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); - sequence.appendChild(element); - - } else if (definition.getSymbol().equals("DataValue")) { - - /* Rule 6.14.3 - - - - - - */ - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", "DataValue"); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "reg:HexByteArrayType"); - simpleType.appendChild(restriction); - - } else { - - /* Rule 6.14.4 */ - /* - - - - - - - */ - Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); - complexType.setAttribute("name", definition.getSymbol()); - root.appendChild(complexType); - - Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); - complexType.appendChild(sequence); - - Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); - element.setAttribute("minOccurs", "0"); - element.setAttribute("maxOccurs", "unbounded"); - element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); - sequence.appendChild(element); - - } - - } - - void applyRule6_15(Element root, WeakReferenceTypeDefinition definition) throws RuleException { - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "reg:TargetType"); - simpleType.appendChild(restriction); - } - - void applyRule6_alpha(Element root, FloatTypeDefinition definition) throws RuleException { - - /* - - - - - */ - String typename = "ERROR"; - - switch (definition.getSize()) { - - /* not sure this is right */ - case HALF: - case SINGLE: - typename = "xs:float"; - break; - case DOUBLE: - typename = "xs:double"; - break; - } - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", typename); - simpleType.appendChild(restriction); - - } - - void applyRule6_beta(Element root, LensSerialFloatTypeDefinition definition) throws RuleException { - /* - - - - - */ - - Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); - simpleType.setAttribute("name", definition.getSymbol()); - root.appendChild(simpleType); - - Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); - restriction.setAttribute("base", "xs:decimal"); - simpleType.appendChild(restriction); - } - - public static class RuleException extends Exception { - - public RuleException(Throwable t) { - super(t); - } - - public RuleException(String msg) { - super(msg); - } - - } - - private static class NamespacePrefixMapper { - - private final HashMap uris = new HashMap<>(); - private final HashMap prefixes = new HashMap<>(); - - public String getPrefixOrCreate(URI ns) { - String prefix = this.uris.get(ns); - /* if prefix does not exist, create one */ - if (prefix == null) { - prefix = "r" + this.uris.size(); - this.uris.put(ns, prefix); - this.prefixes.put(prefix, ns); - } - return prefix; - } - - public String putPrefix(URI ns, String suggested) { - String np = this.uris.get(ns); - URI uri = this.prefixes.get(suggested); - /* if the prefix already exists, create a new one */ - if (uri != null) { - np = "r" + this.uris.size(); - } else { - np = suggested; - } - this.prefixes.put(np, ns); - this.uris.put(ns, np); - return np; - } - - public Set getURIs() { - return uris.keySet(); - } - - public void clear() { - this.uris.clear(); - this.prefixes.clear(); - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.regxml.dict.DefinitionResolver; +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import com.sandflow.util.events.BasicEvent; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.io.IOException; +import java.net.URI; +import java.security.InvalidParameterException; +import java.util.HashMap; +import java.util.Set; +import java.util.logging.Logger; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import org.w3c.dom.Document; +import org.w3c.dom.Element; +import org.xml.sax.SAXException; + +/** + * Generates XML Schemas from RegXML dictionaries according to the Model Mapping + * Rules specified in SMPTE ST 2001-1. These XML Schemas can be used to validate + * RegXML fragments, including those generated using + * {@link com.sandflow.smpte.regxml.FragmentBuilder} + */ +public class XMLSchemaBuilder { + + private final static Logger LOG = Logger.getLogger(XMLSchemaBuilder.class.getName()); + + public static final String REGXML_NS = "http://sandflow.com/ns/SMPTEST2001-1/baseline"; + private final static String XMLNS_NS = "http://www.w3.org/2000/xmlns/"; + private static final String XSD_NS = "http://www.w3.org/2001/XMLSchema"; + private static final String XLINK_NS = "http://www.w3.org/1999/xlink"; + private static final String XLINK_LOC = "http://www.w3.org/1999/xlink.xsd"; + + private static final AUID AUID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.01.00.00.00.00.00")); + private static final AUID UUID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.03.00.00.00.00.00")); + private static final AUID DateStruct_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.05.00.00.00.00.00")); + private static final AUID PackageID_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.01.03.02.00.00.00.00.00")); + private static final AUID Rational_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.01.00.00.00.00.00")); + private static final AUID TimeStruct_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.06.00.00.00.00.00")); + private static final AUID TimeStamp_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.07.00.00.00.00.00")); + private static final AUID VersionType_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.04.01.01.03.01.03.00.00.00.00.00")); + private static final AUID ObjectClass_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.01.01.02.06.01.01.04.01.01.00.00")); + private static final AUID ByteOrder_AUID = new AUID(UL.fromDotValue("06.0E.2B.34.01.01.01.01.03.01.02.01.02.00.00.00")); + private static final AUID InstanceID_AUID = new AUID(UL.fromURN("urn:smpte:ul:060e2b34.01010101.01011502.00000000")); + + private DefinitionResolver resolver; + private final NamespacePrefixMapper prefixes = new NamespacePrefixMapper(); + private final EventHandler evthandler; + + /** + * Defines the events returned by this class + */ + public static enum EventCodes { + + /** + * Raised when a type definition is not found. + */ + UNKNOWN_TYPE(Event.Severity.ERROR); + + public final Event.Severity severity; + + private EventCodes(Event.Severity severity) { + this.severity = severity; + } + + } + + /** + * All events raised by this class are instances of this class. + */ + public static class SchemaEvent extends BasicEvent { + + final String reason; + final String where; + + public SchemaEvent(EventCodes kind, String reason) { + this(kind, reason, null); + } + + public SchemaEvent(EventCodes kind, String reason, String where) { + super(kind.severity, kind, reason + (where != null ? " at " + where : "")); + + this.reason = reason; + this.where = where; + } + + public String getReason() { + return reason; + } + + public String getWhere() { + return where; + } + + } + + void addInformativeComment(Element element, String comment) { + element.appendChild(element.getOwnerDocument().createComment(comment)); + } + + void handleEvent(SchemaEvent evt) throws RuleException { + + if (evthandler != null) { + + if (!evthandler.handle(evt) || evt.getSeverity() == Event.Severity.FATAL) { + + /* die on FATAL events or if requested by the handler */ + throw new RuleException(evt.getMessage()); + + } + + } else if (evt.getSeverity() == Event.Severity.ERROR + || evt.getSeverity() == Event.Severity.FATAL) { + + /* if no event handler was provided, die on FATAL and ERROR events */ + throw new RuleException(evt.getMessage()); + + } + + } + + /** + * Creates an XMLSchemaBuilder that can be used to generate XML Schemas for + * any metadictionary covered by the resolver. The caller can optionally + * provide an EventHandler to receive notifications of events encountered in + * the process. + * + * @param resolver Collection of Metadictionary definitions, typically a + * {@link com.sandflow.smpte.regxml.dict.MetaDictionaryCollection} + * @param handler Event handler provided by the caller. May be null. + */ + public XMLSchemaBuilder(DefinitionResolver resolver, EventHandler handler) { + if (resolver == null) { + throw new InvalidParameterException("A resolver must be provided"); + } + + this.resolver = resolver; + this.evthandler = handler; + } + + /** + * Creates an XMLSchemaBuilder that can be used to generate XML Schemas for + * any metadictionary covered by the resolver. + * + * @deprecated Replaced by + * {@link #XMLSchemaBuilder(com.sandflow.smpte.regxml.dict.DefinitionResolver, com.sandflow.util.events.EventHandler) } + * This constructor does not allow the caller to provide an event handler, + * and instead uses java.util.logging to output events. + * + * @param resolver Collection of Metadictionary definitions, typically a + * {@link com.sandflow.smpte.regxml.dict.MetaDictionaryCollection} + */ + public XMLSchemaBuilder(DefinitionResolver resolver) { + this(resolver, + new EventHandler() { + + @Override + public boolean handle(Event evt) { + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(evt.getMessage()); + break; + case INFO: + LOG.info(evt.getMessage()); + break; + case WARN: + LOG.warning(evt.getMessage()); + } + + return true; + } + } + ); + } + + private String createQName(URI uri, String name) { + return this.prefixes.getPrefixOrCreate(uri) + ":" + name; + } + + /** + * Generates a single XML Schema document from a single Metadictionary. A + * definition from the latter may reference a definition from another + * Metadictionary, i.e. in a different namespace, as long as this second + * Metadictionary can be resolved by the {@link DefinitionResolver} provided + * a creation-time. + * + * @param dict Metadictionary for which an XML Schema will be generated. + * + * @return XML Schema document + * + * @throws javax.xml.parsers.ParserConfigurationException + * @throws com.sandflow.smpte.klv.exceptions.KLVException + * @throws com.sandflow.smpte.regxml.XMLSchemaBuilder.RuleException + * @throws org.xml.sax.SAXException + * @throws java.io.IOException + */ + public Document fromDictionary(MetaDictionary dict) throws ParserConfigurationException, KLVException, RuleException, SAXException, IOException { + + /* reset namespace prefixes */ + this.prefixes.clear(); + + /* create the DOM from the STD_DECL template */ + DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); + + factory.setNamespaceAware(true); + + DocumentBuilder builder = factory.newDocumentBuilder(); + + Document doc = builder.newDocument(); + + doc.setXmlStandalone(true); + + Element schema = doc.createElementNS(XSD_NS, "xs:schema"); + schema.setAttribute("targetNamespace", dict.getSchemeURI().toString()); + schema.setAttributeNS(XMLNS_NS, "xmlns:reg", REGXML_NS); + schema.setAttributeNS(XMLNS_NS, "xmlns:xlink", XLINK_NS); + schema.setAttribute("elementFormDefault", "qualified"); + schema.setAttribute("attributeFormDefault", "unqualified"); + doc.appendChild(schema); + + Element importelem = doc.createElementNS(XSD_NS, "xs:import"); + importelem.setAttribute("namespace", XLINK_NS); + importelem.setAttribute("schemaLocation", XLINK_LOC); + doc.getDocumentElement().appendChild(importelem); + + importelem = doc.createElementNS(XSD_NS, "xs:import"); + importelem.setAttribute("namespace", REGXML_NS); + doc.getDocumentElement().appendChild(importelem); + + for (Definition definition : dict.getDefinitions()) { + + if (definition instanceof ClassDefinition) { + + applyRule4(doc.getDocumentElement(), (ClassDefinition) definition); + + } else if (definition.getClass() == PropertyDefinition.class) { + + applyRule5(doc.getDocumentElement(), (PropertyDefinition) definition); + + } else if (definition.getClass() == PropertyAliasDefinition.class) { + + /* need to supress alias declaration since they use the same symbol and AUID as parent */ + } else { + applyRule6(doc.getDocumentElement(), definition); + } + } + + /* hack to clean-up namespace prefixes */ + for (URI uri : prefixes.getURIs()) { + + doc.getDocumentElement().setAttributeNS( + XMLNS_NS, + "xmlns:" + prefixes.getPrefixOrCreate(uri), + uri.toString() + ); + + if (!uri.equals(dict.getSchemeURI())) { + importelem = doc.createElementNS(XSD_NS, "xs:import"); + importelem.setAttribute("namespace", uri.toString()); + doc.getDocumentElement().insertBefore(importelem, doc.getDocumentElement().getFirstChild()); + + } + } + + return doc; + } + + void applyRule4(Element root, ClassDefinition definition) throws RuleException { + + /* + + + + + Apply rule 4.1 + + []? + + + + + + */ + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("name", definition.getSymbol()); + if (!definition.isConcrete()) { + element.setAttribute("abstract", "true"); + } + root.appendChild(element); + + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + element.appendChild(complexType); + + Element all = root.getOwnerDocument().createElementNS(XSD_NS, "xs:all"); + complexType.appendChild(all); + + boolean hasUID = false; + ClassDefinition cdef = definition; + + while (cdef != null) { + + for (AUID auid : resolver.getMembersOf(cdef)) { + + PropertyDefinition pdef + = (PropertyDefinition) resolver.getDefinition(auid); + + element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("ref", createQName(pdef.getNamespace(), pdef.getSymbol())); + + if (pdef.isOptional() || pdef.getIdentification().equals(ObjectClass_AUID)) { + element.setAttribute("minOccurs", "0"); + } + + /* NOTE: require reg:uid only if the object has one property + with IsUniqueIdentifier */ + hasUID |= pdef.isUniqueIdentifier(); + + all.appendChild(element); + + } + + if (cdef.getParentClass() != null) { + cdef = (ClassDefinition) resolver.getDefinition(cdef.getParentClass()); + } else { + cdef = null; + } + + } + + Element attribute = null; + + /* @reg:uid */ + if (hasUID) { + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:uid"); + attribute.setAttribute("use", "required"); + complexType.appendChild(attribute); + } + + /* @reg:path */ + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:path"); + attribute.setAttribute("use", "optional"); + complexType.appendChild(attribute); + + } + + void applyRule5(Element root, PropertyDefinition definition) throws RuleException { + + Element elem = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + elem.setAttribute("name", definition.getSymbol()); + + if (definition.getIdentification().equals(ByteOrder_AUID)) { + + /* rule 5.1 */ + elem.setAttribute("type", "reg:ByteOrderType"); + } else { + Definition typedef = resolver.getDefinition(definition.getType()); + + if (typedef == null) { + + throw new RuleException( + String.format( + "Type UL does not resolve at Element %s ", + definition.getIdentification().toString() + ) + ); + + } + + elem.setAttribute("type", createQName(typedef.getNamespace(), typedef.getSymbol())); + } + + root.appendChild(elem); + } + + void applyRule6(Element element, Definition definition) throws RuleException { + + if (definition instanceof CharacterTypeDefinition) { + + applyRule6_1(element, (CharacterTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof EnumerationTypeDefinition) { + + applyRule6_2(element, (EnumerationTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof ExtendibleEnumerationTypeDefinition) { + + applyRule6_3(element, (ExtendibleEnumerationTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof FixedArrayTypeDefinition) { + + applyRule6_4(element, (FixedArrayTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof IndirectTypeDefinition) { + + applyRule6_5(element, (IndirectTypeDefinition) definition); + + } else if (definition instanceof IntegerTypeDefinition) { + + applyRule6_6(element, (IntegerTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof OpaqueTypeDefinition) { + + applyRule6_7(element, (OpaqueTypeDefinition) definition); + + } else if (definition instanceof RecordTypeDefinition) { + + applyRule6_8(element, (RecordTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof RenameTypeDefinition) { + + applyRule6_9(element, (RenameTypeDefinition) definition); + + /* need to check if rename type works */ + applyRule6Sub2(element, definition); + + } else if (definition instanceof SetTypeDefinition) { + + applyRule6_10(element, (SetTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof StreamTypeDefinition) { + + applyRule6_11(element, (StreamTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof StringTypeDefinition) { + + applyRule6_12(element, (StringTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof StrongReferenceTypeDefinition) { + + applyRule6_13(element, (StrongReferenceTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof VariableArrayTypeDefinition) { + + applyRule6_14(element, (VariableArrayTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof WeakReferenceTypeDefinition) { + + applyRule6_15(element, (WeakReferenceTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof FloatTypeDefinition) { + + applyRule6_alpha(element, (FloatTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else if (definition instanceof LensSerialFloatTypeDefinition) { + + applyRule6_beta(element, (LensSerialFloatTypeDefinition) definition); + + applyRule6Sub2(element, definition); + + } else { + + throw new RuleException("Illegal Definition in Rule 5."); + + } + + } + + void applyRule6Sub2(Element root, Definition definition) throws RuleException { + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("name", definition.getSymbol()); + element.setAttribute("type", createQName(definition.getNamespace(), definition.getSymbol())); + root.appendChild(element); + + } + + void applyRule6_1(Element root, CharacterTypeDefinition definition) throws RuleException { + + /* + + + + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); + complexType.appendChild(simpleContent); + + Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); + extension.setAttribute("base", "xs:string"); + simpleContent.appendChild(extension); + + Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:escaped"); + attribute.setAttribute("use", "optional"); + extension.appendChild(attribute); + + } + + void applyRule6_2(Element root, EnumerationTypeDefinition definition) throws RuleException { + + /* + + + For each enumeration element + + + + + */ + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:token"); + simpleType.appendChild(restriction); + + for (EnumerationTypeDefinition.Element e : definition.getElements()) { + Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); + enumeration.setAttribute("value", e.getName()); + restriction.appendChild(enumeration); + } + + } + + void applyRule6_3(Element root, ExtendibleEnumerationTypeDefinition definition) throws RuleException { + + /* + NOTE: ST 2001-1 does not allow arbitrary AUIDs. This should be corrected. + */ + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "reg:AUID"); + + root.appendChild(simpleType).appendChild(restriction); + + } + + void applyRule6_4(Element root, FixedArrayTypeDefinition definition) throws RuleException { + + /* + Apply one of the following rules: + 1. rule 6.4.1 if the elements of the fixed array have a Strong Object Reference base type category + 2. otherwise rule 6.4.2 + */ + Definition elemdef = resolver.getDefinition(definition.getElementType()); + + if (definition.getIdentification().equals(UUID_AUID)) { + /* + + + + + + + + */ + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "UUID"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:anyURI"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "urn:uuid:[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}"); + restriction.appendChild(pattern); + + } else if (elemdef instanceof StrongReferenceTypeDefinition) { + + /* Rule 6.4.1 */ + + /* + + + if the referenced class is concrete: + + for all concrete sub-classes: + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); + choice.setAttribute("minOccurs", Integer.toString(definition.getElementCount())); + choice.setAttribute("maxOccurs", Integer.toString(definition.getElementCount())); + complexType.appendChild(choice); + + ClassDefinition parent + = (ClassDefinition) resolver.getDefinition( + ((StrongReferenceTypeDefinition) elemdef).getReferencedType() + ); + + if (parent == null) { + + SchemaEvent evt = new SchemaEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Cannot resolve referenced type %s", + ((StrongReferenceTypeDefinition) elemdef).getReferencedType().toString() + ), + String.format( + "Definition %s at ComplexType %s", + elemdef.getSymbol(), + complexType.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(choice, evt.getReason()); + + } else { + + applyRule6_4_1a(choice, parent); + + } + + } else { + + /* Rule 6.4.2 */ + /* + + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + complexType.appendChild(sequence); + + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("minOccurs", Integer.toString(definition.getElementCount())); + element.setAttribute("maxOccurs", Integer.toString(definition.getElementCount())); + element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); + sequence.appendChild(element); + + } + + } + + void applyRule6_4_1a(Element root, ClassDefinition cdef) throws RuleException { + + if (cdef.isConcrete()) { + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("ref", createQName(cdef.getNamespace(), cdef.getSymbol())); + root.appendChild(element); + } + + for (AUID auid : resolver.getSubclassesOf(cdef)) { + ClassDefinition child + = (ClassDefinition) resolver.getDefinition(auid); + + if (child == null) { + + SchemaEvent evt = new SchemaEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Cannot resolve subclass %s", + auid.toString() + ), + String.format( + "Class %s", + cdef.getIdentification().toString() + ) + ); + + handleEvent(evt); + + addInformativeComment(root, evt.getReason()); + + } else { + + applyRule6_4_1a(root, child); + } + } + + } + + void applyRule6_5(Element root, IndirectTypeDefinition definition) throws RuleException { + + /* + + + + + + + + + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element complexContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexContent"); + complexType.appendChild(complexContent); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:anyType"); + complexContent.appendChild(restriction); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + restriction.appendChild(sequence); + + Element any = root.getOwnerDocument().createElementNS(XSD_NS, "xs:any"); + any.setAttribute("minOccurs", "0"); + any.setAttribute("maxOccurs", "unbounded"); + sequence.appendChild(any); + + Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:actualType"); + attribute.setAttribute("use", "required"); + restriction.appendChild(attribute); + + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:escaped"); + attribute.setAttribute("use", "optional"); + restriction.appendChild(attribute); + + } + + void applyRule6_6(Element root, IntegerTypeDefinition definition) throws RuleException { + + /* + + + + + + + + + + + + + + */ + String typename = "ERROR"; + String intpattern = "ERROR"; + + switch (definition.getSize()) { + case ONE: + typename = definition.isSigned() ? "xs:byte" : "xs:unsignedByte"; + intpattern = "0x[0-9a-fA-F]{1,2}"; + break; + case TWO: + typename = definition.isSigned() ? "xs:short" : "xs:unsignedShort"; + intpattern = "0x[0-9a-fA-F]{1,4}"; + break; + case FOUR: + typename = definition.isSigned() ? "xs:int" : "xs:unsignedInt"; + intpattern = "0x[0-9a-fA-F]{1,8}"; + break; + case EIGHT: + typename = definition.isSigned() ? "xs:long" : "xs:unsignedLong"; + intpattern = "0x[0-9a-fA-F]{1,16}"; + break; + } + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); + simpleType.appendChild(union); + + Element simpleType2 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType2); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", typename); + simpleType2.appendChild(restriction); + + Element simpleType3 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType3); + + Element restriction2 = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction2.setAttribute("base", "xs:string"); + simpleType3.appendChild(restriction2); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", intpattern); + restriction2.appendChild(pattern); + + } + + void applyRule6_7(Element root, OpaqueTypeDefinition definition) throws RuleException { + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); + complexType.appendChild(simpleContent); + + Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); + extension.setAttribute("base", "reg:HexByteArrayType"); + simpleContent.appendChild(extension); + + Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:actualType"); + attribute.setAttribute("use", "required"); + extension.appendChild(attribute); + + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:byteOrder"); + attribute.setAttribute("use", "required"); + extension.appendChild(attribute); + } + + void applyRule6_8(Element root, RecordTypeDefinition definition) throws RuleException { + + /* + Apply one of the following: + 1. Apply rule 6.8.1 for types with well known string representations, namely AUID, DateStruct, PackageID, Rational, TimeStruct, TimeStamp and VersionType + 2. Otherwise: + + + for each record member + + + + + */ + if (definition.getIdentification().equals(AUID_AUID)) { + /* + + + + + + + + */ + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "AUID"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:anyURI"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "urn:smpte:ul:([0-9a-fA-F]{8}\\.){3}[0-9a-fA-F]{8}"); + restriction.appendChild(pattern); + + pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "urn:uuid:[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}"); + restriction.appendChild(pattern); + + } else if (definition.getIdentification().equals(DateStruct_AUID)) { + + /* + + + + + + + + + + + + + + + + + */ + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "DateStruct"); + root.appendChild(simpleType); + + Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); + simpleType.appendChild(union); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:date"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); + restriction.appendChild(pattern); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); + enumeration.setAttribute("value", "0000-00-00Z"); + restriction.appendChild(enumeration); + + } else if (definition.getIdentification().equals(PackageID_AUID)) { + /* + + + + + + + */ + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "PackageIDType"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "urn:smpte:umid:([0-9a-fA-F]{8}\\.){7}[0-9a-fA-F]{8}"); + restriction.appendChild(pattern); + + } else if (definition.getIdentification().equals(Rational_AUID)) { + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "Rational"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "\\-?\\d{1,10}(/\\-?\\d{1,10})?"); + restriction.appendChild(pattern); + + } else if (definition.getIdentification().equals(TimeStruct_AUID)) { + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "TimeStruct"); + root.appendChild(simpleType); + + Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); + simpleType.appendChild(union); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:time"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); + restriction.appendChild(pattern); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); + enumeration.setAttribute("value", "00:00:00Z"); + restriction.appendChild(enumeration); + + } else if (definition.getIdentification().equals(TimeStamp_AUID)) { + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "TimeStamp"); + root.appendChild(simpleType); + + Element union = root.getOwnerDocument().createElementNS(XSD_NS, "xs:union"); + simpleType.appendChild(union); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:dateTime"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", ".+(((\\+|\\-)\\d\\d:\\d\\d)|Z)"); + restriction.appendChild(pattern); + + simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + union.appendChild(simpleType); + + restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element enumeration = root.getOwnerDocument().createElementNS(XSD_NS, "xs:enumeration"); + enumeration.setAttribute("value", "0000-00-00T00:00:00Z"); + restriction.appendChild(enumeration); + + } else if (definition.getIdentification().equals(VersionType_AUID)) { + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "VersionType"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:string"); + simpleType.appendChild(restriction); + + Element pattern = root.getOwnerDocument().createElementNS(XSD_NS, "xs:pattern"); + pattern.setAttribute("value", "\\-?\\d{1,3}\\.\\-?\\d{1,3}"); + restriction.appendChild(pattern); + + } else { + + /* + + + for each record member + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + complexType.appendChild(sequence); + + for (RecordTypeDefinition.Member member : definition.getMembers()) { + + Definition typedef = resolver.getDefinition(member.getType()); + + if (typedef == null) { + throw new RuleException(String.format("Bad type %s at member %s.", member.getType().toString(), member.getName())); + } + + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("name", member.getName()); + element.setAttribute("type", createQName(typedef.getNamespace(), typedef.getSymbol())); + + sequence.appendChild(element); + + } + + } + + } + + void applyRule6_9(Element root, RenameTypeDefinition definition) throws RuleException { + + Definition origtype = resolver.getDefinition(definition.getRenamedType()); + + Element dummy = root.getOwnerDocument().createElement("dummy"); + + applyRule6(dummy, origtype); + + if ("simpleType".equals(dummy.getFirstChild().getLocalName())) { + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", createQName(origtype.getNamespace(), origtype.getSymbol())); + simpleType.appendChild(restriction); + + } else { + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element complexContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexContent"); + complexType.appendChild(complexContent); + + Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); + extension.setAttribute("base", createQName(origtype.getNamespace(), origtype.getSymbol())); + complexContent.appendChild(extension); + } + } + + void applyRule6_10(Element root, SetTypeDefinition definition) throws RuleException { + Definition elemdef = resolver.getDefinition(definition.getElementType()); + + if (elemdef instanceof StrongReferenceTypeDefinition) { + + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); + choice.setAttribute("minOccurs", "0"); + choice.setAttribute("maxOccurs", "unbounded"); + complexType.appendChild(choice); + + ClassDefinition parent + = (ClassDefinition) resolver.getDefinition( + ((StrongReferenceTypeDefinition) elemdef).getReferencedType() + ); + + if (parent == null) { + + SchemaEvent evt = new SchemaEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Cannot resolve referenced type %s", + ((StrongReferenceTypeDefinition) elemdef).getReferencedType().toString() + ), + String.format( + "Definition %s at ComplexType %s", + elemdef.getSymbol(), + complexType.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(choice, evt.getReason()); + + } else { + + applyRule6_4_1a(choice, parent); + + } + + } else { + + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + complexType.appendChild(sequence); + + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("minOccurs", "0"); + element.setAttribute("maxOccurs", "unbounded"); + element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); + sequence.appendChild(element); + + } + } + + void applyRule6_11(Element root, StreamTypeDefinition definition) throws RuleException { + + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:stream"); + attribute.setAttribute("use", "optional"); + complexType.appendChild(attribute); + + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "xlink:href"); + attribute.setAttribute("use", "optional"); + complexType.appendChild(attribute); + + attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:byteOrder"); + attribute.setAttribute("use", "optional"); + complexType.appendChild(attribute); + } + + void applyRule6_12(Element root, StringTypeDefinition definition) throws RuleException { + + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element simpleContent = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleContent"); + complexType.appendChild(simpleContent); + + Element extension = root.getOwnerDocument().createElementNS(XSD_NS, "xs:extension"); + extension.setAttribute("base", "xs:string"); + simpleContent.appendChild(extension); + + Element attribute = root.getOwnerDocument().createElementNS(XSD_NS, "xs:attribute"); + attribute.setAttribute("ref", "reg:escaped"); + attribute.setAttribute("use", "optional"); + extension.appendChild(attribute); + + } + + void applyRule6_13(Element root, StrongReferenceTypeDefinition definition) throws RuleException { + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); + complexType.appendChild(choice); + + ClassDefinition parent + = (ClassDefinition) resolver.getDefinition( + definition.getReferencedType() + ); + + if (parent == null) { + + SchemaEvent evt = new SchemaEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Cannot resolve referenced type %s", + definition.getReferencedType().toString() + ), + String.format( + "Definition %s at ComplexType %s", + definition.getSymbol(), + complexType.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(choice, evt.getReason()); + + } else { + + applyRule6_4_1a(choice, parent); + + } + + } + + void applyRule6_14(Element root, VariableArrayTypeDefinition definition) throws RuleException { + + /* + Apply one of the following rules: + 1. rule 6.14.1 if the elements of the array have a Strong Object Reference base type category + 2. rule 6.14.2 if the element type is Character or the type name contains StringArray + 3. rule 6.14.3 if the type name is DataValue + 4. otherwise rule 6.14.4 + + */ + Definition elemdef = resolver.getDefinition(definition.getElementType()); + + if (elemdef instanceof StrongReferenceTypeDefinition) { + + /* Rule 6.14.1 */ + + /* + + + if the referenced class is concrete: + + for all concrete sub-classes: + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element choice = root.getOwnerDocument().createElementNS(XSD_NS, "xs:choice"); + choice.setAttribute("minOccurs", "0"); + choice.setAttribute("maxOccurs", "unbounded"); + complexType.appendChild(choice); + + ClassDefinition parent + = (ClassDefinition) resolver.getDefinition( + ((StrongReferenceTypeDefinition) elemdef).getReferencedType() + ); + + if (parent == null) { + + SchemaEvent evt = new SchemaEvent( + EventCodes.UNKNOWN_TYPE, + String.format( + "Cannot resolve referenced type %s", + ((StrongReferenceTypeDefinition) elemdef).getReferencedType().toString() + ), + String.format( + "Definition %s at ComplextType %s", + elemdef.getSymbol(), + complexType.getLocalName() + ) + ); + + handleEvent(evt); + + addInformativeComment(root, evt.getReason()); + + } else { + + applyRule6_4_1a(choice, parent); + + } + } else if (elemdef instanceof CharacterTypeDefinition || elemdef.getSymbol().contains("StringArray")) { + + /* Rule 6.14.2 + + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + complexType.appendChild(sequence); + + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("minOccurs", "0"); + element.setAttribute("maxOccurs", "unbounded"); + element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); + sequence.appendChild(element); + + } else if (definition.getSymbol().equals("DataValue")) { + + /* Rule 6.14.3 + + + + + + */ + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", "DataValue"); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "reg:HexByteArrayType"); + simpleType.appendChild(restriction); + + } else { + + /* Rule 6.14.4 */ + /* + + + + + + + */ + Element complexType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:complexType"); + complexType.setAttribute("name", definition.getSymbol()); + root.appendChild(complexType); + + Element sequence = root.getOwnerDocument().createElementNS(XSD_NS, "xs:sequence"); + complexType.appendChild(sequence); + + Element element = root.getOwnerDocument().createElementNS(XSD_NS, "xs:element"); + element.setAttribute("minOccurs", "0"); + element.setAttribute("maxOccurs", "unbounded"); + element.setAttribute("ref", createQName(elemdef.getNamespace(), elemdef.getSymbol())); + sequence.appendChild(element); + + } + + } + + void applyRule6_15(Element root, WeakReferenceTypeDefinition definition) throws RuleException { + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "reg:TargetType"); + simpleType.appendChild(restriction); + } + + void applyRule6_alpha(Element root, FloatTypeDefinition definition) throws RuleException { + + /* + + + + + */ + String typename = "ERROR"; + + switch (definition.getSize()) { + + /* not sure this is right */ + case HALF: + case SINGLE: + typename = "xs:float"; + break; + case DOUBLE: + typename = "xs:double"; + break; + } + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", typename); + simpleType.appendChild(restriction); + + } + + void applyRule6_beta(Element root, LensSerialFloatTypeDefinition definition) throws RuleException { + /* + + + + + */ + + Element simpleType = root.getOwnerDocument().createElementNS(XSD_NS, "xs:simpleType"); + simpleType.setAttribute("name", definition.getSymbol()); + root.appendChild(simpleType); + + Element restriction = root.getOwnerDocument().createElementNS(XSD_NS, "xs:restriction"); + restriction.setAttribute("base", "xs:decimal"); + simpleType.appendChild(restriction); + } + + public static class RuleException extends Exception { + + public RuleException(Throwable t) { + super(t); + } + + public RuleException(String msg) { + super(msg); + } + + } + + private static class NamespacePrefixMapper { + + private final HashMap uris = new HashMap<>(); + private final HashMap prefixes = new HashMap<>(); + + public String getPrefixOrCreate(URI ns) { + String prefix = this.uris.get(ns); + /* if prefix does not exist, create one */ + if (prefix == null) { + prefix = "r" + this.uris.size(); + this.uris.put(ns, prefix); + this.prefixes.put(prefix, ns); + } + return prefix; + } + + public String putPrefix(URI ns, String suggested) { + String np = this.uris.get(ns); + URI uri = this.prefixes.get(suggested); + /* if the prefix already exists, create a new one */ + if (uri != null) { + np = "r" + this.uris.size(); + } else { + np = suggested; + } + this.prefixes.put(np, ns); + this.uris.put(ns, np); + return np; + } + + public Set getURIs() { + return uris.keySet(); + } + + public void clear() { + this.uris.clear(); + this.prefixes.clear(); + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java b/src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java rename to src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java index 1950bdd..da9dd31 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/DefinitionResolver.java @@ -1,63 +1,63 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict; - -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.util.AUID; -import java.util.Collection; - -/** - * A class that can retrieve Metadictionary definitions. - */ -public interface DefinitionResolver { - - /** - * Returns a single Metadictionary definitions based on the value of - * identification property. - * - * @param identification Identification of the requested defintion - * @return A single definition, or null if none is associated with the - * identification value - */ - public Definition getDefinition(AUID identification); - - /** - * Return all subclasses of a Class definition. - * - * @param definition Class definition for which subclasses are sought - * @return Identifications for the definition of all subclasses - */ - public Collection getSubclassesOf(ClassDefinition definition); - - /** - * Return all members of a Class definition. - * - * @param definition Class definition for which members are sought - * @return Identifications for the definition of all members - */ - public Collection getMembersOf(ClassDefinition definition); -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict; + +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.util.AUID; +import java.util.Collection; + +/** + * A class that can retrieve Metadictionary definitions. + */ +public interface DefinitionResolver { + + /** + * Returns a single Metadictionary definitions based on the value of + * identification property. + * + * @param identification Identification of the requested defintion + * @return A single definition, or null if none is associated with the + * identification value + */ + public Definition getDefinition(AUID identification); + + /** + * Return all subclasses of a Class definition. + * + * @param definition Class definition for which subclasses are sought + * @return Identifications for the definition of all subclasses + */ + public Collection getSubclassesOf(ClassDefinition definition); + + /** + * Return all members of a Class definition. + * + * @param definition Class definition for which members are sought + * @return Identifications for the definition of all members + */ + public Collection getMembersOf(ClassDefinition definition); +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java b/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java rename to src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java index 40ac7da..c39dfb4 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionary.java @@ -1,363 +1,363 @@ -/* - * Copyright (c) 2014, pal - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict; - -import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.exceptions.DuplicateSymbolException; -import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.UL; -import com.sandflow.smpte.util.UUID; -import com.sandflow.smpte.util.xml.UUIDAdapter; -import java.io.IOException; -import java.io.Reader; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Set; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.Unmarshaller; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.parsers.ParserConfigurationException; -import org.w3c.dom.Document; - -/** - * A single RegXML Metadictionary as specified in SMPTE ST 2001-1 - */ -@XmlRootElement(name = "Extension") -@XmlAccessorType(XmlAccessType.NONE) -public class MetaDictionary implements DefinitionResolver { - - /** - * XML Schema Namespace for the XML representation of a RegXML Metadictionary - */ - public final static String XML_NS = "http://www.smpte-ra.org/schemas/2001-1b/2013/metadict"; - - static AUID createNormalizedAUID(AUID auid) { - if (auid.isUL()) { - - return new AUID(createNormalizedUL(auid.asUL())); - } else { - return auid; - } - } - - static UL createNormalizedUL(UL ul) { - byte[] value = ul.getValue().clone(); - /* set version to 0 */ - - value[7] = 0; - - if (ul.isGroup()) { - - /* set byte 6 to 0x7f */ - value[5] = 0x7f; - - } - - return new UL(value); - } - - static String createQualifiedSymbol(String namespace, String symbol) { - if (namespace == null || namespace.length() == 0) { - return symbol; - } else { - return namespace + " " + symbol; - } - } - - /** - * Reads a MetaDictionary from an XML document. - * - * @param reader Reader from which a single MetaDictionary in XML form will be read - * @return a MetaDictionary - * @throws JAXBException - * @throws IOException - * @throws IllegalDefinitionException - */ - public static MetaDictionary fromXML(Reader reader) throws JAXBException, IOException, IllegalDefinitionException { - JAXBContext ctx = JAXBContext.newInstance(MetaDictionary.class); - - Unmarshaller m = ctx.createUnmarshaller(); - MetaDictionary md = (MetaDictionary) m.unmarshal(reader); - - for (Definition def : md.definitions) { - - def.setNamespace(md.getSchemeURI()); - - md.indexDefinition(def); - } - - return md; - } - - - - @XmlJavaTypeAdapter(value = UUIDAdapter.class) - @XmlElement(name = "SchemeID", required = true) - private UUID schemeID; - - @XmlElement(name = "SchemeURI", required = true) - private URI schemeURI; - - @XmlElement(name = "Description") - private String description; - - private final ArrayList definitions = new ArrayList<>(); - private final HashMap definitionsByAUID = new HashMap<>(); - private final HashMap definitionsBySymbol = new HashMap<>(); - private final HashMap> membersOf = new HashMap<>(); - private final HashMap> subclassesOf = new HashMap<>(); - - private MetaDictionary() { - } - - /** - * Instantiates a MetaDictionary. - * @param schemeURI Scheme URI of the MetaDictionary - */ - public MetaDictionary(URI schemeURI) { - /* NOTE: ST 2001-1 does not allow label to be used in multiple enumerations */ - - this.schemeID = UUID.fromURIName(schemeURI); - this.schemeURI = schemeURI; - } - - void indexDefinition(Definition def) throws IllegalDefinitionException { - AUID defid = createNormalizedAUID(def.getIdentification()); - - if (def.getClass() != PropertyAliasDefinition.class) { - - if (this.definitionsByAUID.containsKey(defid)) { - throw new IllegalDefinitionException("Duplicate AUID: " + def.getIdentification()); - } - - if (this.definitionsBySymbol.containsKey(def.getSymbol())) { - throw new DuplicateSymbolException("Duplicate Symbol: " + def.getSymbol()); - } - - this.definitionsByAUID.put(defid, def); - this.definitionsBySymbol.put(def.getSymbol(), def); - - } - - if (def instanceof PropertyDefinition) { - - AUID parentauid = createNormalizedAUID(((PropertyDefinition) def).getMemberOf()); - - Set hs = this.membersOf.get(parentauid); - - if (hs == null) { - hs = new HashSet<>(); - this.membersOf.put(parentauid, hs); - } - - hs.add(defid); - - } - - if (def instanceof ClassDefinition && ((ClassDefinition) def).getParentClass() != null) { - - AUID parentauid = createNormalizedAUID(((ClassDefinition) def).getParentClass()); - - Set hs = this.subclassesOf.get(parentauid); - - if (hs == null) { - hs = new HashSet<>(); - this.subclassesOf.put(parentauid, hs); - } - - hs.add(defid); - - } - } - - /** - * Adds a definition to the MetaDictionary - * - * @param def Definition to be added - * @throws IllegalDefinitionException - */ - public void add(Definition def) throws IllegalDefinitionException { - - if (!def.getNamespace().equals(this.getSchemeURI())) { - throw new IllegalDefinitionException("Namespace does not match Metadictionary Scheme URI: " + def.getSymbol()); - } - - indexDefinition(def); - - this.definitions.add(def); - } - - /** - * @return SchemeID field of the MetaDictionay - */ - public UUID getSchemeID() { - return schemeID; - } - - /** - * @return SchemeURI field of the MetaDictionay - */ - public URI getSchemeURI() { - return schemeURI; - } - - /** - * @return Description field of the MetaDictionay - */ - public String getDescription() { - return description; - } - - @XmlElementWrapper(name = "MetaDefinitions") - @XmlElements(value = { - @XmlElement(name = "ClassDefinition", - type = ClassDefinition.class), - @XmlElement(name = "PropertyDefinition", - type = PropertyDefinition.class), - @XmlElement(name = "PropertyAliasDefinition", - type = PropertyAliasDefinition.class), - @XmlElement(name = "TypeDefinitionCharacter", - type = CharacterTypeDefinition.class), - @XmlElement(name = "TypeDefinitionEnumeration", - type = EnumerationTypeDefinition.class), - @XmlElement(name = "TypeDefinitionExtendibleEnumeration", - type = ExtendibleEnumerationTypeDefinition.class), - @XmlElement(name = "TypeDefinitionFixedArray", - type = FixedArrayTypeDefinition.class), - @XmlElement(name = "TypeDefinitionIndirect", - type = IndirectTypeDefinition.class), - @XmlElement(name = "TypeDefinitionInteger", - type = IntegerTypeDefinition.class), - @XmlElement(name = "TypeDefinitionOpaque", - type = OpaqueTypeDefinition.class), - @XmlElement(name = "TypeDefinitionRecord", - type = RecordTypeDefinition.class), - @XmlElement(name = "TypeDefinitionRename", - type = RenameTypeDefinition.class), - @XmlElement(name = "TypeDefinitionSet", - type = SetTypeDefinition.class), - @XmlElement(name = "TypeDefinitionStream", - type = StreamTypeDefinition.class), - @XmlElement(name = "TypeDefinitionString", - type = StringTypeDefinition.class), - @XmlElement(name = "TypeDefinitionStrongObjectReference", - type = StrongReferenceTypeDefinition.class), - @XmlElement(name = "TypeDefinitionVariableArray", - type = VariableArrayTypeDefinition.class), - @XmlElement(name = "TypeDefinitionWeakObjectReference", - type = WeakReferenceTypeDefinition.class), - @XmlElement(name = "TypeDefinitionFloat", - type = FloatTypeDefinition.class), - @XmlElement(name = "TypeDefinitionLenseSerialFloat", - type = LensSerialFloatTypeDefinition.class) - }) - public ArrayList getDefinitions() { - return definitions; - } - - @Override - public Definition getDefinition(AUID id) { - return definitionsByAUID.get(createNormalizedAUID(id)); - } - - /** - * Retrieves a Definition based on its symbol - * @param symbol Symbol of the definition to be retrieved - * @return Definition, or null if no definition exists with the specified symbol - */ - public Definition getDefinition(String symbol) { - return definitionsBySymbol.get(symbol); - } - - /** - * Generates an XML representation of the MetaDictionary according to SMPTE ST 2001-1 - * @return The XML DOM - */ - public Document toXML() { - - Document doc = null; - - try { - - doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); - Marshaller m = JAXBContext.newInstance(MetaDictionary.class).createMarshaller(); - m.marshal(this, doc); - - } catch (JAXBException | ParserConfigurationException e) { - - throw new RuntimeException(e); - - } - - return doc; - } - - @Override - public Collection getSubclassesOf(ClassDefinition parent) { - - return subclassesOf.get(createNormalizedAUID(parent.getIdentification())); - } - - @Override - public Collection getMembersOf(ClassDefinition parent) { - return membersOf.get(createNormalizedAUID(parent.getIdentification())); - } - - -} +/* + * Copyright (c) 2014, pal + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict; + +import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.exceptions.DuplicateSymbolException; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import com.sandflow.smpte.util.UUID; +import com.sandflow.smpte.util.xml.UUIDAdapter; +import java.io.IOException; +import java.io.Reader; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Set; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.Unmarshaller; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.XmlElements; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import org.w3c.dom.Document; + +/** + * A single RegXML Metadictionary as specified in SMPTE ST 2001-1 + */ +@XmlRootElement(name = "Extension") +@XmlAccessorType(XmlAccessType.NONE) +public class MetaDictionary implements DefinitionResolver { + + /** + * XML Schema Namespace for the XML representation of a RegXML Metadictionary + */ + public final static String XML_NS = "http://www.smpte-ra.org/schemas/2001-1b/2013/metadict"; + + static AUID createNormalizedAUID(AUID auid) { + if (auid.isUL()) { + + return new AUID(createNormalizedUL(auid.asUL())); + } else { + return auid; + } + } + + static UL createNormalizedUL(UL ul) { + byte[] value = ul.getValue().clone(); + /* set version to 0 */ + + value[7] = 0; + + if (ul.isGroup()) { + + /* set byte 6 to 0x7f */ + value[5] = 0x7f; + + } + + return new UL(value); + } + + static String createQualifiedSymbol(String namespace, String symbol) { + if (namespace == null || namespace.length() == 0) { + return symbol; + } else { + return namespace + " " + symbol; + } + } + + /** + * Reads a MetaDictionary from an XML document. + * + * @param reader Reader from which a single MetaDictionary in XML form will be read + * @return a MetaDictionary + * @throws JAXBException + * @throws IOException + * @throws IllegalDefinitionException + */ + public static MetaDictionary fromXML(Reader reader) throws JAXBException, IOException, IllegalDefinitionException { + JAXBContext ctx = JAXBContext.newInstance(MetaDictionary.class); + + Unmarshaller m = ctx.createUnmarshaller(); + MetaDictionary md = (MetaDictionary) m.unmarshal(reader); + + for (Definition def : md.definitions) { + + def.setNamespace(md.getSchemeURI()); + + md.indexDefinition(def); + } + + return md; + } + + + + @XmlJavaTypeAdapter(value = UUIDAdapter.class) + @XmlElement(name = "SchemeID", required = true) + private UUID schemeID; + + @XmlElement(name = "SchemeURI", required = true) + private URI schemeURI; + + @XmlElement(name = "Description") + private String description; + + private final ArrayList definitions = new ArrayList<>(); + private final HashMap definitionsByAUID = new HashMap<>(); + private final HashMap definitionsBySymbol = new HashMap<>(); + private final HashMap> membersOf = new HashMap<>(); + private final HashMap> subclassesOf = new HashMap<>(); + + private MetaDictionary() { + } + + /** + * Instantiates a MetaDictionary. + * @param schemeURI Scheme URI of the MetaDictionary + */ + public MetaDictionary(URI schemeURI) { + /* NOTE: ST 2001-1 does not allow label to be used in multiple enumerations */ + + this.schemeID = UUID.fromURIName(schemeURI); + this.schemeURI = schemeURI; + } + + void indexDefinition(Definition def) throws IllegalDefinitionException { + AUID defid = createNormalizedAUID(def.getIdentification()); + + if (def.getClass() != PropertyAliasDefinition.class) { + + if (this.definitionsByAUID.containsKey(defid)) { + throw new IllegalDefinitionException("Duplicate AUID: " + def.getIdentification()); + } + + if (this.definitionsBySymbol.containsKey(def.getSymbol())) { + throw new DuplicateSymbolException("Duplicate Symbol: " + def.getSymbol()); + } + + this.definitionsByAUID.put(defid, def); + this.definitionsBySymbol.put(def.getSymbol(), def); + + } + + if (def instanceof PropertyDefinition) { + + AUID parentauid = createNormalizedAUID(((PropertyDefinition) def).getMemberOf()); + + Set hs = this.membersOf.get(parentauid); + + if (hs == null) { + hs = new HashSet<>(); + this.membersOf.put(parentauid, hs); + } + + hs.add(defid); + + } + + if (def instanceof ClassDefinition && ((ClassDefinition) def).getParentClass() != null) { + + AUID parentauid = createNormalizedAUID(((ClassDefinition) def).getParentClass()); + + Set hs = this.subclassesOf.get(parentauid); + + if (hs == null) { + hs = new HashSet<>(); + this.subclassesOf.put(parentauid, hs); + } + + hs.add(defid); + + } + } + + /** + * Adds a definition to the MetaDictionary + * + * @param def Definition to be added + * @throws IllegalDefinitionException + */ + public void add(Definition def) throws IllegalDefinitionException { + + if (!def.getNamespace().equals(this.getSchemeURI())) { + throw new IllegalDefinitionException("Namespace does not match Metadictionary Scheme URI: " + def.getSymbol()); + } + + indexDefinition(def); + + this.definitions.add(def); + } + + /** + * @return SchemeID field of the MetaDictionay + */ + public UUID getSchemeID() { + return schemeID; + } + + /** + * @return SchemeURI field of the MetaDictionay + */ + public URI getSchemeURI() { + return schemeURI; + } + + /** + * @return Description field of the MetaDictionay + */ + public String getDescription() { + return description; + } + + @XmlElementWrapper(name = "MetaDefinitions") + @XmlElements(value = { + @XmlElement(name = "ClassDefinition", + type = ClassDefinition.class), + @XmlElement(name = "PropertyDefinition", + type = PropertyDefinition.class), + @XmlElement(name = "PropertyAliasDefinition", + type = PropertyAliasDefinition.class), + @XmlElement(name = "TypeDefinitionCharacter", + type = CharacterTypeDefinition.class), + @XmlElement(name = "TypeDefinitionEnumeration", + type = EnumerationTypeDefinition.class), + @XmlElement(name = "TypeDefinitionExtendibleEnumeration", + type = ExtendibleEnumerationTypeDefinition.class), + @XmlElement(name = "TypeDefinitionFixedArray", + type = FixedArrayTypeDefinition.class), + @XmlElement(name = "TypeDefinitionIndirect", + type = IndirectTypeDefinition.class), + @XmlElement(name = "TypeDefinitionInteger", + type = IntegerTypeDefinition.class), + @XmlElement(name = "TypeDefinitionOpaque", + type = OpaqueTypeDefinition.class), + @XmlElement(name = "TypeDefinitionRecord", + type = RecordTypeDefinition.class), + @XmlElement(name = "TypeDefinitionRename", + type = RenameTypeDefinition.class), + @XmlElement(name = "TypeDefinitionSet", + type = SetTypeDefinition.class), + @XmlElement(name = "TypeDefinitionStream", + type = StreamTypeDefinition.class), + @XmlElement(name = "TypeDefinitionString", + type = StringTypeDefinition.class), + @XmlElement(name = "TypeDefinitionStrongObjectReference", + type = StrongReferenceTypeDefinition.class), + @XmlElement(name = "TypeDefinitionVariableArray", + type = VariableArrayTypeDefinition.class), + @XmlElement(name = "TypeDefinitionWeakObjectReference", + type = WeakReferenceTypeDefinition.class), + @XmlElement(name = "TypeDefinitionFloat", + type = FloatTypeDefinition.class), + @XmlElement(name = "TypeDefinitionLenseSerialFloat", + type = LensSerialFloatTypeDefinition.class) + }) + public ArrayList getDefinitions() { + return definitions; + } + + @Override + public Definition getDefinition(AUID id) { + return definitionsByAUID.get(createNormalizedAUID(id)); + } + + /** + * Retrieves a Definition based on its symbol + * @param symbol Symbol of the definition to be retrieved + * @return Definition, or null if no definition exists with the specified symbol + */ + public Definition getDefinition(String symbol) { + return definitionsBySymbol.get(symbol); + } + + /** + * Generates an XML representation of the MetaDictionary according to SMPTE ST 2001-1 + * @return The XML DOM + */ + public Document toXML() { + + Document doc = null; + + try { + + doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); + Marshaller m = JAXBContext.newInstance(MetaDictionary.class).createMarshaller(); + m.marshal(this, doc); + + } catch (JAXBException | ParserConfigurationException e) { + + throw new RuntimeException(e); + + } + + return doc; + } + + @Override + public Collection getSubclassesOf(ClassDefinition parent) { + + return subclassesOf.get(createNormalizedAUID(parent.getIdentification())); + } + + @Override + public Collection getMembersOf(ClassDefinition parent) { + return membersOf.get(createNormalizedAUID(parent.getIdentification())); + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java b/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java rename to src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java index 8d4b9f3..335c9bb 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/MetaDictionaryCollection.java @@ -1,150 +1,150 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict; - -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; -import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; -import com.sandflow.smpte.util.AUID; -import java.net.URI; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; - -/** - * A collection of multiple RegXML Metadictionary as specified in SMPTE ST 2001-1 - */ -public class MetaDictionaryCollection implements DefinitionResolver { - - final private HashMap dicts = new HashMap<>(); - - @Override - public Definition getDefinition(AUID auid) { - Definition def = null; - - for (MetaDictionary md : dicts.values()) { - if ((def = md.getDefinition(auid)) != null) { - break; - } - } - - return def; - } - - /** - * Retrieves a definition from the collection based on its symbol - * @param namespace Namespace of the definition - * @param symbol Symbol of the definition - * @return Definition, or null if none found - */ - public Definition getDefinition(URI namespace, String symbol) { - Definition def = null; - - MetaDictionary md = dicts.get(namespace); - - if (md != null) { - def = md.getDefinition(symbol); - } - - return def; - } - - /** - * Adds a MetaDictionary to the collection. - * - * @param metadictionary MetaDictionary to be added - * @throws IllegalDictionaryException If the MetaDictionary - */ - public void addDictionary(MetaDictionary metadictionary) throws IllegalDictionaryException { - MetaDictionary oldmd = dicts.get(metadictionary.getSchemeURI()); - - if (oldmd == null) { - dicts.put(metadictionary.getSchemeURI(), metadictionary); - } else { - throw new IllegalDictionaryException("Metadictionary already present in group."); - } - - } - - /** - * Adds a definition to the collection. Automatically creates a MetaDictionary - * if none exists with the namespace of the definition. - * - * @param def Definition to be added - * @throws IllegalDefinitionException - */ - public void addDefinition(Definition def) throws IllegalDefinitionException { - MetaDictionary md = dicts.get(def.getNamespace()); - - if (md == null) { - md = new MetaDictionary(def.getNamespace()); - - dicts.put(md.getSchemeURI(), md); - } - - md.add(def); - } - - /** - * Returns all the members of the collection - * @return Collection of MetaDictionaries - */ - public Collection getDictionaries() { - return dicts.values(); - } - - @Override - public Collection getSubclassesOf(ClassDefinition parent) { - - ArrayList subclasses = new ArrayList<>(); - - for (MetaDictionary md : dicts.values()) { - - Collection defs = md.getSubclassesOf(parent); - - if (defs != null) subclasses.addAll(defs); - - } - - return subclasses; - } - - @Override - public Collection getMembersOf(ClassDefinition parent) { - ArrayList members = new ArrayList<>(); - - for (MetaDictionary md : dicts.values()) { - - Collection defs = md.getMembersOf(parent); - - if (defs != null) members.addAll(defs); - } - - return members; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict; + +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; +import com.sandflow.smpte.util.AUID; +import java.net.URI; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashMap; + +/** + * A collection of multiple RegXML Metadictionary as specified in SMPTE ST 2001-1 + */ +public class MetaDictionaryCollection implements DefinitionResolver { + + final private HashMap dicts = new HashMap<>(); + + @Override + public Definition getDefinition(AUID auid) { + Definition def = null; + + for (MetaDictionary md : dicts.values()) { + if ((def = md.getDefinition(auid)) != null) { + break; + } + } + + return def; + } + + /** + * Retrieves a definition from the collection based on its symbol + * @param namespace Namespace of the definition + * @param symbol Symbol of the definition + * @return Definition, or null if none found + */ + public Definition getDefinition(URI namespace, String symbol) { + Definition def = null; + + MetaDictionary md = dicts.get(namespace); + + if (md != null) { + def = md.getDefinition(symbol); + } + + return def; + } + + /** + * Adds a MetaDictionary to the collection. + * + * @param metadictionary MetaDictionary to be added + * @throws IllegalDictionaryException If the MetaDictionary + */ + public void addDictionary(MetaDictionary metadictionary) throws IllegalDictionaryException { + MetaDictionary oldmd = dicts.get(metadictionary.getSchemeURI()); + + if (oldmd == null) { + dicts.put(metadictionary.getSchemeURI(), metadictionary); + } else { + throw new IllegalDictionaryException("Metadictionary already present in group."); + } + + } + + /** + * Adds a definition to the collection. Automatically creates a MetaDictionary + * if none exists with the namespace of the definition. + * + * @param def Definition to be added + * @throws IllegalDefinitionException + */ + public void addDefinition(Definition def) throws IllegalDefinitionException { + MetaDictionary md = dicts.get(def.getNamespace()); + + if (md == null) { + md = new MetaDictionary(def.getNamespace()); + + dicts.put(md.getSchemeURI(), md); + } + + md.add(def); + } + + /** + * Returns all the members of the collection + * @return Collection of MetaDictionaries + */ + public Collection getDictionaries() { + return dicts.values(); + } + + @Override + public Collection getSubclassesOf(ClassDefinition parent) { + + ArrayList subclasses = new ArrayList<>(); + + for (MetaDictionary md : dicts.values()) { + + Collection defs = md.getSubclassesOf(parent); + + if (defs != null) subclasses.addAll(defs); + + } + + return subclasses; + } + + @Override + public Collection getMembersOf(ClassDefinition parent) { + ArrayList members = new ArrayList<>(); + + for (MetaDictionary md : dicts.values()) { + + Collection defs = md.getMembersOf(parent); + + if (defs != null) members.addAll(defs); + } + + return members; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java index 68b0ebb..37c73c1 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/CharacterTypeDefinition.java @@ -1,44 +1,44 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; - -/** - * Character Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class CharacterTypeDefinition extends Definition { - -public CharacterTypeDefinition() { } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; + +/** + * Character Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class CharacterTypeDefinition extends Definition { + +public CharacterTypeDefinition() { } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java index 3128ef4..0ea33f5 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ClassDefinition.java @@ -1,74 +1,74 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Class Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class ClassDefinition extends Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ParentClass") - private AUID parentClass; - - @XmlElement(name = "IsConcrete") - private boolean concrete; - - public ClassDefinition() {} - - public AUID getParentClass() { - return parentClass; - } - - public void setParentClass(AUID parentClass) { - this.parentClass = parentClass; - } - - public boolean isConcrete() { - return concrete; - } - - public void setConcrete(boolean concrete) { - this.concrete = concrete; - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Class Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class ClassDefinition extends Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ParentClass") + private AUID parentClass; + + @XmlElement(name = "IsConcrete") + private boolean concrete; + + public ClassDefinition() {} + + public AUID getParentClass() { + return parentClass; + } + + public void setParentClass(AUID parentClass) { + this.parentClass = parentClass; + } + + public boolean isConcrete() { + return concrete; + } + + public void setConcrete(boolean concrete) { + this.concrete = concrete; + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java index ac3bca7..3900dd5 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/Definition.java @@ -1,110 +1,110 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import java.net.URI; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlTransient; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Base type for the MetaDictionary definitions. Each concrete subclass corresponds to - * a particular type of definition allowed in a MetaDictionary, as specified in - * SMPTE ST 2001-1. XML Annotations are used to map the subclasses to an XML representation - * consistent with that defined in SMPTE ST 2001-1. - */ -@XmlAccessorType(XmlAccessType.NONE) -abstract public class Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "Identification") - private AUID identification; - - @XmlElement(name = "Symbol") - private String symbol; - - @XmlElement(name = "Description") - private String description; - - @XmlElement(name = "Name") - private String name; - - @XmlTransient() - private URI namespace; - - public URI getNamespace() { - return namespace; - } - - public void setNamespace(URI namespace) { - this.namespace = namespace; - } - - public AUID getIdentification() { - return identification; - } - - public String getSymbol() { - return symbol; - } - - public String getDescription() { - return description; - } - - public String getName() { - return name; - } - - public void setIdentification(AUID identification) { - this.identification = identification; - } - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public void setDescription(String description) { - this.description = description; - } - - public void setName(String name) { - this.name = name; - } - - /** - * Supports the visitor design pattern. - * @see DefinitionVisitor - * @param visitor Visitor instance that will process the definition - */ - abstract public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException; - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import java.net.URI; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlTransient; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Base type for the MetaDictionary definitions. Each concrete subclass corresponds to + * a particular type of definition allowed in a MetaDictionary, as specified in + * SMPTE ST 2001-1. XML Annotations are used to map the subclasses to an XML representation + * consistent with that defined in SMPTE ST 2001-1. + */ +@XmlAccessorType(XmlAccessType.NONE) +abstract public class Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "Identification") + private AUID identification; + + @XmlElement(name = "Symbol") + private String symbol; + + @XmlElement(name = "Description") + private String description; + + @XmlElement(name = "Name") + private String name; + + @XmlTransient() + private URI namespace; + + public URI getNamespace() { + return namespace; + } + + public void setNamespace(URI namespace) { + this.namespace = namespace; + } + + public AUID getIdentification() { + return identification; + } + + public String getSymbol() { + return symbol; + } + + public String getDescription() { + return description; + } + + public String getName() { + return name; + } + + public void setIdentification(AUID identification) { + this.identification = identification; + } + + public void setSymbol(String symbol) { + this.symbol = symbol; + } + + public void setDescription(String description) { + this.description = description; + } + + public void setName(String name) { + this.name = name; + } + + /** + * Supports the visitor design pattern. + * @see DefinitionVisitor + * @param visitor Visitor instance that will process the definition + */ + abstract public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException; + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java index 536568b..e88956a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/DefinitionVisitor.java @@ -1,74 +1,74 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.regxml.dict.definitions; - -/** - * Abstract visitor class (of a Visitor Design Pattern) for MetaDictionary definitions. - */ -public interface DefinitionVisitor { - - class VisitorException extends Exception { - - public VisitorException() { - super(); - } - - public VisitorException(String string) { - super(string); - } - - public VisitorException(String string, Throwable thrwbl) { - super(string, thrwbl); - } - - public VisitorException(Throwable thrwbl) { - super(thrwbl); - } - - } - - public void visit(ClassDefinition def) throws VisitorException; - public void visit(CharacterTypeDefinition def) throws VisitorException; - public void visit(IntegerTypeDefinition def) throws VisitorException; - public void visit(PropertyDefinition def) throws VisitorException; - public void visit(ExtendibleEnumerationTypeDefinition def) throws VisitorException; - public void visit(EnumerationTypeDefinition def) throws VisitorException; - public void visit(FixedArrayTypeDefinition def) throws VisitorException; - public void visit(IndirectTypeDefinition def) throws VisitorException; - public void visit(OpaqueTypeDefinition def) throws VisitorException; - public void visit(RecordTypeDefinition def) throws VisitorException; - public void visit(RenameTypeDefinition def) throws VisitorException; - public void visit(SetTypeDefinition def) throws VisitorException; - public void visit(StreamTypeDefinition def) throws VisitorException; - public void visit(StrongReferenceTypeDefinition def) throws VisitorException; - public void visit(StringTypeDefinition def) throws VisitorException; - public void visit(VariableArrayTypeDefinition def) throws VisitorException; - public void visit(WeakReferenceTypeDefinition def) throws VisitorException; - public void visit(PropertyAliasDefinition def) throws VisitorException; - public void visit(FloatTypeDefinition def) throws VisitorException; - public void visit(LensSerialFloatTypeDefinition def) throws VisitorException; -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.regxml.dict.definitions; + +/** + * Abstract visitor class (of a Visitor Design Pattern) for MetaDictionary definitions. + */ +public interface DefinitionVisitor { + + class VisitorException extends Exception { + + public VisitorException() { + super(); + } + + public VisitorException(String string) { + super(string); + } + + public VisitorException(String string, Throwable thrwbl) { + super(string, thrwbl); + } + + public VisitorException(Throwable thrwbl) { + super(thrwbl); + } + + } + + public void visit(ClassDefinition def) throws VisitorException; + public void visit(CharacterTypeDefinition def) throws VisitorException; + public void visit(IntegerTypeDefinition def) throws VisitorException; + public void visit(PropertyDefinition def) throws VisitorException; + public void visit(ExtendibleEnumerationTypeDefinition def) throws VisitorException; + public void visit(EnumerationTypeDefinition def) throws VisitorException; + public void visit(FixedArrayTypeDefinition def) throws VisitorException; + public void visit(IndirectTypeDefinition def) throws VisitorException; + public void visit(OpaqueTypeDefinition def) throws VisitorException; + public void visit(RecordTypeDefinition def) throws VisitorException; + public void visit(RenameTypeDefinition def) throws VisitorException; + public void visit(SetTypeDefinition def) throws VisitorException; + public void visit(StreamTypeDefinition def) throws VisitorException; + public void visit(StrongReferenceTypeDefinition def) throws VisitorException; + public void visit(StringTypeDefinition def) throws VisitorException; + public void visit(VariableArrayTypeDefinition def) throws VisitorException; + public void visit(WeakReferenceTypeDefinition def) throws VisitorException; + public void visit(PropertyAliasDefinition def) throws VisitorException; + public void visit(FloatTypeDefinition def) throws VisitorException; + public void visit(LensSerialFloatTypeDefinition def) throws VisitorException; +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java index 866baff..e48af57 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/EnumerationTypeDefinition.java @@ -1,192 +1,192 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import java.util.ArrayList; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.XmlAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import org.w3c.dom.Document; -import static org.w3c.dom.Node.ELEMENT_NODE; - -/** - * Enumeration Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class EnumerationTypeDefinition extends Definition { - - private static class EnumerationElementAdapter extends XmlAdapter> { - - @Override - public ArrayList unmarshal(Object v) throws Exception { - - ArrayList al = new ArrayList<>(); - - org.w3c.dom.Node node = ((org.w3c.dom.Element) v).getFirstChild(); - - while (node != null) { - - if (node.getNodeType() == ELEMENT_NODE) { - - org.w3c.dom.Element elem = (org.w3c.dom.Element) node; - - if ("Name".equals(elem.getNodeName())) { - - al.add(new Element()); - al.get(al.size() - 1).setName(elem.getTextContent()); - - } else if ("Value".equals(elem.getNodeName())) { - - al.get(al.size() - 1).setValue(Integer.parseInt(elem.getTextContent())); - - } else if ("Description".equals(elem.getNodeName())) { - - al.get(al.size() - 1).setDescription(elem.getTextContent()); - - } - } - - node = node.getNextSibling(); - } - - return al; - } - - @Override - public Object marshal(ArrayList v) throws Exception { - - DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); - DocumentBuilder db = dbf.newDocumentBuilder(); - Document doc = db.newDocument(); - org.w3c.dom.Element elem = doc.createElementNS(MetaDictionary.XML_NS, "Elements"); - - for (Element e : v) { - - org.w3c.dom.Element e1 = doc.createElementNS(MetaDictionary.XML_NS, "Name"); - - e1.setTextContent(e.getName()); - - elem.appendChild(e1); - - e1 = doc.createElementNS(MetaDictionary.XML_NS, "Value"); - - e1.setTextContent(Integer.toString(e.getValue())); - - elem.appendChild(e1); - - if (e.getDescription() != null) { - e1 = doc.createElementNS(MetaDictionary.XML_NS, "Description"); - - e1.setTextContent(e.getDescription()); - - elem.appendChild(e1); - } - - } - - return elem; - } - } - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ElementType") - private AUID elementType; - - @XmlJavaTypeAdapter(value = EnumerationElementAdapter.class) - @XmlAnyElement(lax = false) - private ArrayList elements; - - public EnumerationTypeDefinition() { - } - - public EnumerationTypeDefinition(Collection elements) { - this.elements = new ArrayList<>(elements); - } - - public AUID getElementType() { - return elementType; - } - - public void setElementType(AUID elementType) { - this.elementType = elementType; - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public Collection getElements() { - return elements; - } - - @XmlType(name = "") - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Element { - - @XmlElement(name = "Name") - private String name; - @XmlElement(name = "Value") - private int value; - @XmlElement(name = "Description") - private String description; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public int getValue() { - return value; - } - - public void setValue(int value) { - this.value = value; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import java.util.ArrayList; +import java.util.Collection; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import org.w3c.dom.Document; +import static org.w3c.dom.Node.ELEMENT_NODE; + +/** + * Enumeration Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class EnumerationTypeDefinition extends Definition { + + private static class EnumerationElementAdapter extends XmlAdapter> { + + @Override + public ArrayList unmarshal(Object v) throws Exception { + + ArrayList al = new ArrayList<>(); + + org.w3c.dom.Node node = ((org.w3c.dom.Element) v).getFirstChild(); + + while (node != null) { + + if (node.getNodeType() == ELEMENT_NODE) { + + org.w3c.dom.Element elem = (org.w3c.dom.Element) node; + + if ("Name".equals(elem.getNodeName())) { + + al.add(new Element()); + al.get(al.size() - 1).setName(elem.getTextContent()); + + } else if ("Value".equals(elem.getNodeName())) { + + al.get(al.size() - 1).setValue(Integer.parseInt(elem.getTextContent())); + + } else if ("Description".equals(elem.getNodeName())) { + + al.get(al.size() - 1).setDescription(elem.getTextContent()); + + } + } + + node = node.getNextSibling(); + } + + return al; + } + + @Override + public Object marshal(ArrayList v) throws Exception { + + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + DocumentBuilder db = dbf.newDocumentBuilder(); + Document doc = db.newDocument(); + org.w3c.dom.Element elem = doc.createElementNS(MetaDictionary.XML_NS, "Elements"); + + for (Element e : v) { + + org.w3c.dom.Element e1 = doc.createElementNS(MetaDictionary.XML_NS, "Name"); + + e1.setTextContent(e.getName()); + + elem.appendChild(e1); + + e1 = doc.createElementNS(MetaDictionary.XML_NS, "Value"); + + e1.setTextContent(Integer.toString(e.getValue())); + + elem.appendChild(e1); + + if (e.getDescription() != null) { + e1 = doc.createElementNS(MetaDictionary.XML_NS, "Description"); + + e1.setTextContent(e.getDescription()); + + elem.appendChild(e1); + } + + } + + return elem; + } + } + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ElementType") + private AUID elementType; + + @XmlJavaTypeAdapter(value = EnumerationElementAdapter.class) + @XmlAnyElement(lax = false) + private ArrayList elements; + + public EnumerationTypeDefinition() { + } + + public EnumerationTypeDefinition(Collection elements) { + this.elements = new ArrayList<>(elements); + } + + public AUID getElementType() { + return elementType; + } + + public void setElementType(AUID elementType) { + this.elementType = elementType; + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public Collection getElements() { + return elements; + } + + @XmlType(name = "") + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Element { + + @XmlElement(name = "Name") + private String name; + @XmlElement(name = "Value") + private int value; + @XmlElement(name = "Description") + private String description; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getValue() { + return value; + } + + public void setValue(int value) { + this.value = value; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java index 3bd2760..a906972 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/ExtendibleEnumerationTypeDefinition.java @@ -1,97 +1,97 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import java.util.ArrayList; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Extendible Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class ExtendibleEnumerationTypeDefinition extends Definition { - - - private ArrayList elements; - - public ExtendibleEnumerationTypeDefinition() {} - - public ExtendibleEnumerationTypeDefinition(Collection elements) { - this.elements = new ArrayList<>(elements); - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public Collection getElements() { - return elements; - } - - @XmlAccessorType(value = XmlAccessType.NONE) - public static class Element { - - @XmlElement(name = "Name") - private String name; - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "Value") - private AUID value; - @XmlElement(name = "Description") - private String description; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public AUID getValue() { - return value; - } - - public void setValue(AUID value) { - this.value = value; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import java.util.ArrayList; +import java.util.Collection; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Extendible Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class ExtendibleEnumerationTypeDefinition extends Definition { + + + private ArrayList elements; + + public ExtendibleEnumerationTypeDefinition() {} + + public ExtendibleEnumerationTypeDefinition(Collection elements) { + this.elements = new ArrayList<>(elements); + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public Collection getElements() { + return elements; + } + + @XmlAccessorType(value = XmlAccessType.NONE) + public static class Element { + + @XmlElement(name = "Name") + private String name; + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "Value") + private AUID value; + @XmlElement(name = "Description") + private String description; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public AUID getValue() { + return value; + } + + public void setValue(AUID value) { + this.value = value; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java index 9ef4363..ddc91ff 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FixedArrayTypeDefinition.java @@ -1,71 +1,71 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Fixed Array Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class FixedArrayTypeDefinition extends Definition { - - public FixedArrayTypeDefinition() {} - - @XmlElement(name = "ElementCount") - private int elementCount; - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ElementType") - private AUID elementType; - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public int getElementCount() { - return elementCount; - } - - public void setElementCount(int elementCount) { - this.elementCount = elementCount; - } - - public AUID getElementType() { - return elementType; - } - - public void setElementType(AUID elementType) { - this.elementType = elementType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Fixed Array Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class FixedArrayTypeDefinition extends Definition { + + public FixedArrayTypeDefinition() {} + + @XmlElement(name = "ElementCount") + private int elementCount; + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ElementType") + private AUID elementType; + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public int getElementCount() { + return elementCount; + } + + public void setElementCount(int elementCount) { + this.elementCount = elementCount; + } + + public AUID getElementType() { + return elementType; + } + + public void setElementType(AUID elementType) { + this.elementType = elementType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java index 793dddd..88dea3e 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/FloatTypeDefinition.java @@ -1,74 +1,74 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - -/** - * Float Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class FloatTypeDefinition extends Definition { - - - - /** - * specifies the number of bytes to store the value - */ - @XmlElement(name = "Size") - private Size size; - - public FloatTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public Size getSize() { - return size; - } - - public void setSize(Size size) { - this.size = size; - } - - @XmlEnum(Integer.class) - @XmlType(name="FloatSize") - public enum Size { - @XmlEnumValue("2") HALF, - @XmlEnumValue("4") SINGLE, - @XmlEnumValue("8") DOUBLE - } - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlEnumValue; +import javax.xml.bind.annotation.XmlType; + +/** + * Float Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class FloatTypeDefinition extends Definition { + + + + /** + * specifies the number of bytes to store the value + */ + @XmlElement(name = "Size") + private Size size; + + public FloatTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public Size getSize() { + return size; + } + + public void setSize(Size size) { + this.size = size; + } + + @XmlEnum(Integer.class) + @XmlType(name="FloatSize") + public enum Size { + @XmlEnumValue("2") HALF, + @XmlEnumValue("4") SINGLE, + @XmlEnumValue("8") DOUBLE + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java index 71fa27d..714ae13 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IndirectTypeDefinition.java @@ -1,44 +1,44 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; - -/** - * Indirect Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class IndirectTypeDefinition extends Definition { - - public IndirectTypeDefinition() {} - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; + +/** + * Indirect Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class IndirectTypeDefinition extends Definition { + + public IndirectTypeDefinition() {} + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java index 8136f4b..e480d7a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/IntegerTypeDefinition.java @@ -1,79 +1,79 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; - -/** - * Integer Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class IntegerTypeDefinition extends Definition { - - @XmlElement(name = "Size") - private Size size; - - @XmlElement(name = "IsSigned") - private boolean signed; - - public IntegerTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public Size getSize() { - return size; - } - - public void setSize(Size size) { - this.size = size; - } - - public boolean isSigned() { - return signed; - } - - public void setSigned(boolean signed) { - this.signed = signed; - } - - @XmlEnum(Integer.class) - public enum Size { - @XmlEnumValue("1") ONE, - @XmlEnumValue("2") TWO, - @XmlEnumValue("4") FOUR, - @XmlEnumValue("8") EIGHT - } - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlEnumValue; + +/** + * Integer Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class IntegerTypeDefinition extends Definition { + + @XmlElement(name = "Size") + private Size size; + + @XmlElement(name = "IsSigned") + private boolean signed; + + public IntegerTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public Size getSize() { + return size; + } + + public void setSize(Size size) { + this.size = size; + } + + public boolean isSigned() { + return signed; + } + + public void setSigned(boolean signed) { + this.signed = signed; + } + + @XmlEnum(Integer.class) + public enum Size { + @XmlEnumValue("1") ONE, + @XmlEnumValue("2") TWO, + @XmlEnumValue("4") FOUR, + @XmlEnumValue("8") EIGHT + } + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java index ccf6912..fc76755 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/LensSerialFloatTypeDefinition.java @@ -1,48 +1,48 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; - -/** - * Corresponds to a type defined in RDD 18. - * @deprecated - */ -@XmlAccessorType(XmlAccessType.NONE) -public class LensSerialFloatTypeDefinition extends Definition { - - public LensSerialFloatTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; + +/** + * Corresponds to a type defined in RDD 18. + * @deprecated + */ +@XmlAccessorType(XmlAccessType.NONE) +public class LensSerialFloatTypeDefinition extends Definition { + + public LensSerialFloatTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java index b7b3cc2..db06258 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/NullDefinitionVisitor.java @@ -1,134 +1,134 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -/** - * Simplifies the creation of Visitor classes for Metadictionay definitions by providing - * concrete implementations of all methods of the abstract DefinitionVisitor interface. - */ -public class NullDefinitionVisitor implements DefinitionVisitor { - - @Override - public void visit(PropertyAliasDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(ClassDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(CharacterTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(IntegerTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(PropertyDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(ExtendibleEnumerationTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(EnumerationTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(FixedArrayTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(IndirectTypeDefinition def) throws VisitorException { - throw new VisitorException("Not supported yet."); - } - - @Override - public void visit(OpaqueTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(RecordTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(RenameTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(SetTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(StreamTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(StrongReferenceTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(StringTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(VariableArrayTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(WeakReferenceTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(FloatTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void visit(LensSerialFloatTypeDefinition def) throws VisitorException { - throw new UnsupportedOperationException("Not supported yet."); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +/** + * Simplifies the creation of Visitor classes for Metadictionay definitions by providing + * concrete implementations of all methods of the abstract DefinitionVisitor interface. + */ +public class NullDefinitionVisitor implements DefinitionVisitor { + + @Override + public void visit(PropertyAliasDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(ClassDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(CharacterTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(IntegerTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(PropertyDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(ExtendibleEnumerationTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(EnumerationTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(FixedArrayTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(IndirectTypeDefinition def) throws VisitorException { + throw new VisitorException("Not supported yet."); + } + + @Override + public void visit(OpaqueTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(RecordTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(RenameTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(SetTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(StreamTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(StrongReferenceTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(StringTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(VariableArrayTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(WeakReferenceTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(FloatTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void visit(LensSerialFloatTypeDefinition def) throws VisitorException { + throw new UnsupportedOperationException("Not supported yet."); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java index fd0bb1d..634e5d8 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/OpaqueTypeDefinition.java @@ -1,46 +1,46 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; - -/** - * Opaque Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class OpaqueTypeDefinition extends Definition { - - public OpaqueTypeDefinition() { - } - - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; + +/** + * Opaque Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class OpaqueTypeDefinition extends Definition { + + public OpaqueTypeDefinition() { + } + + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java index 1574061..b49237a 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyAliasDefinition.java @@ -1,65 +1,65 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Property Alias Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class PropertyAliasDefinition extends PropertyDefinition { - - public PropertyAliasDefinition() { - } - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "OriginalProperty") - private AUID originalProperty; - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getOriginalProperty() { - return originalProperty; - } - - public void setOriginalProperty(AUID originalProperty) { - this.originalProperty = originalProperty; - } - - - - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Property Alias Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class PropertyAliasDefinition extends PropertyDefinition { + + public PropertyAliasDefinition() { + } + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "OriginalProperty") + private AUID originalProperty; + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getOriginalProperty() { + return originalProperty; + } + + public void setOriginalProperty(AUID originalProperty) { + this.originalProperty = originalProperty; + } + + + + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java index 409c36b..c1bd584 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/PropertyDefinition.java @@ -1,108 +1,108 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Property Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class PropertyDefinition extends Definition { - - public PropertyDefinition() { - } - - - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "Type") - private AUID type; - - @XmlElement(name = "IsOptional") - private boolean optional; - - @XmlElement(name = "IsUniqueIdentifier") - private boolean uniqueIdentifier; - - @XmlElement(name = "LocalIdentification") - private int localIdentification; - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "MemberOf") - private AUID memberOf; - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getType() { - return type; - } - - public void setType(AUID type) { - this.type = type; - } - - public boolean isOptional() { - return optional; - } - - public void setOptional(boolean optional) { - this.optional = optional; - } - - public boolean isUniqueIdentifier() { - return uniqueIdentifier; - } - - public void setUniqueIdentifier(boolean uniqueIdentifier) { - this.uniqueIdentifier = uniqueIdentifier; - } - - public int getLocalIdentification() { - return localIdentification; - } - - public void setLocalIdentification(int localIdentification) { - this.localIdentification = localIdentification; - } - - public AUID getMemberOf() { - return memberOf; - } - - public void setMemberOf(AUID memberOf) { - this.memberOf = memberOf; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Property Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class PropertyDefinition extends Definition { + + public PropertyDefinition() { + } + + + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "Type") + private AUID type; + + @XmlElement(name = "IsOptional") + private boolean optional; + + @XmlElement(name = "IsUniqueIdentifier") + private boolean uniqueIdentifier; + + @XmlElement(name = "LocalIdentification") + private int localIdentification; + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "MemberOf") + private AUID memberOf; + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getType() { + return type; + } + + public void setType(AUID type) { + this.type = type; + } + + public boolean isOptional() { + return optional; + } + + public void setOptional(boolean optional) { + this.optional = optional; + } + + public boolean isUniqueIdentifier() { + return uniqueIdentifier; + } + + public void setUniqueIdentifier(boolean uniqueIdentifier) { + this.uniqueIdentifier = uniqueIdentifier; + } + + public int getLocalIdentification() { + return localIdentification; + } + + public void setLocalIdentification(int localIdentification) { + this.localIdentification = localIdentification; + } + + public AUID getMemberOf() { + return memberOf; + } + + public void setMemberOf(AUID memberOf) { + this.memberOf = memberOf; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java index 222aaa0..65ef8aa 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RecordTypeDefinition.java @@ -1,163 +1,163 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import java.util.ArrayList; -import java.util.Collection; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import org.w3c.dom.Document; -import static org.w3c.dom.Node.ELEMENT_NODE; - -/** - * Record Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class RecordTypeDefinition extends Definition { - - @XmlJavaTypeAdapter(value = RecordMemberAdapter.class) - @XmlAnyElement(lax = false) - ArrayList members = new ArrayList<>(); - - public RecordTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public void addMember(Member record) { - members.add(record); - } - - public Collection getMembers() { - return members; - } - - - @XmlAccessorType(XmlAccessType.NONE) - public static class Member { - @XmlElement(name = "Name") - private String name; - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "Type") - private AUID type; - @XmlElement(name = "Description") - private String description; - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - - public AUID getType() { - return type; - } - - public void setType(AUID type) { - this.type = type; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - } - - private static class RecordMemberAdapter extends XmlAdapter> { - - public ArrayList unmarshal(Object v) throws Exception { - - ArrayList al = new ArrayList<>(); - - org.w3c.dom.Node node = ((org.w3c.dom.Element) v).getFirstChild(); - - while (node != null) { - - if (node.getNodeType() == ELEMENT_NODE) { - - org.w3c.dom.Element elem = (org.w3c.dom.Element) node; - - if ("Name".equals(elem.getNodeName())) { - - al.add(new RecordTypeDefinition.Member()); - al.get(al.size() - 1).setName(elem.getTextContent()); - - } else if ("Type".equals(elem.getNodeName())) { - - al.get(al.size() - 1).setType(AUID.fromURN(elem.getTextContent())); - - } - } - - node = node.getNextSibling(); - } - - return al; - } - - public Object marshal(ArrayList v) throws Exception { - - DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); - DocumentBuilder db = dbf.newDocumentBuilder(); - Document doc = db.newDocument(); - org.w3c.dom.Element elem = doc.createElementNS(MetaDictionary.XML_NS, "Members"); - - for (RecordTypeDefinition.Member e : v) { - - org.w3c.dom.Element e1 = doc.createElementNS(MetaDictionary.XML_NS, "Name"); - - e1.setTextContent(e.getName()); - - elem.appendChild(e1); - - e1 = doc.createElementNS(MetaDictionary.XML_NS, "Type"); - - e1.setTextContent(e.getType().toString()); - - elem.appendChild(e1); - - } - - return elem; - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import java.util.ArrayList; +import java.util.Collection; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAnyElement; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import org.w3c.dom.Document; +import static org.w3c.dom.Node.ELEMENT_NODE; + +/** + * Record Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class RecordTypeDefinition extends Definition { + + @XmlJavaTypeAdapter(value = RecordMemberAdapter.class) + @XmlAnyElement(lax = false) + ArrayList members = new ArrayList<>(); + + public RecordTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public void addMember(Member record) { + members.add(record); + } + + public Collection getMembers() { + return members; + } + + + @XmlAccessorType(XmlAccessType.NONE) + public static class Member { + @XmlElement(name = "Name") + private String name; + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "Type") + private AUID type; + @XmlElement(name = "Description") + private String description; + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + public AUID getType() { + return type; + } + + public void setType(AUID type) { + this.type = type; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + } + + private static class RecordMemberAdapter extends XmlAdapter> { + + public ArrayList unmarshal(Object v) throws Exception { + + ArrayList al = new ArrayList<>(); + + org.w3c.dom.Node node = ((org.w3c.dom.Element) v).getFirstChild(); + + while (node != null) { + + if (node.getNodeType() == ELEMENT_NODE) { + + org.w3c.dom.Element elem = (org.w3c.dom.Element) node; + + if ("Name".equals(elem.getNodeName())) { + + al.add(new RecordTypeDefinition.Member()); + al.get(al.size() - 1).setName(elem.getTextContent()); + + } else if ("Type".equals(elem.getNodeName())) { + + al.get(al.size() - 1).setType(AUID.fromURN(elem.getTextContent())); + + } + } + + node = node.getNextSibling(); + } + + return al; + } + + public Object marshal(ArrayList v) throws Exception { + + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + DocumentBuilder db = dbf.newDocumentBuilder(); + Document doc = db.newDocument(); + org.w3c.dom.Element elem = doc.createElementNS(MetaDictionary.XML_NS, "Members"); + + for (RecordTypeDefinition.Member e : v) { + + org.w3c.dom.Element e1 = doc.createElementNS(MetaDictionary.XML_NS, "Name"); + + e1.setTextContent(e.getName()); + + elem.appendChild(e1); + + e1 = doc.createElementNS(MetaDictionary.XML_NS, "Type"); + + e1.setTextContent(e.getType().toString()); + + elem.appendChild(e1); + + } + + return elem; + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java index 5d008ce..6db0d93 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/RenameTypeDefinition.java @@ -1,61 +1,61 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Rename Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class RenameTypeDefinition extends Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "RenamedType") - private AUID renamedType; - - public RenameTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getRenamedType() { - return renamedType; - } - - public void setRenamedType(AUID renamedType) { - this.renamedType = renamedType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Rename Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class RenameTypeDefinition extends Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "RenamedType") + private AUID renamedType; + + public RenameTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getRenamedType() { + return renamedType; + } + + public void setRenamedType(AUID renamedType) { + this.renamedType = renamedType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java index 077e859..322e38d 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/SetTypeDefinition.java @@ -1,63 +1,63 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Set Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class SetTypeDefinition extends Definition { - - public SetTypeDefinition() { - } - - - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ElementType") - private AUID elementType; - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getElementType() { - return elementType; - } - - public void setElementType(AUID elementType) { - this.elementType = elementType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Set Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class SetTypeDefinition extends Definition { + + public SetTypeDefinition() { + } + + + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ElementType") + private AUID elementType; + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getElementType() { + return elementType; + } + + public void setElementType(AUID elementType) { + this.elementType = elementType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java index acf3a81..62e39d6 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StreamTypeDefinition.java @@ -1,45 +1,45 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; - -/** - * Stream Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class StreamTypeDefinition extends Definition { - - public StreamTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; + +/** + * Stream Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class StreamTypeDefinition extends Definition { + + public StreamTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java index d4fffec..60fc1c4 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StringTypeDefinition.java @@ -1,61 +1,61 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * String Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class StringTypeDefinition extends Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ElementType") - private AUID elementType; - - public StringTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getElementType() { - return elementType; - } - - public void setElementType(AUID elementType) { - this.elementType = elementType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * String Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class StringTypeDefinition extends Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ElementType") + private AUID elementType; + + public StringTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getElementType() { + return elementType; + } + + public void setElementType(AUID elementType) { + this.elementType = elementType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java index de4ccea..2deeb6f 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/StrongReferenceTypeDefinition.java @@ -1,61 +1,61 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Strong Reference Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class StrongReferenceTypeDefinition extends Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ReferencedType") - private AUID referenceType; - - public StrongReferenceTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getReferenceType() { - return referenceType; - } - - public void setReferenceType(AUID referenceType) { - this.referenceType = referenceType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Strong Reference Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class StrongReferenceTypeDefinition extends Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ReferencedType") + private AUID referenceType; + + public StrongReferenceTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getReferencedType() { + return referenceType; + } + + public void setReferenceType(AUID referenceType) { + this.referenceType = referenceType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java index 8d8ff5a..2ad5a52 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/VariableArrayTypeDefinition.java @@ -1,61 +1,61 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Variable Array Type Definition as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class VariableArrayTypeDefinition extends Definition { - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ElementType") - private AUID elementType; - - public VariableArrayTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getElementType() { - return elementType; - } - - public void setElementType(AUID elementType) { - this.elementType = elementType; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Variable Array Type Definition as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class VariableArrayTypeDefinition extends Definition { + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ElementType") + private AUID elementType; + + public VariableArrayTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getElementType() { + return elementType; + } + + public void setElementType(AUID elementType) { + this.elementType = elementType; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java index d0f0921..06c5b49 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/WeakReferenceTypeDefinition.java @@ -1,77 +1,77 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.xml.AUIDAdapter; -import java.util.ArrayList; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementWrapper; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - -/** - * Weak Reference Type as defined in ST 2001-1 - */ -@XmlAccessorType(XmlAccessType.NONE) -public class WeakReferenceTypeDefinition extends Definition { - - - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - @XmlElement(name = "ReferencedType") - private AUID referencedType; - - @XmlElementWrapper(name = "TargetSet") - @XmlElement(name = "MetaDefRef") - @XmlJavaTypeAdapter(value = AUIDAdapter.class) - private ArrayList targetSet = new ArrayList<>(); - - public WeakReferenceTypeDefinition() { - } - - @Override - public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { - visitor.visit(this); - } - - public AUID getReferencedType() { - return referencedType; - } - - public void setReferencedType(AUID referencedType) { - this.referencedType = referencedType; - } - - public ArrayList getTargetSet() { - return targetSet; - } - - public void setTargetSet(ArrayList targetSet) { - this.targetSet = targetSet; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.xml.AUIDAdapter; +import java.util.ArrayList; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlElementWrapper; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + +/** + * Weak Reference Type as defined in ST 2001-1 + */ +@XmlAccessorType(XmlAccessType.NONE) +public class WeakReferenceTypeDefinition extends Definition { + + + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + @XmlElement(name = "ReferencedType") + private AUID referencedType; + + @XmlElementWrapper(name = "TargetSet") + @XmlElement(name = "MetaDefRef") + @XmlJavaTypeAdapter(value = AUIDAdapter.class) + private ArrayList targetSet = new ArrayList<>(); + + public WeakReferenceTypeDefinition() { + } + + @Override + public void accept(DefinitionVisitor visitor) throws DefinitionVisitor.VisitorException { + visitor.visit(this); + } + + public AUID getReferencedType() { + return referencedType; + } + + public void setReferencedType(AUID referencedType) { + this.referencedType = referencedType; + } + + public ArrayList getTargetSet() { + return targetSet; + } + + public void setTargetSet(ArrayList targetSet) { + this.targetSet = targetSet; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java rename to src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java index ecd0e21..dba29ef 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/definitions/package-info.java @@ -1,42 +1,42 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * MetaDictionary definitions as specified in SMPTE ST 2001-1 - */ -@XmlSchema( - namespace = MetaDictionary.XML_NS, - xmlns = { - @XmlNs(prefix = "", namespaceURI = MetaDictionary.XML_NS) - }, - elementFormDefault=XmlNsForm.QUALIFIED) -package com.sandflow.smpte.regxml.dict.definitions; - -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import javax.xml.bind.annotation.XmlNs; -import javax.xml.bind.annotation.XmlNsForm; -import javax.xml.bind.annotation.XmlSchema; - +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * MetaDictionary definitions as specified in SMPTE ST 2001-1 + */ +@XmlSchema( + namespace = MetaDictionary.XML_NS, + xmlns = { + @XmlNs(prefix = "", namespaceURI = MetaDictionary.XML_NS) + }, + elementFormDefault=XmlNsForm.QUALIFIED) +package com.sandflow.smpte.regxml.dict.definitions; + +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import javax.xml.bind.annotation.XmlNs; +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; + diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java rename to src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java index 2063b96..bdf4deb 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/DuplicateSymbolException.java @@ -1,38 +1,38 @@ -/* - * Copyright (c) 2015, pal - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.exceptions; - -public class DuplicateSymbolException extends IllegalDefinitionException { - - public DuplicateSymbolException() { - super(); - } - - public DuplicateSymbolException(String msg) { - super(msg); - } - -} +/* + * Copyright (c) 2015, pal + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.exceptions; + +public class DuplicateSymbolException extends IllegalDefinitionException { + + public DuplicateSymbolException() { + super(); + } + + public DuplicateSymbolException(String msg) { + super(msg); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java rename to src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java index 444dee5..15bc115 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDefinitionException.java @@ -1,37 +1,37 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.exceptions; - -public class IllegalDefinitionException extends Exception { - - public IllegalDefinitionException() { - } - - public IllegalDefinitionException(String msg) { - super(msg); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.exceptions; + +public class IllegalDefinitionException extends Exception { + + public IllegalDefinitionException() { + } + + public IllegalDefinitionException(String msg) { + super(msg); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java rename to src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java index 6b723af..5d5a1a8 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/exceptions/IllegalDictionaryException.java @@ -1,34 +1,34 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.exceptions; - -public class IllegalDictionaryException extends Exception { - - public IllegalDictionaryException(String msg) { - super(msg); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.exceptions; + +public class IllegalDictionaryException extends Exception { + + public IllegalDictionaryException(String msg) { + super(msg); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java b/src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java similarity index 94% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java rename to src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java index 0b5141e..ec7d0c2 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/importers/RegisterImporter.java @@ -1,711 +1,743 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml.dict.importers; - -import com.sandflow.smpte.register.ElementsRegister; -import com.sandflow.smpte.register.GroupsRegister; -import com.sandflow.smpte.register.TypesRegister; -import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; -import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; -import com.sandflow.smpte.regxml.dict.definitions.Definition; -import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; -import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition.Member; -import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; -import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; -import com.sandflow.smpte.regxml.dict.exceptions.DuplicateSymbolException; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.UL; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.HashSet; -import java.util.LinkedHashMap; -import java.util.Map; -import java.util.logging.Logger; - -/** - * Generates MetaDictionaries from SMPTE Metadata Registers. - */ -public class RegisterImporter { - - private final static Logger LOGGER = Logger.getLogger(RegisterImporter.class.getName()); - - /** - * Defines all events raised by the class - */ - public static enum EventKind { - - /** - * Element definition cannot be found - */ - UNKNOWN_ELEMENT(Event.Severity.WARN), - /** - * Type definition cannot be found. - */ - UNKNOWN_TYPE(Event.Severity.WARN), - /** - * Weak Reference Target Set cannot be found. - */ - UNKNOWN_TARGET_SET(Event.Severity.WARN), - /** - * Weak Reference Target Set duplicated - */ - DUP_TARGET_SET(Event.Severity.WARN), - /** - * Unknown type kind encountered. - */ - UNKNOWN_TYPE_KIND(Event.Severity.ERROR), - /** - * Type Definition import failed - */ - TYPE_IMPORT_FAILED(Event.Severity.ERROR), - /** - * Duplicate symbol found - */ - DUPLICATE_SYMBOL(Event.Severity.ERROR); - - public final Event.Severity severity; - - private EventKind(Event.Severity severity) { - this.severity = severity; - } - - } - - /** - * All events raised by this class are instances of this class - */ - public static class RegisterEvent extends com.sandflow.util.events.BasicEvent { - - public RegisterEvent(EventKind kind, String message) { - super(kind.severity, kind, message); - } - - } - - static void handleEvent(EventHandler handler, com.sandflow.util.events.Event evt) throws Exception { - - if (handler != null) { - - if (!handler.handle(evt) || - evt.getSeverity() == Event.Severity.FATAL) { - - /* die on FATAL events or if requested by the handler */ - throw new Exception(evt.getMessage()); - - } - - } else if (evt.getSeverity() == Event.Severity.ERROR - || evt.getSeverity() == Event.Severity.FATAL) { - - /* if no event handler was provided, die on FATAL and ERROR events */ - throw new Exception(evt.getMessage()); - - } - } - - /** - * @deprecated Replaced by {@link MetaDictionaryCollection fromRegister(TypesRegister, - * GroupsRegister,ElementsRegister,EventHandler)}. This constructor does not allow the - * caller to provide an event handler, and instead uses java.util.logging to - * output events. - * - * @param tr Types Register - * @param gr Groups Register - * @param er Elements Register - * - * @return Collection of Metadictionaries - * - * @throws Exception - */ - public static MetaDictionaryCollection fromRegister(TypesRegister tr, - GroupsRegister gr, - ElementsRegister er - ) throws Exception { - - EventHandler handler = new EventHandler() { - - @Override - public boolean handle(com.sandflow.util.events.Event evt) { - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOGGER.severe(evt.getMessage()); - break; - case INFO: - LOGGER.info(evt.getMessage()); - break; - case WARN: - LOGGER.warning(evt.getMessage()); - } - - return true; - } - }; - - return fromRegister(tr, gr, er, handler); - } - - /** - * Generates MetaDictionaries from SMPTE Types, Groups and Elements - * Registers. - * - * @param tr Types Register - * @param gr Groups Register - * @param er Elements Register - * @param evthandler Event Handler. May be null. - * - * @return Collection of Metadictionaries - * - * @throws Exception - */ - public static MetaDictionaryCollection fromRegister(TypesRegister tr, - GroupsRegister gr, - ElementsRegister er, - EventHandler evthandler - ) throws Exception { - - /* definition collection */ - LinkedHashMap> defs = new LinkedHashMap<>(); - - /* some types may refer to groups that have been excluded since they - did not have a local set representation. This variable keep track of - references in order to prune dangling references later */ - HashMap> isReferencedBy = new HashMap<>(); - - /* Handles Group Entries */ - for (GroupsRegister.Entry group : gr.getEntries()) { - - if (group.getKind().equals(GroupsRegister.Entry.Kind.NODE)) { - continue; - } - - /* Skip class 14 and 15 */ - if (group.getUL().isClass14() || group.getUL().isClass15()) { - continue; - } - - /* Skip groups that do not have a local set representation locat set groups */ - if (!group.getKlvSyntax().contains((byte) 0x53)) { - continue; - } - - ClassDefinition cdef = new ClassDefinition(); - - if (group.isConcrete() != null) { - cdef.setConcrete(group.isConcrete()); - } else { - cdef.setConcrete(true); - } - - cdef.setDescription(group.getDefinition()); - - cdef.setName(group.getName()); - - cdef.setSymbol(group.getSymbol()); - - cdef.setNamespace(group.getNamespaceName()); - - if (group.getParent() != null) { - cdef.setParentClass(new AUID(group.getParent())); - } - - cdef.setIdentification(new AUID(group.getUL())); - - for (GroupsRegister.Entry.Record child : group.getContents()) { - - AUID id = new AUID(child.getItem()); - - PropertyDefinition pdef = null; - - if (defs.containsKey(id)) { - - /* if the property has already been added, e.g. BodySID, create an alias */ - PropertyAliasDefinition padef = new PropertyAliasDefinition(); - - padef.setOriginalProperty(id); - - pdef = padef; - - } else { - - pdef = new PropertyDefinition(); - - } - - pdef.setIdentification(id); - pdef.setOptional(child.getOptional()); - - if (child.getUniqueID() != null) { - pdef.setUniqueIdentifier(child.getUniqueID()); - } - pdef.setLocalIdentification((int) (child.getLocalTag() == null ? 0 : child.getLocalTag())); - - /* retrieve the element */ - ElementsRegister.Entry element = er.getEntryByUL(child.getItem()); - - if (element == null) { - - RegisterEvent evt = new RegisterEvent( - EventKind.UNKNOWN_ELEMENT, - String.format( - "Undefined Element %s for Group %s", - child.getItem(), - group.getUL() - ) - ); - - handleEvent(evthandler, evt); - - continue; - } - - pdef.setDescription(element.getDefinition()); - - pdef.setName(element.getName()); - - pdef.setSymbol(element.getSymbol()); - - if (element.getTypeUL() == null) { - - RegisterEvent evt = new RegisterEvent( - EventKind.UNKNOWN_TYPE, - String.format( - "Missing Type UL at Element %s for Group %s", - child.getItem(), - group.getUL() - ) - ); - - handleEvent(evthandler, evt); - - continue; - } - - pdef.setType(new AUID(element.getTypeUL())); - - pdef.setMemberOf(cdef.getIdentification()); - - pdef.setNamespace(element.getNamespaceName()); - - _add(defs, pdef); - - } - - _add(defs, cdef); - - } - - /* Handle Types Entries */ - for (com.sandflow.smpte.register.TypesRegister.Entry type : tr.getEntries()) { - if (!type.getKind().equals(com.sandflow.smpte.register.TypesRegister.Entry.Kind.LEAF)) { - continue; - } - - Definition tdef = null; - - HashSet references = new HashSet<>(); - - if (com.sandflow.smpte.register.TypesRegister.Entry.RENAME_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new RenameTypeDefinition(); - - ((RenameTypeDefinition) tdef).setRenamedType(new AUID(type.getBaseType())); - - references.add(((RenameTypeDefinition) tdef).getRenamedType()); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.INTEGER_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new IntegerTypeDefinition(); - - ((IntegerTypeDefinition) tdef).setSigned(type.getTypeQualifiers().contains(com.sandflow.smpte.register.TypesRegister.Entry.TypeQualifiers.isSigned)); - - switch (type.getTypeSize().intValue()) { - case 1: - ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.ONE); - break; - case 2: - ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.TWO); - break; - case 4: - ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.FOUR); - break; - case 8: - ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.EIGHT); - break; - default: - throw new Exception("Illegal Type Size."); - - } - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.FLOAT_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new FloatTypeDefinition(); - - switch (type.getTypeSize().intValue()) { - case 2: - ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.HALF); - break; - case 4: - ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.SINGLE); - break; - case 8: - ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.DOUBLE); - break; - default: - throw new Exception("Illegal Type Size."); - - } - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.LENSSERIALFLOAT_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new LensSerialFloatTypeDefinition(); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.RECORD_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new RecordTypeDefinition(); - - for (com.sandflow.smpte.register.TypesRegister.Entry.Facet tchild : type.getFacets()) { - Member m = new Member(); - - m.setName(tchild.getSymbol()); - m.setType(new AUID(tchild.getType())); - - ((RecordTypeDefinition) tdef).addMember(m); - - references.add(m.getType()); - } - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.FIXEDARRAY_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new FixedArrayTypeDefinition(); - - ((FixedArrayTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); - - ((FixedArrayTypeDefinition) tdef).setElementCount(type.getTypeSize().intValue()); - - references.add(((FixedArrayTypeDefinition) tdef).getElementType()); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.ARRAY_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new VariableArrayTypeDefinition(); - ((VariableArrayTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); - - references.add(((VariableArrayTypeDefinition) tdef).getElementType()); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.SET_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new SetTypeDefinition(); - ((SetTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); - - references.add(((SetTypeDefinition) tdef).getElementType()); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.INDIRECT_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new IndirectTypeDefinition(); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.OPAQUE_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new OpaqueTypeDefinition(); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.STREAM_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new StreamTypeDefinition(); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.WEAKREF_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new WeakReferenceTypeDefinition(); - - if (type.getBaseType() == null) { - throw new Exception( - String.format( - "Missing base type for Type %s", - type.getUL() - ) - ); - } - - ((WeakReferenceTypeDefinition) tdef).setReferencedType(new AUID(type.getBaseType())); - - references.add(((WeakReferenceTypeDefinition) tdef).getReferencedType()); - - for (TypesRegister.Entry.Facet f : type.getFacets()) { - - UL ul = null; - - if (f.getValue() != null) { - ul = UL.fromURN(f.getValue()); - } - - if (ul == null) { - - RegisterEvent evt = new RegisterEvent( - EventKind.UNKNOWN_TARGET_SET, - String.format( - "Missing Target Set UL at Type %s", - type.getUL().toString() - ) - ); - - handleEvent(evthandler, evt); - - continue; - } - - if (!((WeakReferenceTypeDefinition) tdef).getTargetSet().add(new AUID(ul))) { - - RegisterEvent evt = new RegisterEvent( - EventKind.DUP_TARGET_SET, - String.format( - "Duplicate Target Set UL at Type %s", - type.getUL().toString() - ) - ); - - handleEvent(evthandler, evt); - - } - - references.add(new AUID(ul)); - } - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.STRONGREF_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new StrongReferenceTypeDefinition(); - - ((StrongReferenceTypeDefinition) tdef).setReferenceType(new AUID(type.getBaseType())); - - references.add(((StrongReferenceTypeDefinition) tdef).getReferenceType()); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.ENUMERATION_TYPEKIND.equals(type.getTypeKind())) { - - if (type.getBaseType().equals(UL.fromURN("urn:smpte:ul:060E2B34.01040101.01030100.00000000"))) { - - ArrayList ecelems = new ArrayList<>(); - - /* NOTE: Facets of Extendible Enumeration Definitions are not imported since - * they are, by definition, extendible. In other words, Extendible - * Enumeration instance are expected to handle UL values that are not - * listed in the register. - */ - /* - for (Facet f : type.getFacets()) { - ExtendibleEnumerationTypeDefinition.Element m = new ExtendibleEnumerationTypeDefinition.Element(); - - m.setValue(new AUID(f.getUL())); - - ecelems.add(m); - }*/ - tdef = new ExtendibleEnumerationTypeDefinition(ecelems); - - } else { - - ArrayList celems = new ArrayList<>(); - - for (TypesRegister.Entry.Facet f : type.getFacets()) { - EnumerationTypeDefinition.Element m = new EnumerationTypeDefinition.Element(); - - m.setName(f.getSymbol()); - m.setValue(Integer.decode(f.getValue())); - - celems.add(m); - } - - tdef = new EnumerationTypeDefinition(celems); - - ((EnumerationTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); - - references.add(((EnumerationTypeDefinition) tdef).getElementType()); - } - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.CHARACTER_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new CharacterTypeDefinition(); - - } else if (com.sandflow.smpte.register.TypesRegister.Entry.STRING_TYPEKIND.equals(type.getTypeKind())) { - - tdef = new StringTypeDefinition(); - - ((StringTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); - - references.add(((StringTypeDefinition) tdef).getElementType()); - - } else { - - RegisterEvent evt = new RegisterEvent( - EventKind.UNKNOWN_TYPE_KIND, - String.format( - "Unknown type kind of %s for Type UL %s.", - type.getTypeKind(), - type.getUL().toString() - ) - ); - - handleEvent(evthandler, evt); - - continue; - } - - if (tdef != null) { - - tdef.setIdentification(new AUID(type.getUL())); - tdef.setSymbol(type.getSymbol()); - tdef.setName(type.getName()); - tdef.setDescription(type.getDefinition()); - tdef.setNamespace(type.getNamespaceName()); - - _add(defs, tdef); - - /* adds any entry that the entry references */ - for (AUID aref : references) { - - HashSet hs = isReferencedBy.get(aref); - - if (hs == null) { - - hs = new HashSet<>(); - - isReferencedBy.put(aref, hs); - - } - - hs.add(tdef.getIdentification()); - } - - } else { - - RegisterEvent evt = new RegisterEvent( - EventKind.TYPE_IMPORT_FAILED, - String.format( - "Type UL %s import failed", - type.getUL().toString() - ) - ); - - handleEvent(evthandler, evt); - - } - } - - /* prune all dangling entries */ - for (AUID aref : isReferencedBy.keySet()) { - - if (!defs.containsKey(aref)) { - - /* if the referenced entry does not exist prune all entries that - reference it, directly or indirectly */ - _prune(defs, isReferencedBy, aref); - - } - - } - - /* create the metadictionaries */ - MetaDictionaryCollection mds = new MetaDictionaryCollection(); - - long index = 0; - - for (ArrayList defarray : defs.values()) { - - for (Definition def : defarray) { - - try { - mds.addDefinition(def); - } catch (DuplicateSymbolException dse) { - - /* attempt to generate an ad hoc symbol instead of dying */ - String newsym = "dup" + def.getSymbol() + (index++); - - RegisterEvent evt = new RegisterEvent( - EventKind.DUPLICATE_SYMBOL, - String.format( - "Duplicate symbol %s (%s) renamed %s", - def.getSymbol(), - def.getNamespace().toASCIIString(), - newsym - ) - ); - - handleEvent(evthandler, evt); - - def.setSymbol(newsym); - - mds.addDefinition(def); - } - } - } - - return mds; - - } - - private static void _add(Map> defs, Definition def) { - ArrayList ad = defs.get(def.getIdentification()); - - if (ad == null) { - ad = new ArrayList<>(); - defs.put(def.getIdentification(), ad); - } - - ad.add(def); - - } - - private static void _prune(Map> defs, - HashMap> isReferencedBy, - AUID aref) { - - if (isReferencedBy.containsKey(aref)) { - - for (AUID entry : isReferencedBy.get(aref)) { - - _prune(defs, isReferencedBy, entry); - - } - - } - - defs.remove(aref); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml.dict.importers; + +import com.sandflow.smpte.register.ElementsRegister; +import com.sandflow.smpte.register.GroupsRegister; +import com.sandflow.smpte.register.TypesRegister; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import com.sandflow.smpte.regxml.dict.definitions.CharacterTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ClassDefinition; +import com.sandflow.smpte.regxml.dict.definitions.Definition; +import com.sandflow.smpte.regxml.dict.definitions.EnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.ExtendibleEnumerationTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FixedArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.FloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IndirectTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.IntegerTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.LensSerialFloatTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.OpaqueTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyAliasDefinition; +import com.sandflow.smpte.regxml.dict.definitions.PropertyDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.RecordTypeDefinition.Member; +import com.sandflow.smpte.regxml.dict.definitions.RenameTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.SetTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StreamTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StringTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.StrongReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.VariableArrayTypeDefinition; +import com.sandflow.smpte.regxml.dict.definitions.WeakReferenceTypeDefinition; +import com.sandflow.smpte.regxml.dict.exceptions.DuplicateSymbolException; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.logging.Logger; + +/** + * Generates MetaDictionaries from SMPTE Metadata Registers. + */ +public class RegisterImporter { + + private final static Logger LOGGER = Logger.getLogger(RegisterImporter.class.getName()); + + /** + * Defines all events raised by the class + */ + public static enum EventKind { + + /** + * Element definition cannot be found + */ + UNKNOWN_ELEMENT(Event.Severity.WARN), + /** + * Type definition cannot be found. + */ + UNKNOWN_TYPE(Event.Severity.WARN), + /** + * Weak Reference Target Set cannot be found. + */ + UNKNOWN_TARGET_SET(Event.Severity.WARN), + /** + * Weak Reference Target Set duplicated + */ + DUP_TARGET_SET(Event.Severity.WARN), + /** + * Unknown type kind encountered. + */ + UNKNOWN_TYPE_KIND(Event.Severity.ERROR), + /** + * Type Definition import failed + */ + TYPE_IMPORT_FAILED(Event.Severity.ERROR), + /** + * Duplicate symbol found + */ + DUPLICATE_SYMBOL(Event.Severity.ERROR), + /** + * Enumeration Base Type is not permitted + */ + BAD_ENUM_TYPE(Event.Severity.ERROR); + + public final Event.Severity severity; + + private EventKind(Event.Severity severity) { + this.severity = severity; + } + + } + + /** + * All events raised by this class are instances of this class + */ + public static class RegisterEvent extends com.sandflow.util.events.BasicEvent { + + public RegisterEvent(EventKind kind, String message) { + super(kind.severity, kind, message); + } + + } + + static void handleEvent(EventHandler handler, com.sandflow.util.events.Event evt) throws Exception { + + if (handler != null) { + + if (!handler.handle(evt) + || evt.getSeverity() == Event.Severity.FATAL) { + + /* die on FATAL events or if requested by the handler */ + throw new Exception(evt.getMessage()); + + } + + } else if (evt.getSeverity() == Event.Severity.ERROR + || evt.getSeverity() == Event.Severity.FATAL) { + + /* if no event handler was provided, die on FATAL and ERROR events */ + throw new Exception(evt.getMessage()); + + } + } + + /** + * @deprecated Replaced by {@link MetaDictionaryCollection fromRegister(TypesRegister, + * GroupsRegister,ElementsRegister,EventHandler)}. This constructor does not + * allow the caller to provide an event handler, and instead uses + * java.util.logging to output events. + * + * @param tr Types Register + * @param gr Groups Register + * @param er Elements Register + * + * @return Collection of Metadictionaries + * + * @throws Exception + */ + public static MetaDictionaryCollection fromRegister(TypesRegister tr, + GroupsRegister gr, + ElementsRegister er + ) throws Exception { + + EventHandler handler = new EventHandler() { + + @Override + public boolean handle(com.sandflow.util.events.Event evt) { + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOGGER.severe(evt.getMessage()); + break; + case INFO: + LOGGER.info(evt.getMessage()); + break; + case WARN: + LOGGER.warning(evt.getMessage()); + } + + return true; + } + }; + + return fromRegister(tr, gr, er, handler); + } + + /** + * Generates MetaDictionaries from SMPTE Types, Groups and Elements + * Registers. + * + * @param tr Types Register + * @param gr Groups Register + * @param er Elements Register + * @param evthandler Event Handler. May be null. + * + * @return Collection of Metadictionaries + * + * @throws Exception + */ + public static MetaDictionaryCollection fromRegister(TypesRegister tr, + GroupsRegister gr, + ElementsRegister er, + EventHandler evthandler + ) throws Exception { + + /* definition collection */ + LinkedHashMap> defs = new LinkedHashMap<>(); + + /* some types may refer to groups that have been excluded since they + did not have a local set representation. This variable keep track of + references in order to prune dangling references later */ + HashMap> isReferencedBy = new HashMap<>(); + + /* Handles Group Entries */ + for (GroupsRegister.Entry group : gr.getEntries()) { + + if (group.getKind().equals(GroupsRegister.Entry.Kind.NODE)) { + continue; + } + + /* Skip class 15 */ + if (group.getUL().isClass15()) { + continue; + } + + /* Skip groups that do not have a local set representation locat set groups */ + if (!group.getKlvSyntax().contains((byte) 0x53)) { + continue; + } + + ClassDefinition cdef = new ClassDefinition(); + + if (group.isConcrete() != null) { + cdef.setConcrete(group.isConcrete()); + } else { + cdef.setConcrete(true); + } + + cdef.setDescription(group.getDefinition()); + + cdef.setName(group.getName()); + + cdef.setSymbol(group.getSymbol()); + + cdef.setNamespace(group.getNamespaceName()); + + if (group.getParent() != null) { + cdef.setParentClass(new AUID(group.getParent())); + } + + cdef.setIdentification(new AUID(group.getUL())); + + for (GroupsRegister.Entry.Record child : group.getContents()) { + + AUID id = new AUID(child.getItem()); + + PropertyDefinition pdef = null; + + if (defs.containsKey(id)) { + + /* if the property has already been added, e.g. BodySID, create an alias */ + PropertyAliasDefinition padef = new PropertyAliasDefinition(); + + padef.setOriginalProperty(id); + + pdef = padef; + + } else { + + pdef = new PropertyDefinition(); + + } + + pdef.setIdentification(id); + pdef.setOptional(child.getOptional()); + + if (child.getUniqueID() != null) { + pdef.setUniqueIdentifier(child.getUniqueID()); + } + pdef.setLocalIdentification((int) (child.getLocalTag() == null ? 0 : child.getLocalTag())); + + /* retrieve the element */ + ElementsRegister.Entry element = er.getEntryByUL(child.getItem()); + + if (element == null) { + + RegisterEvent evt = new RegisterEvent( + EventKind.UNKNOWN_ELEMENT, + String.format( + "Undefined Element %s for Group %s", + child.getItem(), + group.getUL() + ) + ); + + handleEvent(evthandler, evt); + + continue; + } + + pdef.setDescription(element.getDefinition()); + + pdef.setName(element.getName()); + + pdef.setSymbol(element.getSymbol()); + + if (element.getTypeUL() == null) { + + RegisterEvent evt = new RegisterEvent( + EventKind.UNKNOWN_TYPE, + String.format( + "Missing Type UL at Element %s for Group %s", + child.getItem(), + group.getUL() + ) + ); + + handleEvent(evthandler, evt); + + continue; + } + + pdef.setType(new AUID(element.getTypeUL())); + + pdef.setMemberOf(cdef.getIdentification()); + + pdef.setNamespace(element.getNamespaceName()); + + _add(defs, pdef); + + /* register the property's type as referenced by the property definition */ + HashSet hs = isReferencedBy.get(pdef.getType()); + + if (hs == null) { + + hs = new HashSet<>(); + + isReferencedBy.put(pdef.getType(), hs); + + } + + hs.add(pdef.getIdentification()); + + } + + _add(defs, cdef); + + } + + /* Handle Types Entries */ + for (com.sandflow.smpte.register.TypesRegister.Entry type : tr.getEntries()) { + if (!type.getKind().equals(com.sandflow.smpte.register.TypesRegister.Entry.Kind.LEAF)) { + continue; + } + + Definition tdef = null; + + HashSet references = new HashSet<>(); + + if (com.sandflow.smpte.register.TypesRegister.Entry.RENAME_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new RenameTypeDefinition(); + + ((RenameTypeDefinition) tdef).setRenamedType(new AUID(type.getBaseType())); + + references.add(((RenameTypeDefinition) tdef).getRenamedType()); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.INTEGER_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new IntegerTypeDefinition(); + + ((IntegerTypeDefinition) tdef).setSigned(type.getTypeQualifiers().contains(com.sandflow.smpte.register.TypesRegister.Entry.TypeQualifiers.isSigned)); + + switch (type.getTypeSize().intValue()) { + case 1: + ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.ONE); + break; + case 2: + ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.TWO); + break; + case 4: + ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.FOUR); + break; + case 8: + ((IntegerTypeDefinition) tdef).setSize(IntegerTypeDefinition.Size.EIGHT); + break; + default: + throw new Exception("Illegal Type Size."); + + } + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.FLOAT_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new FloatTypeDefinition(); + + switch (type.getTypeSize().intValue()) { + case 2: + ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.HALF); + break; + case 4: + ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.SINGLE); + break; + case 8: + ((FloatTypeDefinition) tdef).setSize(FloatTypeDefinition.Size.DOUBLE); + break; + default: + throw new Exception("Illegal Type Size."); + + } + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.LENSSERIALFLOAT_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new LensSerialFloatTypeDefinition(); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.RECORD_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new RecordTypeDefinition(); + + for (com.sandflow.smpte.register.TypesRegister.Entry.Facet tchild : type.getFacets()) { + Member m = new Member(); + + m.setName(tchild.getSymbol()); + m.setType(new AUID(tchild.getType())); + + ((RecordTypeDefinition) tdef).addMember(m); + + references.add(m.getType()); + } + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.FIXEDARRAY_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new FixedArrayTypeDefinition(); + + ((FixedArrayTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); + + ((FixedArrayTypeDefinition) tdef).setElementCount(type.getTypeSize().intValue()); + + references.add(((FixedArrayTypeDefinition) tdef).getElementType()); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.ARRAY_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new VariableArrayTypeDefinition(); + ((VariableArrayTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); + + references.add(((VariableArrayTypeDefinition) tdef).getElementType()); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.SET_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new SetTypeDefinition(); + ((SetTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); + + references.add(((SetTypeDefinition) tdef).getElementType()); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.INDIRECT_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new IndirectTypeDefinition(); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.OPAQUE_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new OpaqueTypeDefinition(); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.STREAM_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new StreamTypeDefinition(); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.WEAKREF_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new WeakReferenceTypeDefinition(); + + if (type.getBaseType() == null) { + throw new Exception( + String.format( + "Missing base type for Type %s", + type.getUL() + ) + ); + } + + ((WeakReferenceTypeDefinition) tdef).setReferencedType(new AUID(type.getBaseType())); + + references.add(((WeakReferenceTypeDefinition) tdef).getReferencedType()); + + for (TypesRegister.Entry.Facet f : type.getFacets()) { + + UL ul = null; + + if (f.getValue() != null) { + ul = UL.fromURN(f.getValue()); + } + + if (ul == null) { + + RegisterEvent evt = new RegisterEvent( + EventKind.UNKNOWN_TARGET_SET, + String.format( + "Missing Target Set UL at Type %s", + type.getUL().toString() + ) + ); + + handleEvent(evthandler, evt); + + continue; + } + + if (!((WeakReferenceTypeDefinition) tdef).getTargetSet().add(new AUID(ul))) { + + RegisterEvent evt = new RegisterEvent( + EventKind.DUP_TARGET_SET, + String.format( + "Duplicate Target Set UL at Type %s", + type.getUL().toString() + ) + ); + + handleEvent(evthandler, evt); + + } + + references.add(new AUID(ul)); + } + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.STRONGREF_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new StrongReferenceTypeDefinition(); + + ((StrongReferenceTypeDefinition) tdef).setReferenceType(new AUID(type.getBaseType())); + + references.add(((StrongReferenceTypeDefinition) tdef).getReferencedType()); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.ENUMERATION_TYPEKIND.equals(type.getTypeKind())) { + + if (type.getBaseType().equals(UL.fromURN("urn:smpte:ul:060E2B34.01040101.01030100.00000000"))) { + + ArrayList ecelems = new ArrayList<>(); + + /* NOTE: Facets of Extendible Enumeration Definitions are not imported since + * they are, by definition, extendible. In other words, Extendible + * Enumeration instance are expected to handle UL values that are not + * listed in the register. + */ + /* + for (Facet f : type.getFacets()) { + ExtendibleEnumerationTypeDefinition.Element m = new ExtendibleEnumerationTypeDefinition.Element(); + + m.setValue(new AUID(f.getUL())); + + ecelems.add(m); + }*/ + tdef = new ExtendibleEnumerationTypeDefinition(ecelems); + + } else if (type.getBaseType().equalsWithMask(UL.fromURN("urn:smpte:ul:060e2b34.01040101.01010000.00000000"), 0b1111111111000000)) { + + ArrayList celems = new ArrayList<>(); + + for (TypesRegister.Entry.Facet f : type.getFacets()) { + EnumerationTypeDefinition.Element m = new EnumerationTypeDefinition.Element(); + + m.setName(f.getSymbol()); + m.setValue(Integer.decode(f.getValue())); + + celems.add(m); + } + + tdef = new EnumerationTypeDefinition(celems); + + ((EnumerationTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); + + references.add(((EnumerationTypeDefinition) tdef).getElementType()); + + } else { + + RegisterEvent evt = new RegisterEvent( + EventKind.BAD_ENUM_TYPE, + String.format( + "Enumeration base type %s is neither integer nor AUID for Type UL %s.", + type.getBaseType(), + type.getUL().toString() + ) + ); + + handleEvent(evthandler, evt); + + continue; + } + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.CHARACTER_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new CharacterTypeDefinition(); + + } else if (com.sandflow.smpte.register.TypesRegister.Entry.STRING_TYPEKIND.equals(type.getTypeKind())) { + + tdef = new StringTypeDefinition(); + + ((StringTypeDefinition) tdef).setElementType(new AUID(type.getBaseType())); + + references.add(((StringTypeDefinition) tdef).getElementType()); + + } else { + + RegisterEvent evt = new RegisterEvent( + EventKind.UNKNOWN_TYPE_KIND, + String.format( + "Unknown type kind of %s for Type UL %s.", + type.getTypeKind(), + type.getUL().toString() + ) + ); + + handleEvent(evthandler, evt); + + continue; + } + + if (tdef != null) { + + tdef.setIdentification(new AUID(type.getUL())); + tdef.setSymbol(type.getSymbol()); + tdef.setName(type.getName()); + tdef.setDescription(type.getDefinition()); + tdef.setNamespace(type.getNamespaceName()); + + _add(defs, tdef); + + /* adds any entry that the entry references */ + for (AUID aref : references) { + + HashSet hs = isReferencedBy.get(aref); + + if (hs == null) { + + hs = new HashSet<>(); + + isReferencedBy.put(aref, hs); + + } + + hs.add(tdef.getIdentification()); + } + + } else { + + RegisterEvent evt = new RegisterEvent( + EventKind.TYPE_IMPORT_FAILED, + String.format( + "Type UL %s import failed", + type.getUL().toString() + ) + ); + + handleEvent(evthandler, evt); + + } + } + + /* prune all dangling entries */ + for (AUID aref : isReferencedBy.keySet()) { + + if (!defs.containsKey(aref)) { + + /* if the referenced entry does not exist prune all entries that + reference it, directly or indirectly */ + _prune(defs, isReferencedBy, aref); + + } + + } + + /* create the metadictionaries */ + MetaDictionaryCollection mds = new MetaDictionaryCollection(); + + long index = 0; + + for (ArrayList defarray : defs.values()) { + + for (Definition def : defarray) { + + try { + mds.addDefinition(def); + } catch (DuplicateSymbolException dse) { + + /* attempt to generate an ad hoc symbol instead of dying */ + String newsym = "dup" + def.getSymbol() + (index++); + + RegisterEvent evt = new RegisterEvent( + EventKind.DUPLICATE_SYMBOL, + String.format( + "Duplicate symbol %s (%s) renamed %s", + def.getSymbol(), + def.getNamespace().toASCIIString(), + newsym + ) + ); + + handleEvent(evthandler, evt); + + def.setSymbol(newsym); + + mds.addDefinition(def); + } + } + } + + return mds; + + } + + private static void _add(Map> defs, Definition def) { + ArrayList ad = defs.get(def.getIdentification()); + + if (ad == null) { + ad = new ArrayList<>(); + defs.put(def.getIdentification(), ad); + } + + ad.add(def); + + } + + private static void _prune(Map> defs, + HashMap> isReferencedBy, + AUID aref) { + + if (isReferencedBy.containsKey(aref)) { + + for (AUID entry : isReferencedBy.get(aref)) { + + _prune(defs, isReferencedBy, entry); + + } + + } + + defs.remove(aref); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/package-info.java b/src/main/java/com/sandflow/smpte/regxml/dict/package-info.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/package-info.java rename to src/main/java/com/sandflow/smpte/regxml/dict/package-info.java index db73f75..2c59c22 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/regxml/dict/package-info.java +++ b/src/main/java/com/sandflow/smpte/regxml/dict/package-info.java @@ -1,41 +1,41 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Classes for the manipulation of MetaDictionaries structures as specified in SMPTE ST 2001-1 - */ -@XmlSchema( - namespace = MetaDictionary.XML_NS, - xmlns = { - @XmlNs(prefix = "", namespaceURI = MetaDictionary.XML_NS) - }, - elementFormDefault=XmlNsForm.QUALIFIED) -package com.sandflow.smpte.regxml.dict; - -import javax.xml.bind.annotation.XmlNs; -import javax.xml.bind.annotation.XmlNsForm; -import javax.xml.bind.annotation.XmlSchema; - +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Classes for the manipulation of MetaDictionaries structures as specified in SMPTE ST 2001-1 + */ +@XmlSchema( + namespace = MetaDictionary.XML_NS, + xmlns = { + @XmlNs(prefix = "", namespaceURI = MetaDictionary.XML_NS) + }, + elementFormDefault=XmlNsForm.QUALIFIED) +package com.sandflow.smpte.regxml.dict; + +import javax.xml.bind.annotation.XmlNs; +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; + diff --git a/regxmllib/src/main/java/com/sandflow/smpte/regxml/package-info.java b/src/main/java/com/sandflow/smpte/regxml/package-info.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/smpte/regxml/package-info.java rename to src/main/java/com/sandflow/smpte/regxml/package-info.java diff --git a/regxmllib/src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java b/src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java rename to src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java index 8fc847c..5b106ee 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java +++ b/src/main/java/com/sandflow/smpte/tools/BuildVersionSingleton.java @@ -1,80 +1,80 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.tools; - -import java.io.IOException; -import java.io.InputStream; -import java.util.Properties; - -/** - * Retrieves a string that uniquely identifies the current build of the - * underlying source code of regxmllib. Currently looks for build version at the - * 'version' property in the /config/repoversion.properties resource. - */ -public class BuildVersionSingleton { - - private static final String BUILD_VERSION_PROPFILE = "/config/repoversion.properties"; - private static final String BUILD_VERSION_PROPNAME = "version"; - private static final String DEFAULT_BUILD_VERSION = "n/a"; - - private static final BuildVersionSingleton INSTANCE = new BuildVersionSingleton(); - - /** - * @return Uniquely identifies the current build of the underlying source - * code of regxmllib - */ - public static String getBuildVersion() { - return INSTANCE.buildVersion; - } - private String buildVersion = DEFAULT_BUILD_VERSION; - - private BuildVersionSingleton() { - - try { - - Properties prop = new Properties(); - InputStream in = getClass().getResourceAsStream(BUILD_VERSION_PROPFILE); - - if (in != null) { - - prop.load(in); - - String bv = prop.getProperty(BUILD_VERSION_PROPNAME); - - if (bv != null) { - buildVersion = bv; - } - - in.close(); - - } - - } catch (IOException e) { - // ignore missing resources - } - - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; + +/** + * Retrieves a string that uniquely identifies the current build of the + * underlying source code of regxmllib. Currently looks for build version at the + * 'version' property in the /config/repoversion.properties resource. + */ +public class BuildVersionSingleton { + + private static final String BUILD_VERSION_PROPFILE = "/config/repoversion.properties"; + private static final String BUILD_VERSION_PROPNAME = "version"; + private static final String DEFAULT_BUILD_VERSION = "n/a"; + + private static final BuildVersionSingleton INSTANCE = new BuildVersionSingleton(); + + /** + * @return Uniquely identifies the current build of the underlying source + * code of regxmllib + */ + public static String getBuildVersion() { + return INSTANCE.buildVersion; + } + private String buildVersion = DEFAULT_BUILD_VERSION; + + private BuildVersionSingleton() { + + try { + + Properties prop = new Properties(); + InputStream in = getClass().getResourceAsStream(BUILD_VERSION_PROPFILE); + + if (in != null) { + + prop.load(in); + + String bv = prop.getProperty(BUILD_VERSION_PROPNAME); + + if (bv != null) { + buildVersion = bv; + } + + in.close(); + + } + + } catch (IOException e) { + // ignore missing resources + } + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java b/src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java rename to src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java index 53c1fdf..d954a39 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java +++ b/src/main/java/com/sandflow/smpte/tools/GenerateDictionaryXMLSchema.java @@ -1,205 +1,205 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.tools; - -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.regxml.FragmentBuilder; -import com.sandflow.smpte.regxml.XMLSchemaBuilder; -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; -import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; -import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.io.EOFException; -import java.io.File; -import java.io.FileReader; -import java.io.IOException; -import java.io.InputStream; -import java.nio.file.Files; -import java.nio.file.Paths; -import java.nio.file.StandardCopyOption; -import java.util.Date; -import java.util.logging.Logger; -import javax.xml.bind.JAXBException; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.parsers.ParserConfigurationException; -import javax.xml.transform.OutputKeys; -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerException; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.dom.DOMSource; -import javax.xml.transform.stream.StreamResult; -import org.w3c.dom.Document; -import org.w3c.dom.Element; - -/** - * - * @author Pierre-Anthony Lemieux (pal@sandflow.com) - */ -public class GenerateDictionaryXMLSchema { - - private final static Logger LOG = Logger.getLogger(GenerateDictionaryXMLSchema.class.getName()); - - protected final static String USAGE = "Generate XML Schema for RegXML Metadictionaries.\n" - + " Usage:\n" - + " GenerateDictionaryXMLSchema -d regxmldictionary1 regxmldictionary2 regxmldictionary3 ... -o outputdir\n" - + " GenerateDictionaryXMLSchema -?\n"; - - private final static String XMLSCHEMA_NS = "http://www.w3.org/2001/XMLSchema"; - - /** - * Usage is specified at {@link #USAGE} - */ - public static void main(String[] args) throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { - - if (args.length < 4 - || "-?".equals(args[0]) - || (!"-d".equals(args[0])) - || (!"-o".equals(args[args.length - 2]))) { - - System.out.println(USAGE); - - return; - } - - /* load the metadictionaries */ - MetaDictionaryCollection mds = new MetaDictionaryCollection(); - - for (int i = 1; i < args.length - 2; i++) { - - /* load the regxml metadictionary */ - FileReader fr = new FileReader(args[i]); - - MetaDictionary md = MetaDictionary.fromXML(fr); - - /* add it to the dictionary group */ - mds.addDictionary(md); - - } - - - /* generate a schema document that includes all registers */ - Document masterxsd = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); - - Element masterxsd_root = masterxsd.createElementNS(XMLSCHEMA_NS, "schema"); - - masterxsd.appendChild(masterxsd_root); - - /* generate the common xsd declarations */ - InputStream regis = GenerateDictionaryXMLSchema.class.getResourceAsStream("/resources/reg.xsd"); - - Files.copy(regis, Paths.get(args[args.length - 1], "reg.xsd"), StandardCopyOption.REPLACE_EXISTING); - - Element masterxsd_import = masterxsd.createElementNS(XMLSCHEMA_NS, "import"); - - masterxsd_import.setAttribute("namespace", XMLSchemaBuilder.REGXML_NS); - - masterxsd_import.setAttribute("schemaLocation", "reg.xsd"); - - masterxsd_root.appendChild(masterxsd_import); - - /* create transformer to ouput a concrete representation of our DOMs */ - Transformer tr = TransformerFactory.newInstance().newTransformer(); - tr.setOutputProperty(OutputKeys.INDENT, "yes"); - - - /* create the fragment builder */ - XMLSchemaBuilder sb = new XMLSchemaBuilder( - mds, - new EventHandler() { - - @Override - public boolean handle(Event evt) { - String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); - - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(msg); - break; - case INFO: - LOG.info(msg); - break; - case WARN: - LOG.warning(msg); - break; - } - return true; - } - } - ); - - for (MetaDictionary md : mds.getDictionaries()) { - - String fname = (md.getSchemeURI().getAuthority() + md.getSchemeURI().getPath()).replaceAll("[^a-zA-Z0-9]", "-") - + ".xsd"; - - /* add to master include xsd */ - masterxsd_import = masterxsd.createElementNS(XMLSCHEMA_NS, "import"); - - masterxsd_import.setAttribute("namespace", md.getSchemeURI().toString()); - - masterxsd_import.setAttribute("schemaLocation", fname); - - masterxsd_root.appendChild(masterxsd_import); - - /* create the XSD file */ - File f = new File(args[args.length - 1], fname); - - Document doc = sb.fromDictionary(md); - - /* date and build version */ - Date now = new java.util.Date(); - doc.insertBefore( - doc.createComment("Created: " + now.toString()), - doc.getDocumentElement() - ); - doc.insertBefore( - doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion()), - doc.getDocumentElement() - ); - doc.insertBefore( - doc.createComment("See: https://github.com/sandflow/regxmllib"), - doc.getDocumentElement() - ); - - tr.transform( - new DOMSource(doc), - new StreamResult(f) - ); - - } - - File includefile = new File(args[args.length - 1], "include.xsd"); - - tr.transform(new DOMSource(masterxsd), - new StreamResult(includefile) - ); - - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.regxml.FragmentBuilder; +import com.sandflow.smpte.regxml.XMLSchemaBuilder; +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.io.EOFException; +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.nio.file.StandardCopyOption; +import java.util.Date; +import java.util.logging.Logger; +import javax.xml.bind.JAXBException; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerException; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamResult; +import org.w3c.dom.Document; +import org.w3c.dom.Element; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class GenerateDictionaryXMLSchema { + + private final static Logger LOG = Logger.getLogger(GenerateDictionaryXMLSchema.class.getName()); + + protected final static String USAGE = "Generate XML Schema for RegXML Metadictionaries.\n" + + " Usage:\n" + + " GenerateDictionaryXMLSchema -d regxmldictionary1 regxmldictionary2 regxmldictionary3 ... -o outputdir\n" + + " GenerateDictionaryXMLSchema -?\n"; + + private final static String XMLSCHEMA_NS = "http://www.w3.org/2001/XMLSchema"; + + /** + * Usage is specified at {@link #USAGE} + */ + public static void main(String[] args) throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + if (args.length < 4 + || "-?".equals(args[0]) + || (!"-d".equals(args[0])) + || (!"-o".equals(args[args.length - 2]))) { + + System.out.println(USAGE); + + return; + } + + /* load the metadictionaries */ + MetaDictionaryCollection mds = new MetaDictionaryCollection(); + + for (int i = 1; i < args.length - 2; i++) { + + /* load the regxml metadictionary */ + FileReader fr = new FileReader(args[i]); + + MetaDictionary md = MetaDictionary.fromXML(fr); + + /* add it to the dictionary group */ + mds.addDictionary(md); + + } + + + /* generate a schema document that includes all registers */ + Document masterxsd = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument(); + + Element masterxsd_root = masterxsd.createElementNS(XMLSCHEMA_NS, "schema"); + + masterxsd.appendChild(masterxsd_root); + + /* generate the common xsd declarations */ + InputStream regis = GenerateDictionaryXMLSchema.class.getResourceAsStream("/resources/reg.xsd"); + + Files.copy(regis, Paths.get(args[args.length - 1], "reg.xsd"), StandardCopyOption.REPLACE_EXISTING); + + Element masterxsd_import = masterxsd.createElementNS(XMLSCHEMA_NS, "import"); + + masterxsd_import.setAttribute("namespace", XMLSchemaBuilder.REGXML_NS); + + masterxsd_import.setAttribute("schemaLocation", "reg.xsd"); + + masterxsd_root.appendChild(masterxsd_import); + + /* create transformer to ouput a concrete representation of our DOMs */ + Transformer tr = TransformerFactory.newInstance().newTransformer(); + tr.setOutputProperty(OutputKeys.INDENT, "yes"); + + + /* create the fragment builder */ + XMLSchemaBuilder sb = new XMLSchemaBuilder( + mds, + new EventHandler() { + + @Override + public boolean handle(Event evt) { + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(msg); + break; + case INFO: + LOG.info(msg); + break; + case WARN: + LOG.warning(msg); + break; + } + return true; + } + } + ); + + for (MetaDictionary md : mds.getDictionaries()) { + + String fname = (md.getSchemeURI().getAuthority() + md.getSchemeURI().getPath()).replaceAll("[^a-zA-Z0-9]", "-") + + ".xsd"; + + /* add to master include xsd */ + masterxsd_import = masterxsd.createElementNS(XMLSCHEMA_NS, "import"); + + masterxsd_import.setAttribute("namespace", md.getSchemeURI().toString()); + + masterxsd_import.setAttribute("schemaLocation", fname); + + masterxsd_root.appendChild(masterxsd_import); + + /* create the XSD file */ + File f = new File(args[args.length - 1], fname); + + Document doc = sb.fromDictionary(md); + + /* date and build version */ + Date now = new java.util.Date(); + doc.insertBefore( + doc.createComment("Created: " + now.toString()), + doc.getDocumentElement() + ); + doc.insertBefore( + doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion()), + doc.getDocumentElement() + ); + doc.insertBefore( + doc.createComment("See: https://github.com/sandflow/regxmllib"), + doc.getDocumentElement() + ); + + tr.transform( + new DOMSource(doc), + new StreamResult(f) + ); + + } + + File includefile = new File(args[args.length - 1], "include.xsd"); + + tr.transform(new DOMSource(masterxsd), + new StreamResult(includefile) + ); + + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java b/src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java rename to src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java index 0f74517..352720e 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java +++ b/src/main/java/com/sandflow/smpte/tools/GenerateXMLSchemaDocuments.java @@ -1,109 +1,109 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.tools; - -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.register.exceptions.InvalidEntryException; -import java.io.File; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Date; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.SchemaOutputResolver; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.transform.OutputKeys; -import javax.xml.transform.Result; -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.dom.DOMResult; -import javax.xml.transform.dom.DOMSource; -import javax.xml.transform.stream.StreamResult; -import org.w3c.dom.Document; - -/** - * - * @author Pierre-Anthony Lemieux (pal@sandflow.com) - */ -public class GenerateXMLSchemaDocuments { - - protected final static String USAGE = "Generates XML Schema documents for JAXB-annotated classes.\n" - + " Usage: GenerateXMLSchemaDocuments -cp classpath -d outdir\n" - + " GenerateXMLSchemaDocuments -?"; - - /** - * Usage is specified at {@link #USAGE} - */ - public static void main(String[] args) throws FileNotFoundException, JAXBException, IOException, InvalidEntryException, DuplicateEntryException, Exception { - if (args.length != 4 - || "-?".equals(args[0])) { - - System.out.println(USAGE); - - return; - } - - /* NOTE: to mute logging: Logger.getLogger("").setLevel(Level.OFF); */ - - Class c = Class.forName(args[1]); - - JAXBContext ctx = JAXBContext.newInstance(c); - - File baseDir = new File(args[3]); - - final DocumentBuilder docBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); - final ArrayList docs = new ArrayList<>(); - - ctx.generateSchema(new SchemaOutputResolver() { - - @Override - public Result createOutput(String namespaceUri, String suggestedFileName) throws IOException { - Document doc = docBuilder.newDocument(); - docs.add(doc); - Date now = new java.util.Date(); - doc.appendChild(doc.createComment("Created: " + now.toString())); - doc.appendChild(doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion())); - doc.appendChild(doc.createComment("See: https://github.com/sandflow/regxmllib")); - return new DOMResult(doc, suggestedFileName); - } - }); - - Transformer tr = TransformerFactory.newInstance().newTransformer(); - - tr.setOutputProperty(OutputKeys.INDENT, "yes"); - - for (int i = 0; i < docs.size(); i++) { - - tr.transform( - new DOMSource(docs.get(i)), - new StreamResult(new File(baseDir, c.getSimpleName() + (i == 0 ? "" : "." + i) + ".xsd")) - ); - } - - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.register.exceptions.InvalidEntryException; +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Date; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.SchemaOutputResolver; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.Result; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMResult; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamResult; +import org.w3c.dom.Document; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class GenerateXMLSchemaDocuments { + + protected final static String USAGE = "Generates XML Schema documents for JAXB-annotated classes.\n" + + " Usage: GenerateXMLSchemaDocuments -cp classpath -d outdir\n" + + " GenerateXMLSchemaDocuments -?"; + + /** + * Usage is specified at {@link #USAGE} + */ + public static void main(String[] args) throws FileNotFoundException, JAXBException, IOException, InvalidEntryException, DuplicateEntryException, Exception { + if (args.length != 4 + || "-?".equals(args[0])) { + + System.out.println(USAGE); + + return; + } + + /* NOTE: to mute logging: Logger.getLogger("").setLevel(Level.OFF); */ + + Class c = Class.forName(args[1]); + + JAXBContext ctx = JAXBContext.newInstance(c); + + File baseDir = new File(args[3]); + + final DocumentBuilder docBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); + final ArrayList docs = new ArrayList<>(); + + ctx.generateSchema(new SchemaOutputResolver() { + + @Override + public Result createOutput(String namespaceUri, String suggestedFileName) throws IOException { + Document doc = docBuilder.newDocument(); + docs.add(doc); + Date now = new java.util.Date(); + doc.appendChild(doc.createComment("Created: " + now.toString())); + doc.appendChild(doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion())); + doc.appendChild(doc.createComment("See: https://github.com/sandflow/regxmllib")); + return new DOMResult(doc, suggestedFileName); + } + }); + + Transformer tr = TransformerFactory.newInstance().newTransformer(); + + tr.setOutputProperty(OutputKeys.INDENT, "yes"); + + for (int i = 0; i < docs.size(); i++) { + + tr.transform( + new DOMSource(docs.get(i)), + new StreamResult(new File(baseDir, c.getSimpleName() + (i == 0 ? "" : "." + i) + ".xsd")) + ); + } + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/tools/RegXMLDump.java b/src/main/java/com/sandflow/smpte/tools/RegXMLDump.java similarity index 91% rename from regxmllib/src/main/java/com/sandflow/smpte/tools/RegXMLDump.java rename to src/main/java/com/sandflow/smpte/tools/RegXMLDump.java index 71c9377..8a41666 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/tools/RegXMLDump.java +++ b/src/main/java/com/sandflow/smpte/tools/RegXMLDump.java @@ -1,395 +1,424 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.tools; - -import com.sandflow.smpte.mxf.MXFFiles; -import com.sandflow.smpte.register.LabelsRegister; -import com.sandflow.smpte.regxml.FragmentBuilder; -import com.sandflow.smpte.regxml.MXFFragmentBuilder; -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.UL; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.io.FileReader; -import java.io.InputStream; -import java.nio.channels.Channels; -import java.nio.channels.SeekableByteChannel; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.Date; -import java.util.logging.Logger; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.transform.OutputKeys; -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.dom.DOMSource; -import javax.xml.transform.stream.StreamResult; -import org.w3c.dom.Document; -import org.w3c.dom.DocumentFragment; - -/** - * - * @author Pierre-Anthony Lemieux (pal@sandflow.com) - */ -public class RegXMLDump { - - private final static Logger LOG = Logger.getLogger(RegXMLDump.class.getName()); - - private static final UL ESSENCE_DESCRIPTOR_KEY - = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x01, 0x01, 0x01, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x24, 0x00}); - - private static final UL PREFACE_KEY - = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); - - protected final static String USAGE = "Dump header metadata of an MXF file as a RegXML structure.\n" - + " Usage:\n" - + " RegXMLDump ( -all | -ed ) ( -header | -footer | -auto ) (-l labelsregister) -d regxmldictionary1 regxmldictionary2 regxmldictionary3 ... -i mxffile\n" - + " RegXMLDump -?\n" - + " Where:\n" - + " -all: dumps all header metadata (default)\n" - + " -ed: dumps only the first essence descriptor found\n" - + " -l labelsregister: given a SMPTE labels register, inserts the symbol of labels as XML comment\n" - + " -header: dumps metadata from the header partition (default)\n" - + " -footer: dumps metadata from the footer partition\n" - + " -auto: dumps metadata from the footer partition if available and from the header if not\n"; - - private enum TargetPartition { - HEADER, - FOOTER, - AUTO - } - - /** - * Usage is specified at {@link #USAGE} - */ - public static void main(String[] args) throws Exception { - - boolean error = false; - TargetPartition selectedpartition = null; - Boolean isEssenceDescriptorOnly = null; - MetaDictionaryCollection mds = null; - SeekableByteChannel f = null; - FileReader labelreader = null; - Path p = null; - - for (int i = 0; i < args.length;) { - - if ("-?".equals(args[i])) { - - error = true; - break; - - } else if ("-ed".equals(args[i])) { - - if (isEssenceDescriptorOnly != null) { - error = true; - break; - } - - isEssenceDescriptorOnly = true; - - i++; - - } else if ("-all".equals(args[i])) { - - if (isEssenceDescriptorOnly != null) { - error = true; - break; - - } - - isEssenceDescriptorOnly = false; - - i++; - - } else if ("-footer".equals(args[i])) { - - if (selectedpartition != null) { - error = true; - break; - } - - selectedpartition = TargetPartition.FOOTER; - - i++; - - } else if ("-auto".equals(args[i])) { - - if (selectedpartition != null) { - error = true; - break; - } - - selectedpartition = TargetPartition.AUTO; - - i++; - - } else if ("-header".equals(args[i])) { - - if (selectedpartition != null) { - error = true; - break; - } - - selectedpartition = TargetPartition.HEADER; - - i++; - - } else if ("-d".equals(args[i])) { - - if (mds != null) { - error = true; - break; - } - - i++; - - mds = new MetaDictionaryCollection(); - - for (; i < args.length && args[i].charAt(0) != '-'; i++) { - - /* load the regxml metadictionary */ - FileReader fr = new FileReader(args[i]); - - /* add it to the dictionary group */ - mds.addDictionary(MetaDictionary.fromXML(fr)); - - } - - if (mds.getDictionaries().isEmpty()) { - error = true; - break; - } - - } else if ("-l".equals(args[i])) { - - if (labelreader != null) { - error = true; - break; - } - - i++; - - labelreader = new FileReader(args[i]); - - i++; - - } else if ("-i".equals(args[i])) { - - i++; - - if (f != null || i >= args.length || args[i].charAt(0) == '-') { - - error = true; - break; - - } - - /* retrieve the mxf file */ - p = Paths.get(args[i++]); - - if (p == null) { - error = true; - break; - } - - f = Files.newByteChannel(p); - - } else { - - error = true; - break; - - } - - } - - if (selectedpartition == null) { - selectedpartition = TargetPartition.HEADER; - } - - if (isEssenceDescriptorOnly == null) { - isEssenceDescriptorOnly = false; - } - - if (error || f == null || mds == null || p == null) { - System.out.println(USAGE); - return; - } - - /* create an enum name resolver, if available */ - final LabelsRegister lr; - - if (labelreader != null) { - - lr = LabelsRegister.fromXML(labelreader); - - } else { - - lr = null; - - } - - FragmentBuilder.AUIDNameResolver anr = null; - - if (lr != null) { - - anr = new FragmentBuilder.AUIDNameResolver() { - - @Override - public String getLocalName(AUID enumid) { - LabelsRegister.Entry e = lr.getEntryByUL(enumid.asUL()); - - return e == null ? null : e.getSymbol(); - } - - }; - } - - /* create DOM */ - DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); - DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); - Document doc = docBuilder.newDocument(); - - doc.setXmlStandalone(true); - - UL root = isEssenceDescriptorOnly ? ESSENCE_DESCRIPTOR_KEY : PREFACE_KEY; - - DocumentFragment df = null; - - TargetPartition actualpartition - = TargetPartition.AUTO.equals(selectedpartition) - ? TargetPartition.FOOTER : selectedpartition; - - boolean retry = true; - - /* - if selectedpartition is AUTO, then try FOOTER first and then HEADER - if any exceptions occur - */ - while (retry) { - - try { - - switch (actualpartition) { - case FOOTER: - - if (MXFFiles.seekFooterPartition(f) < 0) { - throw new Exception("Footer partition not found"); - } - - break; - - case HEADER: - - if (MXFFiles.seekHeaderPartition(f) < 0) { - throw new Exception("Header partition not found"); - } - - break; - - } - - InputStream is = Channels.newInputStream(f); - - EventHandler evthandler = new EventHandler() { - - @Override - public boolean handle(Event evt) { - String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); - - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(msg); - break; - case INFO: - LOG.info(msg); - break; - case WARN: - LOG.warning(msg); - break; - } - return true; - } - }; - - df = MXFFragmentBuilder.fromInputStream(is, mds, anr, evthandler, root, doc); - - } catch (Exception e) { - - if (TargetPartition.AUTO.equals(selectedpartition)) { - - /* if an exception occurred and the target partition is AUTO, - try again with the header partition */ - actualpartition = TargetPartition.HEADER; - - f.position(0); - - } else { - - /* otherwise give up */ - LOG.severe(e.getMessage()); - - throw e; - } - - } finally { - - retry = false; - - } - - } - - /* date and build version */ - Date now = new java.util.Date(); - doc.appendChild(doc.createComment("Created: " + now.toString())); - doc.appendChild(doc.createComment("From: " + p.getFileName().toString())); - doc.appendChild(doc.createComment("Partition: " + actualpartition.name())); - doc.appendChild(doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion())); - doc.appendChild(doc.createComment("See: https://github.com/sandflow/regxmllib")); - - /* add regxml fragment */ - doc.appendChild(df); - - /* write DOM to file */ - Transformer tr = TransformerFactory.newInstance().newTransformer(); - - tr.setOutputProperty(OutputKeys.INDENT, "yes"); - tr.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2"); - - tr.transform( - new DOMSource(doc), - new StreamResult(System.out) - ); - - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import java.io.File; +import java.io.FileReader; +import java.io.FilenameFilter; +import java.io.InputStream; +import java.nio.channels.Channels; +import java.nio.channels.SeekableByteChannel; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Date; +import java.util.logging.Logger; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamResult; +import com.sandflow.smpte.mxf.MXFFiles; +import com.sandflow.smpte.register.LabelsRegister; +import com.sandflow.smpte.regxml.FragmentBuilder; +import com.sandflow.smpte.regxml.MXFFragmentBuilder; +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; + +import org.w3c.dom.Document; +import org.w3c.dom.DocumentFragment; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class RegXMLDump { + + private final static Logger LOG = Logger.getLogger(RegXMLDump.class.getName()); + + private static final UL ESSENCE_DESCRIPTOR_KEY + = new UL(new byte[]{0x06, 0x0e, 0x2b, 0x34, 0x02, 0x01, 0x01, 0x01, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x24, 0x00}); + + private static final UL PREFACE_KEY + = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); + + protected final static String USAGE = "Dump header metadata of an MXF file as a RegXML structure.\n" + + " Usage:\n" + + " RegXMLDump ( -all | -ed ) ( -header | -footer | -auto ) (-l labelsregister) -d regxmldictionarydirorfile_1 ... regxmldictionarydirorfile_n -i mxffile\n" + + " RegXMLDump -?\n" + + " Where:\n" + + " -all: dumps all header metadata (default)\n" + + " -ed: dumps only the first essence descriptor found\n" + + " -l labelsregister: given a SMPTE labels register, inserts the symbol of labels as XML comment\n" + + " -header: dumps metadata from the header partition (default)\n" + + " -footer: dumps metadata from the footer partition\n" + + " -auto: dumps metadata from the footer partition if available and from the header if not\n"; + + private enum TargetPartition { + HEADER, + FOOTER, + AUTO + } + + /** + * Usage is specified at {@link #USAGE} + */ + public static void main(String[] args) throws Exception { + + boolean error = false; + TargetPartition selectedpartition = null; + Boolean isEssenceDescriptorOnly = null; + MetaDictionaryCollection mds = null; + SeekableByteChannel f = null; + FileReader labelreader = null; + Path p = null; + + for (int i = 0; i < args.length;) { + + if ("-?".equals(args[i])) { + + error = true; + break; + + } else if ("-ed".equals(args[i])) { + + if (isEssenceDescriptorOnly != null) { + error = true; + break; + } + + isEssenceDescriptorOnly = true; + + i++; + + } else if ("-all".equals(args[i])) { + + if (isEssenceDescriptorOnly != null) { + error = true; + break; + + } + + isEssenceDescriptorOnly = false; + + i++; + + } else if ("-footer".equals(args[i])) { + + if (selectedpartition != null) { + error = true; + break; + } + + selectedpartition = TargetPartition.FOOTER; + + i++; + + } else if ("-auto".equals(args[i])) { + + if (selectedpartition != null) { + error = true; + break; + } + + selectedpartition = TargetPartition.AUTO; + + i++; + + } else if ("-header".equals(args[i])) { + + if (selectedpartition != null) { + error = true; + break; + } + + selectedpartition = TargetPartition.HEADER; + + i++; + + } else if ("-d".equals(args[i])) { + + if (mds != null) { + error = true; + break; + } + + i++; + + mds = new MetaDictionaryCollection(); + + for (; i < args.length && args[i].charAt(0) != '-'; i++) { + + File mdf = new File(args[i]); + + File mdfs[]; + + if (mdf.isDirectory()) { + + mdfs = mdf.listFiles( + new FilenameFilter(){ + + @Override + public boolean accept(File dir, String name) { + return name.endsWith(".xml"); + } + } + ); + + } else { + + mdfs = new File[] {mdf}; + + } + + for(int j = 0; j < mdfs.length; j++ ) { + + /* load the regxml metadictionary */ + FileReader fr = new FileReader(mdfs[j]); + + /* add it to the dictionary group */ + mds.addDictionary(MetaDictionary.fromXML(fr)); + + } + + } + + if (mds.getDictionaries().isEmpty()) { + error = true; + break; + } + + } else if ("-l".equals(args[i])) { + + if (labelreader != null) { + error = true; + break; + } + + i++; + + labelreader = new FileReader(args[i]); + + i++; + + } else if ("-i".equals(args[i])) { + + i++; + + if (f != null || i >= args.length || args[i].charAt(0) == '-') { + + error = true; + break; + + } + + /* retrieve the mxf file */ + p = Paths.get(args[i++]); + + if (p == null) { + error = true; + break; + } + + f = Files.newByteChannel(p); + + } else { + + error = true; + break; + + } + + } + + if (selectedpartition == null) { + selectedpartition = TargetPartition.HEADER; + } + + if (isEssenceDescriptorOnly == null) { + isEssenceDescriptorOnly = false; + } + + if (error || f == null || mds == null || p == null) { + System.out.println(USAGE); + return; + } + + /* create an enum name resolver, if available */ + final LabelsRegister lr; + + if (labelreader != null) { + + lr = LabelsRegister.fromXML(labelreader); + + } else { + + lr = null; + + } + + FragmentBuilder.AUIDNameResolver anr = null; + + if (lr != null) { + + anr = new FragmentBuilder.AUIDNameResolver() { + + @Override + public String getLocalName(AUID enumid) { + LabelsRegister.Entry e = lr.getEntryByUL(enumid.asUL()); + + return e == null ? null : e.getSymbol(); + } + + }; + } + + /* create DOM */ + DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); + DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); + Document doc = docBuilder.newDocument(); + + doc.setXmlStandalone(true); + + UL root = isEssenceDescriptorOnly ? ESSENCE_DESCRIPTOR_KEY : PREFACE_KEY; + + DocumentFragment df = null; + + TargetPartition actualpartition + = TargetPartition.AUTO.equals(selectedpartition) + ? TargetPartition.FOOTER : selectedpartition; + + boolean retry = true; + + /* + if selectedpartition is AUTO, then try FOOTER first and then HEADER + if any exceptions occur + */ + while (retry) { + + try { + + switch (actualpartition) { + case FOOTER: + + if (MXFFiles.seekFooterPartition(f) < 0) { + throw new Exception("Footer partition not found"); + } + + break; + + case HEADER: + + if (MXFFiles.seekHeaderPartition(f) < 0) { + throw new Exception("Header partition not found"); + } + + break; + + } + + InputStream is = Channels.newInputStream(f); + + EventHandler evthandler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(msg); + break; + case INFO: + LOG.info(msg); + break; + case WARN: + LOG.warning(msg); + break; + } + return true; + } + }; + + df = MXFFragmentBuilder.fromInputStream(is, mds, anr, evthandler, root, doc); + + } catch (Exception e) { + + if (TargetPartition.AUTO.equals(selectedpartition)) { + + /* if an exception occurred and the target partition is AUTO, + try again with the header partition */ + actualpartition = TargetPartition.HEADER; + + f.position(0); + + } else { + + /* otherwise give up */ + LOG.severe(e.getMessage()); + + throw e; + } + + } finally { + + retry = false; + + } + + } + + /* date and build version */ + Date now = new java.util.Date(); + doc.appendChild(doc.createComment("Created: " + now.toString())); + doc.appendChild(doc.createComment("From: " + p.getFileName().toString())); + doc.appendChild(doc.createComment("Partition: " + actualpartition.name())); + doc.appendChild(doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion())); + doc.appendChild(doc.createComment("See: https://github.com/sandflow/regxmllib")); + + /* add regxml fragment */ + doc.appendChild(df); + + /* write DOM to file */ + Transformer tr = TransformerFactory.newInstance().newTransformer(); + + tr.setOutputProperty(OutputKeys.INDENT, "yes"); + tr.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2"); + + tr.transform( + new DOMSource(doc), + new StreamResult(System.out) + ); + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java b/src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java rename to src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java index 3e7e703..64e44d7 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java +++ b/src/main/java/com/sandflow/smpte/tools/XMLRegistersToDict.java @@ -1,152 +1,152 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.tools; - -import com.sandflow.smpte.register.ElementsRegister; -import com.sandflow.smpte.register.GroupsRegister; -import com.sandflow.smpte.register.TypesRegister; -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.register.exceptions.InvalidEntryException; -import com.sandflow.smpte.regxml.dict.MetaDictionary; -import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; -import com.sandflow.util.events.Event; -import static com.sandflow.smpte.regxml.dict.importers.RegisterImporter.fromRegister; -import com.sandflow.util.events.EventHandler; -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.util.Date; -import java.util.logging.Logger; -import javax.xml.bind.JAXBException; -import javax.xml.transform.OutputKeys; -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.dom.DOMSource; -import javax.xml.transform.stream.StreamResult; -import org.w3c.dom.Document; - -/** - * - * @author Pierre-Anthony Lemieux (pal@sandflow.com) - */ -public class XMLRegistersToDict { - - private final static Logger LOG = Logger.getLogger(XMLRegistersToDict.class.getName()); - - protected final static String USAGE = "Converts XML Registers to RegXML metadictionary.\n" - + " Usage: XMLRegistersToDict -e elementsregspath\n" - + " -l labelsregpath\n" - + " -g groupsregpath\n" - + " -t typesregpath\n" - + " outputdir\n" - + " XMLRegistersToDict -?"; - - /** - * Usage is specified at {@link #USAGE} - */ - public static void main(String[] args) throws FileNotFoundException, JAXBException, IOException, InvalidEntryException, DuplicateEntryException, Exception { - if (args.length != 9 - || "-?".equals(args[0]) - || (!"-e".equals(args[0])) - || (!"-l".equals(args[2])) - || (!"-g".equals(args[4])) - || (!"-t".equals(args[6]))) { - - System.out.println(USAGE); - - return; - } - - /* NOTE: to mute logging: Logger.getLogger("").setLevel(Level.OFF); */ - FileReader fe = new FileReader(args[1]); - FileReader fg = new FileReader(args[5]); - FileReader ft = new FileReader(args[7]); - - ElementsRegister ereg = ElementsRegister.fromXML(fe); - GroupsRegister greg = GroupsRegister.fromXML(fg); - TypesRegister treg = TypesRegister.fromXML(ft); - - EventHandler evthandler = new EventHandler() { - - @Override - public boolean handle(Event evt) { - String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); - - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(msg); - break; - case INFO: - LOG.info(msg); - break; - case WARN: - LOG.warning(msg); - break; - } - return true; - } - }; - - MetaDictionaryCollection mds = fromRegister(treg, greg, ereg, evthandler); - - Transformer tr = TransformerFactory.newInstance().newTransformer(); - - tr.setOutputProperty(OutputKeys.INDENT, "yes"); - - for (MetaDictionary md : mds.getDictionaries()) { - - /* create file name from the Scheme URI */ - String fname = md.getSchemeURI().getAuthority() + md.getSchemeURI().getPath(); - - File f = new File(args[8], fname.replaceAll("[^a-zA-Z0-9]", "-") + ".xml"); - - Document doc = md.toXML(); - - /* date and build version */ - Date now = new java.util.Date(); - doc.insertBefore( - doc.createComment("Created: " + now.toString()), - doc.getDocumentElement() - ); - doc.insertBefore( - doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion()), - doc.getDocumentElement() - ); - doc.insertBefore( - doc.createComment("See: https://github.com/sandflow/regxmllib"), - doc.getDocumentElement() - ); - - tr.transform( - new DOMSource(doc), - new StreamResult(f) - ); - } - - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import com.sandflow.smpte.register.ElementsRegister; +import com.sandflow.smpte.register.GroupsRegister; +import com.sandflow.smpte.register.TypesRegister; +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.register.exceptions.InvalidEntryException; +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import com.sandflow.util.events.Event; +import static com.sandflow.smpte.regxml.dict.importers.RegisterImporter.fromRegister; +import com.sandflow.util.events.EventHandler; +import java.io.File; +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.IOException; +import java.util.Date; +import java.util.logging.Logger; +import javax.xml.bind.JAXBException; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamResult; +import org.w3c.dom.Document; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class XMLRegistersToDict { + + private final static Logger LOG = Logger.getLogger(XMLRegistersToDict.class.getName()); + + protected final static String USAGE = "Converts XML Registers to RegXML metadictionary.\n" + + " Usage: XMLRegistersToDict -e elementsregspath\n" + + " -l labelsregpath\n" + + " -g groupsregpath\n" + + " -t typesregpath\n" + + " outputdir\n" + + " XMLRegistersToDict -?"; + + /** + * Usage is specified at {@link #USAGE} + */ + public static void main(String[] args) throws FileNotFoundException, JAXBException, IOException, InvalidEntryException, DuplicateEntryException, Exception { + if (args.length != 9 + || "-?".equals(args[0]) + || (!"-e".equals(args[0])) + || (!"-l".equals(args[2])) + || (!"-g".equals(args[4])) + || (!"-t".equals(args[6]))) { + + System.out.println(USAGE); + + return; + } + + /* NOTE: to mute logging: Logger.getLogger("").setLevel(Level.OFF); */ + FileReader fe = new FileReader(args[1]); + FileReader fg = new FileReader(args[5]); + FileReader ft = new FileReader(args[7]); + + ElementsRegister ereg = ElementsRegister.fromXML(fe); + GroupsRegister greg = GroupsRegister.fromXML(fg); + TypesRegister treg = TypesRegister.fromXML(ft); + + EventHandler evthandler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(msg); + break; + case INFO: + LOG.info(msg); + break; + case WARN: + LOG.warning(msg); + break; + } + return true; + } + }; + + MetaDictionaryCollection mds = fromRegister(treg, greg, ereg, evthandler); + + Transformer tr = TransformerFactory.newInstance().newTransformer(); + + tr.setOutputProperty(OutputKeys.INDENT, "yes"); + + for (MetaDictionary md : mds.getDictionaries()) { + + /* create file name from the Scheme URI */ + String fname = md.getSchemeURI().getAuthority() + md.getSchemeURI().getPath(); + + File f = new File(args[8], fname.replaceAll("[^a-zA-Z0-9]", "-") + ".xml"); + + Document doc = md.toXML(); + + /* date and build version */ + Date now = new java.util.Date(); + doc.insertBefore( + doc.createComment("Created: " + now.toString()), + doc.getDocumentElement() + ); + doc.insertBefore( + doc.createComment("By: regxmllib build " + BuildVersionSingleton.getBuildVersion()), + doc.getDocumentElement() + ); + doc.insertBefore( + doc.createComment("See: https://github.com/sandflow/regxmllib"), + doc.getDocumentElement() + ); + + tr.transform( + new DOMSource(doc), + new StreamResult(f) + ); + } + + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/AUID.java b/src/main/java/com/sandflow/smpte/util/AUID.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/util/AUID.java rename to src/main/java/com/sandflow/smpte/util/AUID.java index f0530aa..563d617 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/AUID.java +++ b/src/main/java/com/sandflow/smpte/util/AUID.java @@ -1,158 +1,158 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.util.Arrays; - -/** - * AUID as specified in SMPTE ST 377-1 - */ -public class AUID { - - /** - * Creates a AUID from a UL or UUID URN. - * @param urn URN from which to create the AUID - * @return AUID, or null if invalid URN - */ - public static AUID fromURN(String urn) { - - if (urn == null) return null; - - if (urn.startsWith("urn:smpte:ul:")) { - - return new AUID(UL.fromURN(urn)); - - } else if (urn.startsWith("urn:uuid:")) { - - return new AUID(UUID.fromURN(urn)); - - } - - return null; - - } - - private byte[] value; - - private AUID() { } - - /** - * Instantiates a AUID from a 16-byte buffer - * @param auid 16-bytes - */ - public AUID(byte[] auid) { - this.value = java.util.Arrays.copyOf(auid, 16); - } - - - /** - * Instantiates a AUID from a UL - * @param ul UL from which to create the AUID - */ - public AUID(UL ul) { - this.value = ul.getValue(); - } - - /** - * Instantiates a AUID from a UUID - * @param uuid UUID from which to create the AUID - */ - public AUID(UUID uuid) { - - value = new byte[16]; - - System.arraycopy(uuid.getValue(), 8, value, 0, 8); - System.arraycopy(uuid.getValue(), 0, value, 8, 8); - } - - @Override - public boolean equals(Object auid) { - if (!(auid instanceof AUID)) { - return false; - } - return Arrays.equals(((AUID) auid).value, this.value); - } - - public boolean equals(UL ul) { - return Arrays.equals(ul.getValue(), this.value); - } - - - @Override - public int hashCode() { - return Arrays.hashCode(value); - } - - @Override - public String toString() { - if (isUL()) { - return asUL().toString(); - } else { - return asUUID().toString(); - } - } - - /** - * Is the AUID a UL? - * @return true if the AUID is a UL - */ - public boolean isUL() { - return (value[0] & 0x80) == 0; - } - - /** - * Is the AUID a UUID? - * @return true if the AUID is a UUID - */ - public boolean isUUID() { - return ! isUL(); - } - - /** - * Returns the underlying UUID if available - * @return Underlying UUID, or null if not a UUID - */ - public UUID asUUID() { - - if (isUL()) return null; - - byte[] uuid = new byte[16]; - - System.arraycopy(this.value, 8, uuid, 0, 8); - System.arraycopy(this.value, 0, uuid, 8, 8); - - return new UUID(uuid); - } - - /** - * Returns the underlying UL if available - * @return Underlying UL, or null if not a UL - */ - public UL asUL() { - return isUL() ? new UL(value) : null; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.util.Arrays; + +/** + * AUID as specified in SMPTE ST 377-1 + */ +public class AUID { + + /** + * Creates a AUID from a UL or UUID URN. + * @param urn URN from which to create the AUID + * @return AUID, or null if invalid URN + */ + public static AUID fromURN(String urn) { + + if (urn == null) return null; + + if (urn.startsWith("urn:smpte:ul:")) { + + return new AUID(UL.fromURN(urn)); + + } else if (urn.startsWith("urn:uuid:")) { + + return new AUID(UUID.fromURN(urn)); + + } + + return null; + + } + + private byte[] value; + + private AUID() { } + + /** + * Instantiates a AUID from a 16-byte buffer + * @param auid 16-bytes + */ + public AUID(byte[] auid) { + this.value = java.util.Arrays.copyOf(auid, 16); + } + + + /** + * Instantiates a AUID from a UL + * @param ul UL from which to create the AUID + */ + public AUID(UL ul) { + this.value = ul.getValue(); + } + + /** + * Instantiates a AUID from a UUID + * @param uuid UUID from which to create the AUID + */ + public AUID(UUID uuid) { + + value = new byte[16]; + + System.arraycopy(uuid.getValue(), 8, value, 0, 8); + System.arraycopy(uuid.getValue(), 0, value, 8, 8); + } + + @Override + public boolean equals(Object auid) { + if (!(auid instanceof AUID)) { + return false; + } + return Arrays.equals(((AUID) auid).value, this.value); + } + + public boolean equals(UL ul) { + return Arrays.equals(ul.getValue(), this.value); + } + + + @Override + public int hashCode() { + return Arrays.hashCode(value); + } + + @Override + public String toString() { + if (isUL()) { + return asUL().toString(); + } else { + return asUUID().toString(); + } + } + + /** + * Is the AUID a UL? + * @return true if the AUID is a UL + */ + public boolean isUL() { + return (value[0] & 0x80) == 0; + } + + /** + * Is the AUID a UUID? + * @return true if the AUID is a UUID + */ + public boolean isUUID() { + return ! isUL(); + } + + /** + * Returns the underlying UUID if available + * @return Underlying UUID, or null if not a UUID + */ + public UUID asUUID() { + + if (isUL()) return null; + + byte[] uuid = new byte[16]; + + System.arraycopy(this.value, 8, uuid, 0, 8); + System.arraycopy(this.value, 0, uuid, 8, 8); + + return new UUID(uuid); + } + + /** + * Returns the underlying UL if available + * @return Underlying UL, or null if not a UL + */ + public UL asUL() { + return isUL() ? new UL(value) : null; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/CountingInputStream.java b/src/main/java/com/sandflow/smpte/util/CountingInputStream.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/util/CountingInputStream.java rename to src/main/java/com/sandflow/smpte/util/CountingInputStream.java index 12c40fe..afe8b13 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/CountingInputStream.java +++ b/src/main/java/com/sandflow/smpte/util/CountingInputStream.java @@ -1,118 +1,118 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.io.IOException; -import java.io.InputStream; - -/** - * Counts the number of bytes read from an InputStream - */ -public class CountingInputStream extends InputStream { - - long count = 0; - long markCount = 0; - InputStream is; - - /** - * Instantiates a CountingInputStream - * @param is InputStream from which data will be read - */ - public CountingInputStream(InputStream is) { - this.is = is; - } - - @Override - public synchronized void mark(int i) { - markCount = count; - is.mark(i); - } - - @Override - public long skip(long l) throws IOException { - long sb = is.skip(l); - if (sb >= 0) count += sb; - return sb; - } - - @Override - public int read(byte[] bytes, int i, int i1) throws IOException { - int sb = is.read(bytes, i, i1); - if (sb >= 0) count += sb; - return sb; - } - - @Override - public int read(byte[] bytes) throws IOException { - int sb = is.read(bytes); - if (sb >= 0) count += sb; - return sb; - } - - @Override - public int read() throws IOException { - int sb = is.read(); - if (sb >= 0) count += 1; - return sb; - } - - @Override - public boolean markSupported() { - return is.markSupported(); - } - - @Override - public synchronized void reset() throws IOException { - count = markCount; - is.reset(); - } - - @Override - public void close() throws IOException { - is.close(); - } - - @Override - public int available() throws IOException { - return is.available(); - } - - /** - * @return Returns the number of bytes read since the object was created or - * resetCount was called - */ - public long getCount() { - return count; - } - - /** - * Resets the number of bytes read to zero. - */ - public void resetCount() { - count = 0; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.io.IOException; +import java.io.InputStream; + +/** + * Counts the number of bytes read from an InputStream + */ +public class CountingInputStream extends InputStream { + + long count = 0; + long markCount = 0; + InputStream is; + + /** + * Instantiates a CountingInputStream + * @param is InputStream from which data will be read + */ + public CountingInputStream(InputStream is) { + this.is = is; + } + + @Override + public synchronized void mark(int i) { + markCount = count; + is.mark(i); + } + + @Override + public long skip(long l) throws IOException { + long sb = is.skip(l); + if (sb >= 0) count += sb; + return sb; + } + + @Override + public int read(byte[] bytes, int i, int i1) throws IOException { + int sb = is.read(bytes, i, i1); + if (sb >= 0) count += sb; + return sb; + } + + @Override + public int read(byte[] bytes) throws IOException { + int sb = is.read(bytes); + if (sb >= 0) count += sb; + return sb; + } + + @Override + public int read() throws IOException { + int sb = is.read(); + if (sb >= 0) count += 1; + return sb; + } + + @Override + public boolean markSupported() { + return is.markSupported(); + } + + @Override + public synchronized void reset() throws IOException { + count = markCount; + is.reset(); + } + + @Override + public void close() throws IOException { + is.close(); + } + + @Override + public int available() throws IOException { + return is.available(); + } + + /** + * @return Returns the number of bytes read since the object was created or + * resetCount was called + */ + public long getCount() { + return count; + } + + /** + * Resets the number of bytes read to zero. + */ + public void resetCount() { + count = 0; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java b/src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java rename to src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java index 47a1a69..ba7da83 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java +++ b/src/main/java/com/sandflow/smpte/util/ExcelCSVParser.java @@ -1,154 +1,154 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.io.IOException; -import java.io.Reader; -import java.util.AbstractList; -import java.util.ArrayList; - -/** - * Simple Excel CSV parser. - */ -public class ExcelCSVParser { - - Reader reader; - - /** - * Indicates an error has been encountered when parsing a CSV file - */ - public static class SyntaxException extends Exception { } - - private enum State { - IN_QFIELD, - DQ_IN_QFIELD, - IN_PFIELD, - EOL - } - - /** - * Instantiates an ExcelCSVParser - * @param reader Reader from which CSV lines will be read - */ - public ExcelCSVParser(Reader reader) { - this.reader = reader; - } - - /** - * Reads one line from the CSV file. - * @return List of the fields found on the line - * @throws com.sandflow.smpte.util.ExcelCSVParser.SyntaxException - * @throws IOException - */ - public AbstractList getLine() throws SyntaxException, IOException { - State s = State.IN_PFIELD; - - int c; - StringBuilder field = new StringBuilder(); - - ArrayList strs = new ArrayList<>(); - - boolean done = false; - - while ((!done) && (c = reader.read()) != -1) { - switch (s) { - - case EOL: - - if (c != '\n') { - throw new SyntaxException(); - } else { - done = true; - } - - case DQ_IN_QFIELD: - - if (c == '"') { - field.append('"'); - s = State.IN_QFIELD; - break; - - } else { - - s = State.IN_PFIELD; - - } - - case IN_PFIELD: - - switch (c) { - - case '\r': - s = State.EOL; - - case ',': - - if (field.length() == 0) { - strs.add(null); - } else { - strs.add(field.toString()); - field.setLength(0); - } - break; - - case '"': - - s = State.IN_QFIELD; - - break; - - - - default: - field.append((char) c); - break; - } - - break; - - case IN_QFIELD: - - if (c == '"') { - s = State.DQ_IN_QFIELD; - } else { - field.append((char) c); - } - - break; - - - } - - } - - if (done) { - return strs; - } else { - return null; - } - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.io.IOException; +import java.io.Reader; +import java.util.AbstractList; +import java.util.ArrayList; + +/** + * Simple Excel CSV parser. + */ +public class ExcelCSVParser { + + Reader reader; + + /** + * Indicates an error has been encountered when parsing a CSV file + */ + public static class SyntaxException extends Exception { } + + private enum State { + IN_QFIELD, + DQ_IN_QFIELD, + IN_PFIELD, + EOL + } + + /** + * Instantiates an ExcelCSVParser + * @param reader Reader from which CSV lines will be read + */ + public ExcelCSVParser(Reader reader) { + this.reader = reader; + } + + /** + * Reads one line from the CSV file. + * @return List of the fields found on the line + * @throws com.sandflow.smpte.util.ExcelCSVParser.SyntaxException + * @throws IOException + */ + public AbstractList getLine() throws SyntaxException, IOException { + State s = State.IN_PFIELD; + + int c; + StringBuilder field = new StringBuilder(); + + ArrayList strs = new ArrayList<>(); + + boolean done = false; + + while ((!done) && (c = reader.read()) != -1) { + switch (s) { + + case EOL: + + if (c != '\n') { + throw new SyntaxException(); + } else { + done = true; + } + + case DQ_IN_QFIELD: + + if (c == '"') { + field.append('"'); + s = State.IN_QFIELD; + break; + + } else { + + s = State.IN_PFIELD; + + } + + case IN_PFIELD: + + switch (c) { + + case '\r': + s = State.EOL; + + case ',': + + if (field.length() == 0) { + strs.add(null); + } else { + strs.add(field.toString()); + field.setLength(0); + } + break; + + case '"': + + s = State.IN_QFIELD; + + break; + + + + default: + field.append((char) c); + break; + } + + break; + + case IN_QFIELD: + + if (c == '"') { + s = State.DQ_IN_QFIELD; + } else { + field.append((char) c); + } + + break; + + + } + + } + + if (done) { + return strs; + } else { + return null; + } + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/HalfFloat.java b/src/main/java/com/sandflow/smpte/util/HalfFloat.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/HalfFloat.java rename to src/main/java/com/sandflow/smpte/util/HalfFloat.java index d57d51d..971b673 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/HalfFloat.java +++ b/src/main/java/com/sandflow/smpte/util/HalfFloat.java @@ -1,60 +1,60 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -/** - * Utility functions for converting IEEE half-floats - */ -public class HalfFloat { - - /** - * Converts a half-float stored in an int into a double - * - * @param hf half-float stored in an int - * @return Half-float value as a double - */ - public static double toDouble(int hf) { - double val; - - double sign = (hf & 0x8000) >> 15 == 0 ? 1 : -1; - int exponent = (hf & 0x7c00) >> 10; - int mantissa = hf & 0x03ff; - - if (exponent == 31) { - if (mantissa == 0) { - val = sign > 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY; - } else { - val = Double.NaN; - } - } else if (exponent == 0) { - val = sign * Math.pow(2, -24) * mantissa; - } else { - val = sign * Math.pow(2, exponent - 15) * (1024 + mantissa) * Math.pow(2, -10); - } - - return val; - } -} +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +/** + * Utility functions for converting IEEE half-floats + */ +public class HalfFloat { + + /** + * Converts a half-float stored in an int into a double + * + * @param hf half-float stored in an int + * @return Half-float value as a double + */ + public static double toDouble(int hf) { + double val; + + double sign = (hf & 0x8000) >> 15 == 0 ? 1 : -1; + int exponent = (hf & 0x7c00) >> 10; + int mantissa = hf & 0x03ff; + + if (exponent == 31) { + if (mantissa == 0) { + val = sign > 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY; + } else { + val = Double.NaN; + } + } else if (exponent == 0) { + val = sign * Math.pow(2, -24) * mantissa; + } else { + val = sign * Math.pow(2, exponent - 15) * (1024 + mantissa) * Math.pow(2, -10); + } + + return val; + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/IDAU.java b/src/main/java/com/sandflow/smpte/util/IDAU.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/smpte/util/IDAU.java rename to src/main/java/com/sandflow/smpte/util/IDAU.java diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/UL.java b/src/main/java/com/sandflow/smpte/util/UL.java similarity index 87% rename from regxmllib/src/main/java/com/sandflow/smpte/util/UL.java rename to src/main/java/com/sandflow/smpte/util/UL.java index 0629d60..bfcc4ca 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/UL.java +++ b/src/main/java/com/sandflow/smpte/util/UL.java @@ -1,274 +1,306 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.util.Arrays; -import java.util.regex.Pattern; - -/** - * Represent a SMPTE Universal Label (SMPTE ST 298) - */ -public class UL { - - private final static Pattern URN_PATTERN = Pattern.compile("urn:smpte:ul:[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}"); - private final static Pattern DOTVALUE_PATTERN = Pattern.compile("[a-fA-F0-9]{2}(\\.[a-fA-F0-9]{2}){15}"); - private final static int CATEGORY_DESIGNATOR_BYTE = 4; - private final static int REGISTRY_DESIGNATOR_BYTE = 5; - - /** - * Creates a UL from a URN - * (urn:smpte:ul:xxxxxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx) - * - * @param urn URN from which the UL will be created - * @return UL, or null if the URN is invalid - */ - public static UL fromURN(String urn) { - - byte[] ul = new byte[16]; - - if (URN_PATTERN.matcher(urn).matches()) { - for (int i = 0; i < 4; i++) { - for (int j = 0; j < 4; j++) { - ul[4 * i + j] = (byte) Integer.parseInt(urn.substring(13 + i * 9 + 2 * j, 13 + i * 9 + 2 * j + 2), 16); - } - } - - return new UL(ul); - - } else { - - return null; - - } - - } - - /** - * Creates a UL from a dot-value representation - * (xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx) - * - * @param val String from which the UL will be created - * @return UL UL, or null if the URN is invalid - */ - public static UL fromDotValue(String val) { - - byte[] ul = new byte[16]; - - if (DOTVALUE_PATTERN.matcher(val).matches()) { - for (int i = 0; i < 16; i++) { - ul[i] = (byte) Integer.parseInt(val.substring(3 * i, 3 * i + 2), 16); - } - - return new UL(ul); - - } else { - - return null; - - } - - } - - private final byte[] value; - - /** - * @return true if the UL is a Key for a KLV Group (see SMPTE ST 336) - */ - public boolean isGroup() { - return getValueOctet(CATEGORY_DESIGNATOR_BYTE) == 2; - } - - /** - * @return true if the UL is a Key for a KLV Local Set (see SMPTE ST 336) - */ - public boolean isLocalSet() { - return isGroup() && (getRegistryDesignator() & 7) == 3; - } - - /** - * @return The value of the Registry Designator byte of the UL - */ - public int getRegistryDesignator() { - return getValueOctet(REGISTRY_DESIGNATOR_BYTE); - } - - private UL() { - this.value = new byte[16]; - } - - /** - * Instantiates a UL from a sequence of 16 bytes - * - * @param ul Sequence of 16 bytes - */ - public UL(byte[] ul) { - this.value = java.util.Arrays.copyOf(ul, 16); - } - - /** - * Compares this UL to another UL, ignoring the version byte - * - * @param ul Other UL to compare - * @return true if the ULs are equal - */ - public boolean equalsIgnoreVersion(UL ul) { - for (int i = 0; i < 7; i++) { - if (this.value[i] != ul.value[i]) { - return false; - } - } - - for (int i = 8; i < 16; i++) { - if (this.value[i] != ul.value[i]) { - return false; - } - } - - return true; - } - - /** - * @return The value of the Version byte of the UL - */ - public byte getVersion() { - return getValueOctet(7); - } - - /** - * Compares this UL to another UL, ignoring specific bytes based on a mask - * - * @param ul Other UL to compare - * @param bytemask 16-bit mask, where byte[n] is ignored if bit[n] is 0, - * with n = 0 is the LSB - * @return true if the ULs are equal - */ - public boolean equalsWithMask(UL ul, int bytemask) { - - for (int i = 0; i < 15; i++) { - if ((bytemask & 0x8000) != 0 && this.value[i] != ul.value[i]) { - return false; - } - - bytemask = bytemask << 1; - } - - return true; - } - - /** - * Compares this UL to another UL - * - * @param ul Other UL to compare - * @return true if the ULs are equal - */ - public boolean equals(UL ul) { - return Arrays.equals(ul.value, this.value); - } - - /** - * Returns the sequence of bytes that make up the UL (in the order specified by ST 298 4122) - * - * @return Sequence of 16 bytes - */ - public byte[] getValue() { - return value; - } - - /** - * Returns the nth octet of the UL, indexed at 0 - * - * @param i Index of the octet, starting at 0 for the first byte - * @return Value of the byte - */ - public byte getValueOctet(int i) { - return value[i]; - } - - @Override - public int hashCode() { - return Arrays.hashCode(value); - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final UL other = (UL) obj; - if (!Arrays.equals(this.value, other.value)) { - return false; - } - return true; - } - - @Override - public String toString() { - - return String.format("urn:smpte:ul:%02x%02x%02x%02x.%02x%02x%02x%02x.%02x%02x%02x%02x.%02x%02x%02x%02x", - value[0], - value[1], - value[2], - value[3], - value[4], - value[5], - value[6], - value[7], - value[8], - value[9], - value[10], - value[11], - value[12], - value[13], - value[14], - value[15] - ); - } - - /** - * @return true if the UL is a class 14 UL - */ - public boolean isClass14() { - return getValueOctet(8) == 14; - } - - /** - * @return true if the UL is a class 15 UL - */ - public boolean isClass15() { - return getValueOctet(8) == 15; - } - - /** - * @return true if the UL is a class 13 UL - */ - public boolean isClass13() { - return getValueOctet(8) == 13; - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.util.Arrays; +import java.util.regex.Pattern; + +/** + * Represent a SMPTE Universal Label (SMPTE ST 298) + */ +public class UL { + + private final static Pattern URN_PATTERN = Pattern.compile("urn:smpte:ul:[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}\\.[a-fA-F0-9]{8}"); + private final static Pattern DOTVALUE_PATTERN = Pattern.compile("[a-fA-F0-9]{2}(\\.[a-fA-F0-9]{2}){15}"); + private final static int CATEGORY_DESIGNATOR_BYTE = 4; + private final static int REGISTRY_DESIGNATOR_BYTE = 5; + + /** + * Creates a UL from a URN + * (urn:smpte:ul:xxxxxxxx.xxxxxxxx.xxxxxxxx.xxxxxxxx) + * + * @param urn URN from which the UL will be created + * @return UL, or null if the URN is invalid + */ + public static UL fromURN(String urn) { + + byte[] ul = new byte[16]; + + if (URN_PATTERN.matcher(urn).matches()) { + for (int i = 0; i < 4; i++) { + for (int j = 0; j < 4; j++) { + ul[4 * i + j] = (byte) Integer.parseInt(urn.substring(13 + i * 9 + 2 * j, 13 + i * 9 + 2 * j + 2), 16); + } + } + + return new UL(ul); + + } else { + + return null; + + } + + } + + /** + * Creates a UL from a dot-value representation + * (xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx.xx) + * + * @param val String from which the UL will be created + * @return UL UL, or null if the URN is invalid + */ + public static UL fromDotValue(String val) { + + byte[] ul = new byte[16]; + + if (DOTVALUE_PATTERN.matcher(val).matches()) { + for (int i = 0; i < 16; i++) { + ul[i] = (byte) Integer.parseInt(val.substring(3 * i, 3 * i + 2), 16); + } + + return new UL(ul); + + } else { + + return null; + + } + + } + + private final byte[] value; + + /** + * @return true if the UL is a Key for a KLV Group (see SMPTE ST 336) + */ + public boolean isGroup() { + return getValueOctet(CATEGORY_DESIGNATOR_BYTE) == 2; + } + + /** + * @return true if the UL is a Key for a KLV Local Set (see SMPTE ST 336) + */ + public boolean isLocalSet() { + return isGroup() && (getRegistryDesignator() & 7) == 3; + } + + /** + * @return The value of the Registry Designator byte of the UL + */ + public int getRegistryDesignator() { + return getValueOctet(REGISTRY_DESIGNATOR_BYTE); + } + + private UL() { + this.value = new byte[16]; + } + + /** + * Instantiates a UL from a sequence of 16 bytes + * + * @param ul Sequence of 16 bytes + */ + public UL(byte[] ul) { + this.value = java.util.Arrays.copyOf(ul, 16); + } + + /** + * Compares this UL to another UL, ignoring the version byte + * + * @param ul Other UL to compare + * @return true if the ULs are equal + */ + public boolean equalsIgnoreVersion(UL ul) { + for (int i = 0; i < 7; i++) { + if (this.value[i] != ul.value[i]) { + return false; + } + } + + for (int i = 8; i < 16; i++) { + if (this.value[i] != ul.value[i]) { + return false; + } + } + + return true; + } + + /** + * Compares this UL to another AUID, ignoring the version byte + * + * @param auid Other AUID to compare + * @return true if the UL is equal to the AUID, ignoring the version byte + */ + public boolean equalsIgnoreVersion(AUID auid) { + return (auid.isUL() && this.equalsIgnoreVersion(auid.asUL())); + } + + /** + * @return The value of the Version byte of the UL + */ + public byte getVersion() { + return getValueOctet(7); + } + + /** + * Compares this UL to another UL, ignoring specific bytes based on a mask + * + * @param ul Other UL to compare + * @param bytemask 16-bit mask, where byte[n] is ignored if bit[n] is 0, + * with n = 0 is the LSB + * @return true if the ULs are equal + */ + public boolean equalsWithMask(UL ul, int bytemask) { + + for (int i = 0; i < 15; i++) { + if ((bytemask & 0x8000) != 0 && this.value[i] != ul.value[i]) { + return false; + } + + bytemask = bytemask << 1; + } + + return true; + } + + /** + * Compares this UL to another AUID, ignoring specific bytes based on a mask + * + * @param auid Other UL to compare + * @param bytemask 16-bit mask, where byte[n] is ignored if bit[n] is 0, + * with n = 0 is the LSB + * @return true if the UL and the AUID are equal, ignoring specific bytes based on bytemask + */ + public boolean equalsWithMask(AUID auid, int bytemask) { + return auid.isUL() && this.equalsWithMask(auid.asUL(), bytemask); + } + + /** + * Compares this UL to another UL + * + * @param ul Other UL to compare + * @return true if the ULs are equal + */ + public boolean equals(UL ul) { + return Arrays.equals(ul.value, this.value); + } + + /** + * Compares this UL to a AUID + * + * @param auid AUID to compare + * @return true if the UL and AUID are equal + */ + public boolean equals(AUID auid) { + return auid.equals(this); + } + + /** + * Returns the sequence of bytes that make up the UL (in the order specified by ST 298 4122) + * + * @return Sequence of 16 bytes + */ + public byte[] getValue() { + return value; + } + + /** + * Returns the nth octet of the UL, indexed at 0 + * + * @param i Index of the octet, starting at 0 for the first byte + * @return Value of the byte + */ + public byte getValueOctet(int i) { + return value[i]; + } + + @Override + public int hashCode() { + return Arrays.hashCode(value); + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + final UL other = (UL) obj; + if (!Arrays.equals(this.value, other.value)) { + return false; + } + return true; + } + + @Override + public String toString() { + + return String.format("urn:smpte:ul:%02x%02x%02x%02x.%02x%02x%02x%02x.%02x%02x%02x%02x.%02x%02x%02x%02x", + value[0], + value[1], + value[2], + value[3], + value[4], + value[5], + value[6], + value[7], + value[8], + value[9], + value[10], + value[11], + value[12], + value[13], + value[14], + value[15] + ); + } + + /** + * @return true if the UL is a class 14 UL + */ + public boolean isClass14() { + return getValueOctet(8) == 14; + } + + /** + * @return true if the UL is a class 15 UL + */ + public boolean isClass15() { + return getValueOctet(8) == 15; + } + + /** + * @return true if the UL is a class 13 UL + */ + public boolean isClass13() { + return getValueOctet(8) == 13; + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/UMID.java b/src/main/java/com/sandflow/smpte/util/UMID.java similarity index 95% rename from regxmllib/src/main/java/com/sandflow/smpte/util/UMID.java rename to src/main/java/com/sandflow/smpte/util/UMID.java index f6370ae..049c0e3 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/UMID.java +++ b/src/main/java/com/sandflow/smpte/util/UMID.java @@ -1,131 +1,131 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.util.Arrays; -import java.util.regex.Pattern; - -/** - * Represents a SMPTE UMID as specified in SMPTE ST 330 - */ -public class UMID { - - private final static Pattern URN_PATTERN = Pattern.compile("urn:smpte:umid:[a-fA-F0-9]{8}(?:\\.[a-fA-F0-9]{8}){7}"); - - /** - * Creates a UMID from a URN - * (urn:smpte:umid:060A2B34.01010105.01010D20.13000000.D2C9036C.8F195343.AB7014D2.D718BFDA) - * - * @param urn URN-representation of the UMID - * @return UMID, or null if invalide URN - */ - public static UMID fromURN(String urn) { - - byte[] umid = new byte[32]; - - if (URN_PATTERN.matcher(urn).matches()) { - for (int i = 0; i < 8; i++) { - for (int j = 0; j < 4; j++) { - umid[4 * i + j] = (byte) Integer.parseInt(urn.substring(13 + i * 9 + 2 * j, 13 + i * 9 + 2 * j + 2), 16); - } - } - - return new UMID(umid); - - } else { - - return null; - - } - - } - - private byte[] value; - - private UMID() { - this.value = new byte[32]; - } - - /** - * Instantiates a UMID from a sequence of 32 bytes - * - * @param umid Sequence of 32 bytes - */ - public UMID(byte[] umid) { - this.value = java.util.Arrays.copyOf(umid, 32); - } - - /** - * Returns the sequence of bytes that make up the UMID (as specified in SMPTE ST 330) - * - * @return sequence of 32 bytes - */ - public byte[] getValue() { - return value; - } - - @Override - public int hashCode() { - return Arrays.hashCode(value); - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final UMID other = (UMID) obj; - if (!Arrays.equals(this.value, other.value)) { - return false; - } - return true; - } - - final static char[] HEXMAP = "0123456789abcdef".toCharArray(); - final static char[] URNTEMPLATE = "urn:smpte:umid:060A2B34.01010105.01010D20.13000000.D2C9036C.8F195343.AB7014D2.D718BFDA".toCharArray(); - - @Override - public String toString() { - - char[] out = Arrays.copyOf(URNTEMPLATE, URNTEMPLATE.length); - - for (int i = 0; i < 8; i++) { - for (int j = 0; j < 4; j++) { - - int v = value[4 * i + j] & 0xFF; - out[15 + 9 * i + 2 * j] = HEXMAP[v >>> 4]; - out[15 + 9 * i + 2 * j + 1] = HEXMAP[v & 0x0F]; - - } - } - - return new String(out); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.util.Arrays; +import java.util.regex.Pattern; + +/** + * Represents a SMPTE UMID as specified in SMPTE ST 330 + */ +public class UMID { + + private final static Pattern URN_PATTERN = Pattern.compile("urn:smpte:umid:[a-fA-F0-9]{8}(?:\\.[a-fA-F0-9]{8}){7}"); + + /** + * Creates a UMID from a URN + * (urn:smpte:umid:060A2B34.01010105.01010D20.13000000.D2C9036C.8F195343.AB7014D2.D718BFDA) + * + * @param urn URN-representation of the UMID + * @return UMID, or null if invalide URN + */ + public static UMID fromURN(String urn) { + + byte[] umid = new byte[32]; + + if (URN_PATTERN.matcher(urn).matches()) { + for (int i = 0; i < 8; i++) { + for (int j = 0; j < 4; j++) { + umid[4 * i + j] = (byte) Integer.parseInt(urn.substring(15 + i * 9 + 2 * j, 15 + i * 9 + 2 * j + 2), 16); + } + } + + return new UMID(umid); + + } else { + + return null; + + } + + } + + private byte[] value; + + private UMID() { + this.value = new byte[32]; + } + + /** + * Instantiates a UMID from a sequence of 32 bytes + * + * @param umid Sequence of 32 bytes + */ + public UMID(byte[] umid) { + this.value = java.util.Arrays.copyOf(umid, 32); + } + + /** + * Returns the sequence of bytes that make up the UMID (as specified in SMPTE ST 330) + * + * @return sequence of 32 bytes + */ + public byte[] getValue() { + return value; + } + + @Override + public int hashCode() { + return Arrays.hashCode(value); + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + final UMID other = (UMID) obj; + if (!Arrays.equals(this.value, other.value)) { + return false; + } + return true; + } + + final static char[] HEXMAP = "0123456789abcdef".toCharArray(); + final static char[] URNTEMPLATE = "urn:smpte:umid:060A2B34.01010105.01010D20.13000000.D2C9036C.8F195343.AB7014D2.D718BFDA".toCharArray(); + + @Override + public String toString() { + + char[] out = Arrays.copyOf(URNTEMPLATE, URNTEMPLATE.length); + + for (int i = 0; i < 8; i++) { + for (int j = 0; j < 4; j++) { + + int v = value[4 * i + j] & 0xFF; + out[15 + 9 * i + 2 * j] = HEXMAP[v >>> 4]; + out[15 + 9 * i + 2 * j + 1] = HEXMAP[v & 0x0F]; + + } + } + + return new String(out); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/UUID.java b/src/main/java/com/sandflow/smpte/util/UUID.java similarity index 96% rename from regxmllib/src/main/java/com/sandflow/smpte/util/UUID.java rename to src/main/java/com/sandflow/smpte/util/UUID.java index 101bf91..dc42c20 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/UUID.java +++ b/src/main/java/com/sandflow/smpte/util/UUID.java @@ -1,227 +1,227 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import java.io.UnsupportedEncodingException; -import java.net.URI; -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; -import java.security.SecureRandom; -import java.util.Arrays; -import java.util.regex.Pattern; - -/** - * Represents a UUID as specified in FRC 4122 - */ -public class UUID { - - private byte[] value; - - private UUID() { - } - - /** - * Instantiates a UUID from a sequence of 16 bytes - * - * @param uuid Sequence of 16 bytes - */ - public UUID(byte[] uuid) { - this.value = java.util.Arrays.copyOf(uuid, 16); - } - - /** - * Returns the sequence of bytes that make up the UUID (in the order specified by RFC 4122) - * - * @return Sequence of 16 bytes - */ - public byte[] getValue() { - return this.value; - } - - @Override - public int hashCode() { - int hash = 7; - hash = 37 * hash + Arrays.hashCode(this.value); - return hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final UUID other = (UUID) obj; - if (!Arrays.equals(this.value, other.value)) { - return false; - } - return true; - } - - private final static Pattern URN_PATTERN = Pattern.compile("urn:uuid:[a-fA-F0-9]{8}-(?:[a-fA-F0-9]{4}-){3}[a-fA-F0-9]{12}"); - - /** - * Generate a Class 4 random UUID - * @return Class 4 UUID - */ - public static UUID fromRandom() { - SecureRandom random = new SecureRandom(); - byte bytes[] = new byte[16]; - random.nextBytes(bytes); - - bytes[6] = (byte) ((bytes[6] & 0x0f) | 0x4f); - bytes[8] = (byte) ((bytes[8] & 0x3f) | 0x7f); - - return new UUID(bytes); - } - - /** - * Generate a Class 5 UUID from a URI - * @param uri URI - * @return Class 5 UUID - */ - public static UUID fromURIName(URI uri) { - MessageDigest digest; - - UUID nsid = UUID.fromURN("urn:uuid:6ba7b811-9dad-11d1-80b4-00c04fd430c8"); - - try { - digest = MessageDigest.getInstance("SHA-1"); - digest.update(nsid.getValue()); - digest.update(uri.toString().getBytes("ASCII")); - } catch (NoSuchAlgorithmException | UnsupportedEncodingException ex) { - throw new RuntimeException(ex); - } - - byte[] result = digest.digest(); - - result[6] = (byte) ((result[6] & 0x0f) | 0x5f); - result[8] = (byte) ((result[8] & 0x3f) | 0x7f); - - return new UUID(result); - } - - /** - * Creates a UUID from a URN - * (urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6) - * - * @param val URN-representation of the UUID - * @return UUID, or null if invalid URN - */ - public static UUID fromURN(String val) { - - byte[] uuid = new byte[16]; - - if (URN_PATTERN.matcher(val).matches()) { - - int inoff = 0; - int outoff = 9; - - for (int j = 0; j < 4; j++) { - - uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); - - outoff += 2; - - } - - for (int i = 0; i < 3; i++) { - - outoff++; - - for (int j = 0; j < 2; j++) { - - uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); - outoff += 2; - } - } - - outoff++; - - for (int j = 0; j < 6; j++) { - - uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); - outoff += 2; - } - - return new UUID(uuid); - - } else { - - return null; - - } - - } - - final static char[] HEXMAP = "0123456789abcdef".toCharArray(); - final static char[] URNTEMPLATE = "urn:uuid:3e0993c0-66e0-11e4-9803-0800200c9a66".toCharArray(); - - @Override - public String toString() { - - char[] out = Arrays.copyOf(URNTEMPLATE, URNTEMPLATE.length); - - int inoff = 0; - int outoff = 9; - - for (int j = 0; j < 4; j++) { - - int v = value[inoff++] & 0xFF; - out[outoff++] = HEXMAP[v >>> 4]; - out[outoff++] = HEXMAP[v & 0x0F]; - - } - - for (int i = 0; i < 3; i++) { - - outoff++; - - for (int j = 0; j < 2; j++) { - - int v = value[inoff++] & 0xFF; - out[outoff++] = HEXMAP[v >>> 4]; - out[outoff++] = HEXMAP[v & 0x0F]; - - } - } - - outoff++; - - for (int j = 0; j < 6; j++) { - - int v = value[inoff++] & 0xFF; - out[outoff++] = HEXMAP[v >>> 4]; - out[outoff++] = HEXMAP[v & 0x0F]; - - } - - return new String(out); - } - -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import java.io.UnsupportedEncodingException; +import java.net.URI; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.security.SecureRandom; +import java.util.Arrays; +import java.util.regex.Pattern; + +/** + * Represents a UUID as specified in FRC 4122 + */ +public class UUID { + + private byte[] value; + + private UUID() { + } + + /** + * Instantiates a UUID from a sequence of 16 bytes + * + * @param uuid Sequence of 16 bytes + */ + public UUID(byte[] uuid) { + this.value = java.util.Arrays.copyOf(uuid, 16); + } + + /** + * Returns the sequence of bytes that make up the UUID (in the order specified by RFC 4122) + * + * @return Sequence of 16 bytes + */ + public byte[] getValue() { + return this.value; + } + + @Override + public int hashCode() { + int hash = 7; + hash = 37 * hash + Arrays.hashCode(this.value); + return hash; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + final UUID other = (UUID) obj; + if (!Arrays.equals(this.value, other.value)) { + return false; + } + return true; + } + + private final static Pattern URN_PATTERN = Pattern.compile("urn:uuid:[a-fA-F0-9]{8}-(?:[a-fA-F0-9]{4}-){3}[a-fA-F0-9]{12}"); + + /** + * Generate a Class 4 random UUID + * @return Class 4 UUID + */ + public static UUID fromRandom() { + SecureRandom random = new SecureRandom(); + byte bytes[] = new byte[16]; + random.nextBytes(bytes); + + bytes[6] = (byte) ((bytes[6] & 0x0f) | 0x4f); + bytes[8] = (byte) ((bytes[8] & 0x3f) | 0x7f); + + return new UUID(bytes); + } + + /** + * Generate a Class 5 UUID from a URI + * @param uri URI + * @return Class 5 UUID + */ + public static UUID fromURIName(URI uri) { + MessageDigest digest; + + UUID nsid = UUID.fromURN("urn:uuid:6ba7b811-9dad-11d1-80b4-00c04fd430c8"); + + try { + digest = MessageDigest.getInstance("SHA-1"); + digest.update(nsid.getValue()); + digest.update(uri.toString().getBytes("ASCII")); + } catch (NoSuchAlgorithmException | UnsupportedEncodingException ex) { + throw new RuntimeException(ex); + } + + byte[] result = digest.digest(); + + result[6] = (byte) ((result[6] & 0x0f) | 0x5f); + result[8] = (byte) ((result[8] & 0x3f) | 0x7f); + + return new UUID(result); + } + + /** + * Creates a UUID from a URN + * (urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6) + * + * @param val URN-representation of the UUID + * @return UUID, or null if invalid URN + */ + public static UUID fromURN(String val) { + + byte[] uuid = new byte[16]; + + if (URN_PATTERN.matcher(val).matches()) { + + int inoff = 0; + int outoff = 9; + + for (int j = 0; j < 4; j++) { + + uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); + + outoff += 2; + + } + + for (int i = 0; i < 3; i++) { + + outoff++; + + for (int j = 0; j < 2; j++) { + + uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); + outoff += 2; + } + } + + outoff++; + + for (int j = 0; j < 6; j++) { + + uuid[inoff++] = (byte) Integer.parseInt(val.substring(outoff, outoff + 2), 16); + outoff += 2; + } + + return new UUID(uuid); + + } else { + + return null; + + } + + } + + final static char[] HEXMAP = "0123456789abcdef".toCharArray(); + final static char[] URNTEMPLATE = "urn:uuid:3e0993c0-66e0-11e4-9803-0800200c9a66".toCharArray(); + + @Override + public String toString() { + + char[] out = Arrays.copyOf(URNTEMPLATE, URNTEMPLATE.length); + + int inoff = 0; + int outoff = 9; + + for (int j = 0; j < 4; j++) { + + int v = value[inoff++] & 0xFF; + out[outoff++] = HEXMAP[v >>> 4]; + out[outoff++] = HEXMAP[v & 0x0F]; + + } + + for (int i = 0; i < 3; i++) { + + outoff++; + + for (int j = 0; j < 2; j++) { + + int v = value[inoff++] & 0xFF; + out[outoff++] = HEXMAP[v >>> 4]; + out[outoff++] = HEXMAP[v & 0x0F]; + + } + } + + outoff++; + + for (int j = 0; j < 6; j++) { + + int v = value[inoff++] & 0xFF; + out[outoff++] = HEXMAP[v >>> 4]; + out[outoff++] = HEXMAP[v & 0x0F]; + + } + + return new String(out); + } + +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java b/src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java rename to src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java index a6ddbd2..f7edde5 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java +++ b/src/main/java/com/sandflow/smpte/util/xml/AUIDAdapter.java @@ -1,62 +1,62 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util.xml; - -import com.sandflow.smpte.util.AUID; -import com.sandflow.smpte.util.UL; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -/** - * Unmarshals/marshals an xsd:string to/from a AIUD - */ -public class AUIDAdapter extends XmlAdapter { - - @Override - public AUID unmarshal(String val) throws Exception { - - AUID auid; - - if (val.charAt(15) == '.') { - byte[] ul = new byte[16]; - - for (int i = 0; i < 16; i++) { - ul[i] = (byte) Integer.parseInt(val.substring(13 + i * 3, 13 + i * 3 + 2), 16); - } - - auid = new AUID(new UL(ul)); - } else { - - auid = AUID.fromURN(val); - } - - return auid; - } - - @Override - public String marshal(AUID val) throws Exception { - return val.toString(); - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util.xml; + +import com.sandflow.smpte.util.AUID; +import com.sandflow.smpte.util.UL; +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Unmarshals/marshals an xsd:string to/from a AIUD + */ +public class AUIDAdapter extends XmlAdapter { + + @Override + public AUID unmarshal(String val) throws Exception { + + AUID auid; + + if (val.charAt(15) == '.') { + byte[] ul = new byte[16]; + + for (int i = 0; i < 16; i++) { + ul[i] = (byte) Integer.parseInt(val.substring(13 + i * 3, 13 + i * 3 + 2), 16); + } + + auid = new AUID(new UL(ul)); + } else { + + auid = AUID.fromURN(val); + } + + return auid; + } + + @Override + public String marshal(AUID val) throws Exception { + return val.toString(); + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java b/src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java rename to src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java index bec9ba5..271d9fc 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java +++ b/src/main/java/com/sandflow/smpte/util/xml/HexBinaryByteAdapter.java @@ -1,55 +1,55 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util.xml; - -import static javax.xml.bind.DatatypeConverter.parseHexBinary; -import static javax.xml.bind.DatatypeConverter.printHexBinary; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -/** - * Unmarshals/marshals a byte from/to an xsd:string - */ -public class HexBinaryByteAdapter extends XmlAdapter { - - @Override - public Byte unmarshal(String s) throws Exception { - - byte[] val = parseHexBinary(s); - - if (val.length != 1) throw new Exception(); - - return val[0]; - } - - @Override - public String marshal(Byte val) throws Exception { - byte[] out = new byte[1]; - - out[0] = val; - - return printHexBinary(out); - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util.xml; + +import static javax.xml.bind.DatatypeConverter.parseHexBinary; +import static javax.xml.bind.DatatypeConverter.printHexBinary; +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Unmarshals/marshals a byte from/to an xsd:string + */ +public class HexBinaryByteAdapter extends XmlAdapter { + + @Override + public Byte unmarshal(String s) throws Exception { + + byte[] val = parseHexBinary(s); + + if (val.length != 1) throw new Exception(); + + return val[0]; + } + + @Override + public String marshal(Byte val) throws Exception { + byte[] out = new byte[1]; + + out[0] = val; + + return printHexBinary(out); + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java b/src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java rename to src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java index cdfcbb0..e2585e6 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java +++ b/src/main/java/com/sandflow/smpte/util/xml/HexBinaryLongAdapter.java @@ -1,76 +1,76 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util.xml; - -import java.util.Arrays; -import javax.xml.bind.DatatypeConverter; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -/** - * Unmarshals/marshals a hexadecimal integer from/to an xsd:string value - */ -public class HexBinaryLongAdapter extends XmlAdapter { - - @Override - public Long unmarshal(String s) throws Exception { - - byte[] val = DatatypeConverter.parseHexBinary(s); - - if (val.length > 4) throw new Exception(); - - long out = 0; - - for(int i = 0; i < val.length; i++) { - out = out << 8 | (val[i] & 0xFF); - } - - return out; - } - - @Override - public String marshal(Long val) throws Exception { - byte[] out = new byte[8]; - - long l = val; - - for(int i = out.length - 1; i >= 0; i--) { - out[i] = (byte) (l & 0xFF); - l >>= 8; - } - - /* look for the first non-zero value */ - - int first = 0; - - for(; first < out.length - 1; first++) { - if (out[first] != 0) break; - } - - return DatatypeConverter.printHexBinary( - Arrays.copyOfRange(out, first, out.length) - ); - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util.xml; + +import java.util.Arrays; +import javax.xml.bind.DatatypeConverter; +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Unmarshals/marshals a hexadecimal integer from/to an xsd:string value + */ +public class HexBinaryLongAdapter extends XmlAdapter { + + @Override + public Long unmarshal(String s) throws Exception { + + byte[] val = DatatypeConverter.parseHexBinary(s); + + if (val.length > 4) throw new Exception(); + + long out = 0; + + for(int i = 0; i < val.length; i++) { + out = out << 8 | (val[i] & 0xFF); + } + + return out; + } + + @Override + public String marshal(Long val) throws Exception { + byte[] out = new byte[8]; + + long l = val; + + for(int i = out.length - 1; i >= 0; i--) { + out[i] = (byte) (l & 0xFF); + l >>= 8; + } + + /* look for the first non-zero value */ + + int first = 0; + + for(; first < out.length - 1; first++) { + if (out[first] != 0) break; + } + + return DatatypeConverter.printHexBinary( + Arrays.copyOfRange(out, first, out.length) + ); + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java b/src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java rename to src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java index d1c84ba..dc08350 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java +++ b/src/main/java/com/sandflow/smpte/util/xml/ULAdapter.java @@ -1,45 +1,45 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util.xml; - -import com.sandflow.smpte.util.UL; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -/** - * Unmarshals/marshals an xsd:string to/from a SMPTE UL - */ -public class ULAdapter extends XmlAdapter { - - @Override - public UL unmarshal(String val) throws Exception { - return UL.fromURN(val); - } - - @Override - public String marshal(UL val) throws Exception { - return val.toString(); - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util.xml; + +import com.sandflow.smpte.util.UL; +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Unmarshals/marshals an xsd:string to/from a SMPTE UL + */ +public class ULAdapter extends XmlAdapter { + + @Override + public UL unmarshal(String val) throws Exception { + return UL.fromURN(val); + } + + @Override + public String marshal(UL val) throws Exception { + return val.toString(); + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java b/src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java similarity index 97% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java rename to src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java index c15d7e5..287bd37 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java +++ b/src/main/java/com/sandflow/smpte/util/xml/UUIDAdapter.java @@ -1,45 +1,45 @@ -/* - * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util.xml; - -import com.sandflow.smpte.util.UUID; -import javax.xml.bind.annotation.adapters.XmlAdapter; - -/** - * Unmarshals/marshals an xsd:string to/from a UUID - */ -public class UUIDAdapter extends XmlAdapter { - - @Override - public UUID unmarshal(String val) throws Exception { - return UUID.fromURN(val); - } - - @Override - public String marshal(UUID val) throws Exception { - return val.toString(); - } -} +/* + * Copyright (c) 2014, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util.xml; + +import com.sandflow.smpte.util.UUID; +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Unmarshals/marshals an xsd:string to/from a UUID + */ +public class UUIDAdapter extends XmlAdapter { + + @Override + public UUID unmarshal(String val) throws Exception { + return UUID.fromURN(val); + } + + @Override + public String marshal(UUID val) throws Exception { + return val.toString(); + } +} diff --git a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/package-info.java b/src/main/java/com/sandflow/smpte/util/xml/package-info.java similarity index 98% rename from regxmllib/src/main/java/com/sandflow/smpte/util/xml/package-info.java rename to src/main/java/com/sandflow/smpte/util/xml/package-info.java index c348a08..f99b543 100644 --- a/regxmllib/src/main/java/com/sandflow/smpte/util/xml/package-info.java +++ b/src/main/java/com/sandflow/smpte/util/xml/package-info.java @@ -1,30 +1,30 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/** - * Defines {@link javax.xml.bind.annotation.adapters.XmlAdapter} implementations for SMPTE-related structures - */ -package com.sandflow.smpte.util.xml; +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * Defines {@link javax.xml.bind.annotation.adapters.XmlAdapter} implementations for SMPTE-related structures + */ +package com.sandflow.smpte.util.xml; diff --git a/regxmllib/src/main/java/com/sandflow/util/events/BasicEvent.java b/src/main/java/com/sandflow/util/events/BasicEvent.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/util/events/BasicEvent.java rename to src/main/java/com/sandflow/util/events/BasicEvent.java diff --git a/regxmllib/src/main/java/com/sandflow/util/events/Event.java b/src/main/java/com/sandflow/util/events/Event.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/util/events/Event.java rename to src/main/java/com/sandflow/util/events/Event.java diff --git a/regxmllib/src/main/java/com/sandflow/util/events/EventHandler.java b/src/main/java/com/sandflow/util/events/EventHandler.java similarity index 100% rename from regxmllib/src/main/java/com/sandflow/util/events/EventHandler.java rename to src/main/java/com/sandflow/util/events/EventHandler.java diff --git a/regxmllib/src/main/resources/reg.xsd b/src/main/resources/reg.xsd similarity index 97% rename from regxmllib/src/main/resources/reg.xsd rename to src/main/resources/reg.xsd index 9a96918..bee00e4 100644 --- a/regxmllib/src/main/resources/reg.xsd +++ b/src/main/resources/reg.xsd @@ -1,102 +1,102 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/regxmllib/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp b/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp similarity index 56% rename from regxmllib/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp rename to src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp index f4e33e2..0fff341 100644 --- a/regxmllib/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp +++ b/src/test/cpp/com/sandflow/smpte/dict/MetaDictionaryTest.cpp @@ -37,15 +37,14 @@ #include #include -XERCES_CPP_NAMESPACE_USE using namespace rxml; -const XMLCh* _getFirstTextNodeText(DOMElement *e) { +const XMLCh* _getFirstTextNodeText(xercesc::DOMElement *e) { - for (DOMNode *n = e->getFirstChild(); n != NULL; n = n->getNextSibling()) { + for (xercesc::DOMNode *n = e->getFirstChild(); n != NULL; n = n->getNextSibling()) { - if (n->getNodeType() == DOMNode::TEXT_NODE) { + if (n->getNodeType() == xercesc::DOMNode::TEXT_NODE) { return n->getNodeValue(); @@ -57,18 +56,18 @@ const XMLCh* _getFirstTextNodeText(DOMElement *e) { } -bool _compareDOMElements(DOMElement *e1, DOMElement *e2) { +bool _compareDOMElements(xercesc::DOMElement *e1, xercesc::DOMElement *e2) { - if (XMLString::compareIString(e1->getNamespaceURI(), e2->getNamespaceURI()) != 0) { + if (xercesc::XMLString::compareIString(e1->getNamespaceURI(), e2->getNamespaceURI()) != 0) { return false; } - if (XMLString::compareIString(e1->getLocalName(), e2->getLocalName()) != 0) { + if (xercesc::XMLString::compareIString(e1->getLocalName(), e2->getLocalName()) != 0) { return false; } - DOMNamedNodeMap *attrs1 = e1->getAttributes(); - DOMNamedNodeMap *attrs2 = e2->getAttributes(); + xercesc::DOMNamedNodeMap *attrs1 = e1->getAttributes(); + xercesc::DOMNamedNodeMap *attrs2 = e2->getAttributes(); if (attrs1->getLength() != attrs2->getLength()) { return false; @@ -76,28 +75,28 @@ bool _compareDOMElements(DOMElement *e1, DOMElement *e2) { for (XMLSize_t i = 0; i < attrs1->getLength(); i++) { - DOMAttr* a1 = (DOMAttr*) attrs1->item(i); + xercesc::DOMAttr* a1 = (xercesc::DOMAttr*) attrs1->item(i); - DOMAttr* a2 = (DOMAttr*)attrs2->getNamedItemNS(a1->getNamespaceURI(), a1->getLocalName()); + xercesc::DOMAttr* a2 = (xercesc::DOMAttr*)attrs2->getNamedItemNS(a1->getNamespaceURI(), a1->getLocalName()); if (a2 == NULL) { return false; } - if (XMLString::compareIString(a1->getValue(), a2->getValue()) != 0) { + if (xercesc::XMLString::compareIString(a1->getValue(), a2->getValue()) != 0) { return false; } } - DOMElement *c1 = e1->getFirstElementChild(); - DOMElement *c2 = e2->getFirstElementChild(); + xercesc::DOMElement *c1 = e1->getFirstElementChild(); + xercesc::DOMElement *c2 = e2->getFirstElementChild(); /* TODO: detect mixed contents */ if (c1 == NULL && c2 == NULL) { - if (XMLString::compareIString(e1->getTextContent(), e2->getTextContent()) != 0) { + if (xercesc::XMLString::compareIString(e1->getTextContent(), e2->getTextContent()) != 0) { return false; } @@ -121,20 +120,20 @@ bool _compareDOMElements(DOMElement *e1, DOMElement *e2) { } -class MyErrorHandler : public ErrorHandler { +class MyErrorHandler : public xercesc::ErrorHandler { public: // Inherited via ErrorHandler - virtual void warning(const SAXParseException & exc) { + virtual void warning(const xercesc::SAXParseException & exc) { std::cout << DOMHelper::toUTF8(exc.getMessage()); } - virtual void error(const SAXParseException & exc) { + virtual void error(const xercesc::SAXParseException & exc) { std::cout << DOMHelper::toUTF8(exc.getMessage()); } - virtual void fatalError(const SAXParseException & exc) { + virtual void fatalError(const xercesc::SAXParseException & exc) { std::cout << DOMHelper::toUTF8(exc.getMessage()) ; } @@ -170,36 +169,38 @@ int main(int argc, char **argv) { int ret_val = 0; - char const *dicts_fname[] = { "www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml" - ,"www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml" - ,"www-smpte-ra-org-reg-335-2012-13-4-archive.xml" - ,"www-smpte-ra-org-reg-335-2012-13-12-as11.xml" - ,"www-smpte-ra-org-reg-335-2012-13-13.xml" - ,"www-smpte-ra-org-reg-395-2014.xml" - ,"www-smpte-ra-org-reg-395-2014-13-1-aaf.xml" - ,"www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml" - ,"www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml" - ,"www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml" - ,"www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml" - ,"www-smpte-ra-org-reg-395-2014-13-4-archive.xml" - ,"www-smpte-ra-org-reg-395-2014-13-12-as11.xml" - ,"www-smpte-ra-org-reg-395-2014-13-13.xml" - ,"www-smpte-ra-org-reg-2003-2012.xml" - ,"www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml" - ,"www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml" - ,"www-smpte-ra-org-reg-2003-2012-13-4-archive.xml" - ,"www-smpte-ra-org-reg-2003-2012-13-12-as11.xml" - ,"www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml" - ,"www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml" - ,"www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml" - ,"www-smpte-ra-org-reg-335-2012.xml" - ,"www-smpte-ra-org-reg-335-2012-13-1-aaf.xml" - ,"www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml" - ,"www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml" }; - - XMLPlatformUtils::Initialize(); - - XercesDOMParser *parser = new XercesDOMParser(); + char const *dicts_fname[] = { "www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml", + "www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml", + "www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml", + "www-smpte-ra-org-reg-335-2012.xml", + "www-smpte-ra-org-reg-335-2012-13-1-aaf.xml", + "www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml", + "www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml", + "www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml", + "www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml", + "www-smpte-ra-org-reg-335-2012-13-4-archive.xml", + "www-smpte-ra-org-reg-335-2012-13-12-as11.xml", + "www-smpte-ra-org-reg-335-2012-13-13.xml", + "www-smpte-ra-org-reg-335-2012-14-9.xml", + "www-smpte-ra-org-reg-395-2014.xml", + "www-smpte-ra-org-reg-395-2014-13-1-aaf.xml", + "www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml", + "www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml", + "www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml", + "www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml", + "www-smpte-ra-org-reg-395-2014-13-4-archive.xml", + "www-smpte-ra-org-reg-395-2014-13-12-as11.xml", + "www-smpte-ra-org-reg-395-2014-13-13.xml", + "www-smpte-ra-org-reg-395-2014-14-9.xml", + "www-smpte-ra-org-reg-2003-2012.xml", + "www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml", + "www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml", + "www-smpte-ra-org-reg-2003-2012-13-4-archive.xml", + "www-smpte-ra-org-reg-2003-2012-13-12-as11.xml" }; + + xercesc::XMLPlatformUtils::Initialize(); + + xercesc::XercesDOMParser *parser = new xercesc::XercesDOMParser(); MyErrorHandler handler; parser->setErrorHandler(&handler); @@ -220,7 +221,7 @@ int main(int argc, char **argv) { parser->parse(dict_path.c_str()); - DOMDocument *doc = parser->getDocument(); + xercesc::DOMDocument *doc = parser->getDocument(); MetaDictionary *md = new MetaDictionary(); @@ -230,10 +231,10 @@ int main(int argc, char **argv) { } - XMLCh tempStr[3] = { chLatin_L, chLatin_S, chNull }; - DOMImplementation *impl = DOMImplementationRegistry::getDOMImplementation(tempStr); - DOMLSSerializer *ser = ((DOMImplementationLS*)impl)->createLSSerializer(); - DOMLSOutput *output = ((DOMImplementationLS*)impl)->createLSOutput(); + XMLCh tempStr[3] = { xercesc::chLatin_L, xercesc::chLatin_S, xercesc::chNull }; + xercesc::DOMImplementation *impl = xercesc::DOMImplementationRegistry::getDOMImplementation(tempStr); + xercesc::DOMLSSerializer *ser = ((xercesc::DOMImplementationLS*)impl)->createLSSerializer(); + xercesc::DOMLSOutput *output = ((xercesc::DOMImplementationLS*)impl)->createLSOutput(); /*XMLFormatTarget *ft = new StdOutFormatTarget();*/ @@ -243,7 +244,9 @@ int main(int argc, char **argv) { "video1", "video2", "indirect", - "utf8_embedded_text" + "utf8_embedded_text", + "class14", + "escape-chars" }; for (size_t i = 0; i < sizeof(test_names) / sizeof(char*); i++) { @@ -251,18 +254,18 @@ int main(int argc, char **argv) { std::cout << "Processing input file: " << test_names[i] << std::endl; std::string out_fname = std::string(test_names[i]) + ".mxf.xml"; - std::string ref_fname = "resources/reference-files/" + std::string(test_names[i]) + ".xml"; - std::string in_fname = "resources/sample-files/" + std::string(test_names[i]) + ".mxf"; + std::string ref_fname = "resources/regxml-files/" + std::string(test_names[i]) + ".xml"; + std::string in_fname = "resources/mxf-files/" + std::string(test_names[i]) + ".mxf"; - LocalFileFormatTarget *ft = new LocalFileFormatTarget(out_fname.c_str()); + xercesc::LocalFileFormatTarget *ft = new xercesc::LocalFileFormatTarget(out_fname.c_str()); output->setByteStream(ft); - if (ser->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true)) - ser->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true); + if (ser->getDomConfig()->canSetParameter(xercesc::XMLUni::fgDOMWRTFormatPrettyPrint, true)) + ser->getDomConfig()->setParameter(xercesc::XMLUni::fgDOMWRTFormatPrettyPrint, true); - DOMDocument *doc = impl->createDocument(); + xercesc::DOMDocument *doc = impl->createDocument(); std::ifstream f(in_fname.c_str(), std::ifstream::in | std::ifstream::binary); @@ -275,7 +278,7 @@ int main(int argc, char **argv) { continue; } - DOMDocumentFragment* frag = MXFFragmentBuilder::fromInputStream(f, mds, NULL, NULL, *doc, &evthandler); + xercesc::DOMDocumentFragment* frag = MXFFragmentBuilder::fromInputStream(f, mds, NULL, NULL, *doc, &evthandler); doc->appendChild(frag); @@ -287,7 +290,7 @@ int main(int argc, char **argv) { parser->parse(ref_fname.c_str()); - DOMDocument *ref_doc = parser->getDocument(); + xercesc::DOMDocument *ref_doc = parser->getDocument(); if (!_compareDOMElements(ref_doc->getDocumentElement(), doc->getDocumentElement())) { @@ -299,6 +302,7 @@ int main(int argc, char **argv) { doc->release(); + delete ft; } /* free heap */ @@ -311,9 +315,9 @@ int main(int argc, char **argv) { output->release(); ser->release(); + delete parser; - - XMLPlatformUtils::Terminate(); + xercesc::XMLPlatformUtils::Terminate(); return ret_val; } \ No newline at end of file diff --git a/regxmllib/src/test/cpp/com/sandflow/smpte/util/AUIDTest.cpp b/src/test/cpp/com/sandflow/smpte/util/AUIDTest.cpp similarity index 100% rename from regxmllib/src/test/cpp/com/sandflow/smpte/util/AUIDTest.cpp rename to src/test/cpp/com/sandflow/smpte/util/AUIDTest.cpp diff --git a/regxmllib/src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java b/src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java similarity index 89% rename from regxmllib/src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java rename to src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java index 6701c7b..6a58965 100644 --- a/regxmllib/src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java +++ b/src/test/java/com/sandflow/smpte/mxf/MXFFilesTest.java @@ -45,7 +45,7 @@ public MXFFilesTest(String testName) { public void testSeekFooterPartition() throws Exception { /* get the sample files */ - URI uri = ClassLoader.getSystemResource("resources/sample-files/audio1.mxf").toURI(); + URI uri = ClassLoader.getSystemResource("mxf-files/audio1.mxf").toURI(); assertNotNull(uri); @@ -56,7 +56,7 @@ public void testSeekFooterPartition() throws Exception { public void testSeekFooterPartitionOpenIncompleteHeader() throws Exception { /* get the sample files */ - URI uri = ClassLoader.getSystemResource("resources/sample-files/open-incomplete-header.mxf").toURI(); + URI uri = ClassLoader.getSystemResource("mxf-files/open-incomplete-header.mxf").toURI(); assertNotNull(uri); @@ -67,7 +67,7 @@ public void testSeekFooterPartitionOpenIncompleteHeader() throws Exception { public void testSeekHeaderPartition() throws Exception { /* get the sample files */ - URI uri = ClassLoader.getSystemResource("resources/sample-files/audio1.mxf").toURI(); + URI uri = ClassLoader.getSystemResource("mxf-files/audio1.mxf").toURI(); assertNotNull(uri); diff --git a/regxmllib/src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java b/src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java similarity index 98% rename from regxmllib/src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java rename to src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java index 9ca75d8..237e768 100644 --- a/regxmllib/src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java +++ b/src/test/java/com/sandflow/smpte/register/model2016/GroupsRegisterTest.java @@ -49,7 +49,7 @@ protected void setUp() throws Exception { super.setUp(); /* load the registers */ - Reader fg = new InputStreamReader(ClassLoader.getSystemResourceAsStream("resources/registers/brown_sauce/Groups.xml")); + Reader fg = new InputStreamReader(ClassLoader.getSystemResourceAsStream("registers/brown_sauce/Groups.xml")); assertNotNull(fg); groups = GroupsRegister.fromXML(fg); diff --git a/regxmllib/src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java b/src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java similarity index 74% rename from regxmllib/src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java rename to src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java index c95da0f..f513381 100644 --- a/regxmllib/src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java +++ b/src/test/java/com/sandflow/smpte/regxml/MXFFragmentBuilderTest.java @@ -1,409 +1,489 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.regxml; - -import com.sandflow.smpte.klv.exceptions.KLVException; -import com.sandflow.smpte.register.ElementsRegister; -import com.sandflow.smpte.register.GroupsRegister; -import com.sandflow.smpte.register.TypesRegister; -import com.sandflow.smpte.register.exceptions.DuplicateEntryException; -import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; -import static com.sandflow.smpte.regxml.dict.importers.RegisterImporter.fromRegister; -import com.sandflow.smpte.util.UL; -import com.sandflow.util.events.Event; -import com.sandflow.util.events.EventHandler; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.Reader; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.logging.Logger; -import javax.xml.bind.JAXBException; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import javax.xml.parsers.ParserConfigurationException; -import junit.framework.TestCase; -import org.w3c.dom.Document; -import org.w3c.dom.DocumentFragment; -import org.w3c.dom.Element; -import org.w3c.dom.Node; -import org.w3c.dom.NodeList; -import org.xml.sax.SAXException; - -/** - * - * @author Pierre-Anthony Lemieux (pal@sandflow.com) - */ -public class MXFFragmentBuilderTest extends TestCase { - - private final static Logger LOG = Logger.getLogger(MXFFragmentBuilderTest.class.getName()); - - private static final UL PREFACE_KEY - = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); - - private MetaDictionaryCollection mds_catsup; - private MetaDictionaryCollection mds_brown_sauce; - private DocumentBuilder db; - - public MXFFragmentBuilderTest(String testName) { - super(testName); - } - - private MetaDictionaryCollection buildDictionaryCollection( - String er_path, - String gr_path, - String tr_path - ) throws JAXBException, IOException, DuplicateEntryException, Exception { - - /* load the registers */ - Reader fe = new InputStreamReader(ClassLoader.getSystemResourceAsStream(er_path)); - assertNotNull(fe); - - Reader fg = new InputStreamReader(ClassLoader.getSystemResourceAsStream(gr_path)); - assertNotNull(fg); - - Reader ft = new InputStreamReader(ClassLoader.getSystemResourceAsStream(tr_path)); - assertNotNull(ft); - - ElementsRegister ereg = ElementsRegister.fromXML(fe); - assertNotNull(ereg); - - GroupsRegister greg = GroupsRegister.fromXML(fg); - assertNotNull(greg); - - TypesRegister treg = TypesRegister.fromXML(ft); - assertNotNull(treg); - - /* build the dictionaries */ - EventHandler evthandler = new EventHandler() { - - @Override - public boolean handle(Event evt) { - - String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); - - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(msg); - break; - case INFO: - LOG.info(msg); - break; - case WARN: - LOG.warning(msg); - } - return true; - } - }; - - return fromRegister(treg, greg, ereg, evthandler); - - } - - @Override - protected void setUp() throws Exception { - super.setUp(); - - /* build the dictionaries */ - mds_catsup = buildDictionaryCollection( - "resources/registers/catsup/Elements.xml", - "resources/registers/catsup/Groups.xml", - "resources/registers/catsup/Types.xml" - ); - - assertNotNull(mds_catsup); - - /* build the dictionaries */ - mds_brown_sauce = buildDictionaryCollection( - "resources/registers/brown_sauce/Elements.xml", - "resources/registers/brown_sauce/Groups.xml", - "resources/registers/brown_sauce/Types.xml" - ); - - assertNotNull(mds_brown_sauce); - - /* setup the doc builder */ - DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); - dbf.setNamespaceAware(true); - dbf.setCoalescing(true); - dbf.setIgnoringElementContentWhitespace(true); - dbf.setIgnoringComments(true); - db = dbf.newDocumentBuilder(); - - assertNotNull(db); - } - - @Override - protected void tearDown() throws Exception { - super.tearDown(); - } - - private void compareGeneratedVsRef(MetaDictionaryCollection mds, String spath, String refpath) throws IOException, SAXException, KLVException, MXFFragmentBuilder.MXFException, ParserConfigurationException, FragmentBuilder.RuleException { - - /* get the sample files */ - InputStream sampleis = ClassLoader.getSystemResourceAsStream(spath); - assertNotNull(sampleis); - - /* build the regxml fragment */ - Document gendoc = db.newDocument(); - - assertNotNull(gendoc); - - EventHandler evthandler = new EventHandler() { - - @Override - public boolean handle(Event evt) { - - String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); - - switch (evt.getSeverity()) { - case ERROR: - case FATAL: - LOG.severe(msg); - break; - case INFO: - LOG.info(msg); - break; - case WARN: - LOG.warning(msg); - } - return true; - } - }; - - DocumentFragment gendf = MXFFragmentBuilder.fromInputStream(sampleis, mds, null, evthandler, PREFACE_KEY, gendoc); - - assertNotNull(gendf); - - gendoc.appendChild(gendf); - - - /* load the reference document */ - InputStream refis = ClassLoader.getSystemResourceAsStream(refpath); - assertNotNull(refis); - - Document refdoc = db.parse(refis); - assertNotNull(refdoc); - - /* compare the ref vs the generated */ - assertTrue(compareDOMElement(gendoc.getDocumentElement(), refdoc.getDocumentElement())); - - } - - public void testAudio1AgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/audio1.mxf", "resources/reference-files/audio1.xml"); - - } - - public void testAudio2AgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/audio2.mxf", "resources/reference-files/audio2.xml"); - - } - - public void testVideo1AgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/video1.mxf", "resources/reference-files/video1.xml"); - - } - - public void testVideo2AgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/video2.mxf", "resources/reference-files/video2.xml"); - - } - - public void testIndirectAgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/indirect.mxf", "resources/reference-files/indirect.xml"); - - } - - public void testUTF8AgainstCatsup() throws Exception { - - compareGeneratedVsRef(mds_catsup, "resources/sample-files/utf8_embedded_text.mxf", "resources/reference-files/utf8_embedded_text.xml"); - - } - - public void testAudio1AgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/audio1.mxf", "resources/reference-files/audio1.xml"); - - } - - public void testAudio2AgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/audio2.mxf", "resources/reference-files/audio2.xml"); - - } - - public void testVideo1AgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/video1.mxf", "resources/reference-files/video1.xml"); - - } - - public void testVideo2AgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/video2.mxf", "resources/reference-files/video2.xml"); - - } - - public void testIndirectAgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/indirect.mxf", "resources/reference-files/indirect.xml"); - - } - - public void testUTF8AgainstBrownSauce() throws Exception { - - compareGeneratedVsRef(mds_brown_sauce, "resources/sample-files/utf8_embedded_text.mxf", "resources/reference-files/utf8_embedded_text.xml"); - - } - - static Map getAttributes(Element e) { - - NodeList nl = e.getChildNodes(); - HashMap m = new HashMap<>(); - - for (int i = 0; i < nl.getLength(); i++) { - - if (nl.item(i).getNodeType() == Node.ATTRIBUTE_NODE) { - m.put(nl.item(i).getNodeName(), nl.item(i).getNodeValue()); - } - - } - - return m; - } - - static List getElements(Element e) { - - NodeList nl = e.getChildNodes(); - ArrayList m = new ArrayList<>(); - - for (int i = 0; i < nl.getLength(); i++) { - - if (nl.item(i).getNodeType() == Node.ELEMENT_NODE) { - m.add((Element) nl.item(i)); - } - - } - - return m; - } - - String getFirstTextNodeText(Element e) { - for (Node n = e.getFirstChild(); n != null; n = n.getNextSibling()) { - if (n.getNodeType() == Node.TEXT_NODE) { - return n.getNodeValue(); - } - } - - return ""; - } - - boolean compareDOMElement(Element el1, Element el2) { - - List elems1 = getElements(el1); - List elems2 = getElements(el2); - - if (elems1.size() != elems2.size()) { - - System.out.println( - String.format( - "Sub element count of %s does not match reference.", - el1.getLocalName()) - ); - - System.out.println("Left:"); - System.out.println(elems1); - System.out.println("Right:"); - System.out.println(elems2); - - return false; - } - - Map attrs1 = getAttributes(el1); - Map attrs2 = getAttributes(el2); - - for (Entry entry : attrs1.entrySet()) { - if (!entry.getValue().equals(attrs2.get(entry.getKey()))) { - - System.out.println( - String.format( - "Attribute %s with value %s does not match reference.", - entry.getKey(), - entry.getValue()) - ); - - return false; - } - } - - for (int i = 0; i < elems1.size(); i++) { - - if (!elems1.get(i).getNodeName().equals(elems2.get(i).getNodeName())) { - - System.out.println( - String.format( - "Element %s does not match reference.", - elems1.get(i).getNodeName()) - ); - - return false; - } - - String txt1 = getFirstTextNodeText(elems1.get(i)).trim(); - String txt2 = getFirstTextNodeText(elems2.get(i)).trim(); - - if (!txt1.equals(txt2)) { - System.out.println( - String.format( - "Text content at %s ('%s') does not match reference ('%s')", - elems1.get(i).getNodeName(), - txt1, - txt2) - ); - return false; - } - - if (!compareDOMElement(elems1.get(i), elems2.get(i))) { - return false; - } - } - - return true; - - } - -} +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.register.ElementsRegister; +import com.sandflow.smpte.register.GroupsRegister; +import com.sandflow.smpte.register.TypesRegister; +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import static com.sandflow.smpte.regxml.dict.importers.RegisterImporter.fromRegister; +import com.sandflow.smpte.util.UL; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.logging.Logger; +import javax.xml.bind.JAXBException; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import junit.framework.TestCase; +import org.w3c.dom.Document; +import org.w3c.dom.DocumentFragment; +import org.w3c.dom.Element; +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; +import org.xml.sax.SAXException; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class MXFFragmentBuilderTest extends TestCase { + + private final static Logger LOG = Logger.getLogger(MXFFragmentBuilderTest.class.getName()); + + private static final UL PREFACE_KEY + = UL.fromURN("urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00"); + + private MetaDictionaryCollection mds_catsup; + private MetaDictionaryCollection mds_brown_sauce; + private MetaDictionaryCollection mds_snapshot; + private MetaDictionaryCollection mds_ponzu; + + private DocumentBuilder db; + + public MXFFragmentBuilderTest(String testName) { + super(testName); + } + + private MetaDictionaryCollection buildDictionaryCollection( + String er_path, + String gr_path, + String tr_path + ) throws JAXBException, IOException, DuplicateEntryException, Exception { + + /* load the registers */ + Reader fe = new InputStreamReader(ClassLoader.getSystemResourceAsStream(er_path)); + assertNotNull(fe); + + Reader fg = new InputStreamReader(ClassLoader.getSystemResourceAsStream(gr_path)); + assertNotNull(fg); + + Reader ft = new InputStreamReader(ClassLoader.getSystemResourceAsStream(tr_path)); + assertNotNull(ft); + + ElementsRegister ereg = ElementsRegister.fromXML(fe); + assertNotNull(ereg); + + GroupsRegister greg = GroupsRegister.fromXML(fg); + assertNotNull(greg); + + TypesRegister treg = TypesRegister.fromXML(ft); + assertNotNull(treg); + + /* build the dictionaries */ + EventHandler evthandler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case FATAL: + LOG.severe(msg); + return false; + case INFO: + LOG.info(msg); + break; + case ERROR: + case WARN: + LOG.warning(msg); + } + return true; + } + }; + + return fromRegister(treg, greg, ereg, evthandler); + + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + + /* build the dictionaries */ + mds_catsup = buildDictionaryCollection( + "registers/catsup/Elements.xml", + "registers/catsup/Groups.xml", + "registers/catsup/Types.xml" + ); + + assertNotNull(mds_catsup); + + /* build the dictionaries */ + mds_brown_sauce = buildDictionaryCollection( + "registers/brown_sauce/Elements.xml", + "registers/brown_sauce/Groups.xml", + "registers/brown_sauce/Types.xml" + ); + + assertNotNull(mds_brown_sauce); + + /* build the dictionaries */ + mds_snapshot = buildDictionaryCollection( + "registers/snapshot/Elements.xml", + "registers/snapshot/Groups.xml", + "registers/snapshot/Types.xml" + ); + + assertNotNull(mds_snapshot); + + mds_ponzu = buildDictionaryCollection( + "registers/ponzu/Elements.xml", + "registers/ponzu/Groups.xml", + "registers/ponzu/Types.xml" + ); + + assertNotNull(mds_ponzu); + + + /* setup the doc builder */ + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + dbf.setNamespaceAware(true); + dbf.setCoalescing(true); + dbf.setIgnoringElementContentWhitespace(true); + dbf.setIgnoringComments(true); + db = dbf.newDocumentBuilder(); + + assertNotNull(db); + } + + @Override + protected void tearDown() throws Exception { + super.tearDown(); + } + + private void compareGeneratedVsRef(MetaDictionaryCollection mds, String spath, String refpath) throws IOException, SAXException, KLVException, MXFFragmentBuilder.MXFException, ParserConfigurationException, FragmentBuilder.RuleException { + + /* get the sample files */ + InputStream sampleis = ClassLoader.getSystemResourceAsStream(spath); + assertNotNull(sampleis); + + /* build the regxml fragment */ + Document gendoc = db.newDocument(); + + assertNotNull(gendoc); + + EventHandler evthandler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case FATAL: + LOG.severe(msg); + return false; + case INFO: + LOG.info(msg); + break; + case ERROR: + case WARN: + LOG.warning(msg); + } + return true; + } + }; + + DocumentFragment gendf = MXFFragmentBuilder.fromInputStream(sampleis, mds, null, evthandler, PREFACE_KEY, gendoc); + + assertNotNull(gendf); + + gendoc.appendChild(gendf); + + + /* load the reference document */ + InputStream refis = ClassLoader.getSystemResourceAsStream(refpath); + assertNotNull(refis); + + Document refdoc = db.parse(refis); + assertNotNull(refdoc); + + /* compare the ref vs the generated */ + assertTrue(compareDOMElement(gendoc.getDocumentElement(), refdoc.getDocumentElement())); + + } + + public void testAudio1AgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/audio1.mxf", "regxml-files/audio1.xml"); + + } + + public void testAudio2AgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/audio2.mxf", "regxml-files/audio2.xml"); + + } + + public void testVideo1AgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/video1.mxf", "regxml-files/video1.xml"); + + } + + public void testVideo2AgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/video2.mxf", "regxml-files/video2.xml"); + + } + + public void testIndirectAgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/indirect.mxf", "regxml-files/indirect.xml"); + + } + + public void testUTF8AgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/utf8_embedded_text.mxf", "regxml-files/utf8_embedded_text.xml"); + + } + + public void testEscapeCharsAgainstCatsup() throws Exception { + + compareGeneratedVsRef(mds_catsup, "mxf-files/escape-chars.mxf", "regxml-files/escape-chars.xml"); + + } + + public void testAudio1AgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/audio1.mxf", "regxml-files/audio1.xml"); + + } + + public void testAudio2AgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/audio2.mxf", "regxml-files/audio2.xml"); + + } + + public void testVideo1AgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/video1.mxf", "regxml-files/video1.xml"); + + } + + public void testVideo2AgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/video2.mxf", "regxml-files/video2.xml"); + + } + + public void testIndirectAgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/indirect.mxf", "regxml-files/indirect.xml"); + + } + + public void testUTF8AgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/utf8_embedded_text.mxf", "regxml-files/utf8_embedded_text.xml"); + + } + + public void testEscapeCharsAgainstBrownSauce() throws Exception { + + compareGeneratedVsRef(mds_brown_sauce, "mxf-files/escape-chars.mxf", "regxml-files/escape-chars.xml"); + + } + + public void testClass14AgainstSnapshot() throws Exception { + + compareGeneratedVsRef(mds_snapshot, "mxf-files/class14.mxf", "regxml-files/class14.xml"); + } + + public void testAudio1AgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/audio1.mxf", "regxml-files/audio1.xml"); + + } + + public void testAudio2AgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/audio2.mxf", "regxml-files/audio2.xml"); + + } + + public void testVideo1AgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/video1.mxf", "regxml-files/video1.xml"); + + } + + public void testVideo2AgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/video2.mxf", "regxml-files/video2.xml"); + + } + + public void testIndirectAgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/indirect.mxf", "regxml-files/indirect.xml"); + + } + + public void testUTF8AgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/utf8_embedded_text.mxf", "regxml-files/utf8_embedded_text.xml"); + + } + + public void testEscapeCharsAgainstPonzu() throws Exception { + + compareGeneratedVsRef(mds_ponzu, "mxf-files/escape-chars.mxf", "regxml-files/escape-chars.xml"); + + } + + static Map getAttributes(Element e) { + + NodeList nl = e.getChildNodes(); + HashMap m = new HashMap<>(); + + for (int i = 0; i < nl.getLength(); i++) { + + if (nl.item(i).getNodeType() == Node.ATTRIBUTE_NODE) { + m.put(nl.item(i).getNodeName(), nl.item(i).getNodeValue()); + } + + } + + return m; + } + + static List getElements(Element e) { + + NodeList nl = e.getChildNodes(); + ArrayList m = new ArrayList<>(); + + for (int i = 0; i < nl.getLength(); i++) { + + if (nl.item(i).getNodeType() == Node.ELEMENT_NODE) { + m.add((Element) nl.item(i)); + } + + } + + return m; + } + + String getFirstTextNodeText(Element e) { + for (Node n = e.getFirstChild(); n != null; n = n.getNextSibling()) { + if (n.getNodeType() == Node.TEXT_NODE) { + return n.getNodeValue(); + } + } + + return ""; + } + + boolean compareDOMElement(Element el1, Element el2) { + + List elems1 = getElements(el1); + List elems2 = getElements(el2); + + if (elems1.size() != elems2.size()) { + + System.out.println( + String.format( + "Sub element count of %s does not match reference.", + el1.getLocalName()) + ); + + System.out.println("Left:"); + System.out.println(elems1); + System.out.println("Right:"); + System.out.println(elems2); + + return false; + } + + Map attrs1 = getAttributes(el1); + Map attrs2 = getAttributes(el2); + + for (Entry entry : attrs1.entrySet()) { + if (!entry.getValue().equals(attrs2.get(entry.getKey()))) { + + System.out.println( + String.format( + "Attribute %s with value %s does not match reference.", + entry.getKey(), + entry.getValue()) + ); + + return false; + } + } + + for (int i = 0; i < elems1.size(); i++) { + + if (!elems1.get(i).getNodeName().equals(elems2.get(i).getNodeName())) { + + System.out.println( + String.format( + "Element %s does not match reference.", + elems1.get(i).getNodeName()) + ); + + return false; + } + + String txt1 = getFirstTextNodeText(elems1.get(i)).trim(); + String txt2 = getFirstTextNodeText(elems2.get(i)).trim(); + + if (!txt1.equals(txt2)) { + System.out.println( + String.format( + "Text content at %s ('%s') does not match reference ('%s')", + elems1.get(i).getNodeName(), + txt1, + txt2) + ); + return false; + } + + if (!compareDOMElement(elems1.get(i), elems2.get(i))) { + return false; + } + } + + return true; + + } + +} diff --git a/src/test/java/com/sandflow/smpte/regxml/XMLSchemaBuilderTest.java b/src/test/java/com/sandflow/smpte/regxml/XMLSchemaBuilderTest.java new file mode 100644 index 0000000..902430c --- /dev/null +++ b/src/test/java/com/sandflow/smpte/regxml/XMLSchemaBuilderTest.java @@ -0,0 +1,226 @@ +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.regxml; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.register.ElementsRegister; +import com.sandflow.smpte.register.GroupsRegister; +import com.sandflow.smpte.register.TypesRegister; +import com.sandflow.smpte.register.exceptions.DuplicateEntryException; +import com.sandflow.smpte.regxml.dict.MetaDictionary; +import com.sandflow.smpte.regxml.dict.MetaDictionaryCollection; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; +import static com.sandflow.smpte.regxml.dict.importers.RegisterImporter.fromRegister; +import com.sandflow.util.events.Event; +import com.sandflow.util.events.EventHandler; +import java.io.EOFException; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; +import java.util.logging.Logger; +import javax.xml.bind.JAXBException; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.TransformerException; +import junit.framework.TestCase; +import org.xml.sax.SAXException; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class XMLSchemaBuilderTest extends TestCase { + + private final static Logger LOG = Logger.getLogger(XMLSchemaBuilderTest.class.getName()); + + private MetaDictionaryCollection mds_catsup; + private MetaDictionaryCollection mds_brown_sauce; + private MetaDictionaryCollection mds_ponzu; + private MetaDictionaryCollection mds_snapshot; + + public XMLSchemaBuilderTest(String testName) { + super(testName); + } + + private MetaDictionaryCollection buildDictionaryCollection( + String er_path, + String gr_path, + String tr_path + ) throws JAXBException, IOException, DuplicateEntryException, Exception { + + /* load the registers */ + Reader fe = new InputStreamReader(ClassLoader.getSystemResourceAsStream(er_path)); + assertNotNull(fe); + + Reader fg = new InputStreamReader(ClassLoader.getSystemResourceAsStream(gr_path)); + assertNotNull(fg); + + Reader ft = new InputStreamReader(ClassLoader.getSystemResourceAsStream(tr_path)); + assertNotNull(ft); + + ElementsRegister ereg = ElementsRegister.fromXML(fe); + assertNotNull(ereg); + + GroupsRegister greg = GroupsRegister.fromXML(fg); + assertNotNull(greg); + + TypesRegister treg = TypesRegister.fromXML(ft); + assertNotNull(treg); + + /* build the dictionaries */ + EventHandler evthandler = new EventHandler() { + + @Override + public boolean handle(Event evt) { + + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(msg); + break; + case INFO: + LOG.info(msg); + break; + case WARN: + LOG.warning(msg); + } + return true; + } + }; + + return fromRegister(treg, greg, ereg, evthandler); + + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + + /* build the dictionaries */ + mds_catsup = buildDictionaryCollection( + "registers/catsup/Elements.xml", + "registers/catsup/Groups.xml", + "registers/catsup/Types.xml" + ); + + assertNotNull(mds_catsup); + + /* build the dictionaries */ + mds_brown_sauce = buildDictionaryCollection( + "registers/brown_sauce/Elements.xml", + "registers/brown_sauce/Groups.xml", + "registers/brown_sauce/Types.xml" + ); + + assertNotNull(mds_brown_sauce); + + /* build the dictionaries */ + mds_ponzu = buildDictionaryCollection( + "registers/ponzu/Elements.xml", + "registers/ponzu/Groups.xml", + "registers/ponzu/Types.xml" + ); + + assertNotNull(mds_ponzu); + + /* build the dictionaries */ + mds_snapshot = buildDictionaryCollection( + "registers/snapshot/Elements.xml", + "registers/snapshot/Groups.xml", + "registers/snapshot/Types.xml" + ); + + assertNotNull(mds_snapshot); + + } + + @Override + protected void tearDown() throws Exception { + super.tearDown(); + } + + private void generateXMLSchema(MetaDictionaryCollection mds) throws ParserConfigurationException, KLVException, XMLSchemaBuilder.RuleException, SAXException, IOException { + + /* create the fragment builder */ + XMLSchemaBuilder sb = new XMLSchemaBuilder( + mds, + new EventHandler() { + + @Override + public boolean handle(Event evt) { + String msg = evt.getCode().getClass().getCanonicalName() + "::" + evt.getCode().toString() + " " + evt.getMessage(); + + switch (evt.getSeverity()) { + case ERROR: + case FATAL: + LOG.severe(msg); + break; + case INFO: + LOG.info(msg); + break; + case WARN: + LOG.warning(msg); + break; + } + return true; + } + } + ); + + for (MetaDictionary md : mds.getDictionaries()) { + + sb.fromDictionary(md); + } + + } + + public void testAgainstBrownSauce() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + generateXMLSchema(mds_brown_sauce); + + } + + public void testAgainstCatsup() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + generateXMLSchema(mds_catsup); + + } + + public void testAgainstPonzu() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + generateXMLSchema(mds_ponzu); + + } + + public void testAgainstSnapshot() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + generateXMLSchema(mds_snapshot); + + } + +} diff --git a/src/test/java/com/sandflow/smpte/tools/RegXMLDumpTest.java b/src/test/java/com/sandflow/smpte/tools/RegXMLDumpTest.java new file mode 100644 index 0000000..6601305 --- /dev/null +++ b/src/test/java/com/sandflow/smpte/tools/RegXMLDumpTest.java @@ -0,0 +1,103 @@ +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.tools; + +import java.io.ByteArrayOutputStream; +import java.io.EOFException; +import java.io.File; +import java.io.IOException; +import java.io.PrintStream; +import java.nio.file.Paths; +import java.util.ArrayList; + +import javax.xml.bind.JAXBException; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.TransformerException; + +import com.sandflow.smpte.klv.exceptions.KLVException; +import com.sandflow.smpte.regxml.FragmentBuilder; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDefinitionException; +import com.sandflow.smpte.regxml.dict.exceptions.IllegalDictionaryException; + +import junit.framework.TestCase; + +/** + * + * @author Pierre-Anthony Lemieux (pal@sandflow.com) + */ +public class RegXMLDumpTest extends TestCase { + + public RegXMLDumpTest(String testName) { + super(testName); + } + + public void testMetadictionaryDirectory() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + String args[] = new String[] { + "-all", + "-d", + Paths.get(ClassLoader.getSystemResource("regxml-dicts").toURI()).toString(), + "-i", + Paths.get(ClassLoader.getSystemResource("mxf-files/video1.mxf").toURI()).toString() + }; + + final PrintStream oldStdout = System.out; + final PrintStream nullStdout = new PrintStream(new ByteArrayOutputStream()); + System.setOut(nullStdout); + RegXMLDump.main(args); + System.setOut(oldStdout); + + } + + public void testMetadictionaryFiles() throws IOException, EOFException, KLVException, ParserConfigurationException, JAXBException, FragmentBuilder.RuleException, TransformerException, IllegalDefinitionException, IllegalDictionaryException, Exception { + + ArrayList args = new ArrayList(); + + args.add("-all"); + + args.add("-d"); + + File mds[] = (new File(ClassLoader.getSystemResource("regxml-dicts").toURI())).listFiles(); + + for(int i = 0; i < mds.length; i++) { + + args.add(mds[i].getAbsolutePath()); + + } + + args.add("-i"); + + args.add(Paths.get(ClassLoader.getSystemResource("mxf-files/video1.mxf").toURI()).toString()); + + final PrintStream oldStdout = System.out; + final PrintStream nullStdout = new PrintStream(new ByteArrayOutputStream()); + System.setOut(nullStdout); + RegXMLDump.main(args.toArray(new String[args.size()])); + System.setOut(oldStdout); + + } + +} diff --git a/regxmllib/src/test/java/com/sandflow/smpte/util/HalfFloatTest.java b/src/test/java/com/sandflow/smpte/util/HalfFloatTest.java similarity index 97% rename from regxmllib/src/test/java/com/sandflow/smpte/util/HalfFloatTest.java rename to src/test/java/com/sandflow/smpte/util/HalfFloatTest.java index 3e7c5ec..b9e8cbc 100644 --- a/regxmllib/src/test/java/com/sandflow/smpte/util/HalfFloatTest.java +++ b/src/test/java/com/sandflow/smpte/util/HalfFloatTest.java @@ -1,57 +1,57 @@ -/* - * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package com.sandflow.smpte.util; - -import junit.framework.TestCase; - -/** - * Half-float unit tests. - */ -public class HalfFloatTest extends TestCase { - - public HalfFloatTest(String testName) { - super(testName); - } - - /** - * Test of toDouble method, of class HalfFloat. - */ - public void testToDouble() { - assertEquals(1.0d, HalfFloat.toDouble(0b0011110000000000)); - assertEquals(1.0009765625d, HalfFloat.toDouble(0b0011110000000001)); - assertEquals(-2d, HalfFloat.toDouble(0b1100000000000000)); - assertEquals(65504d, HalfFloat.toDouble(0b0111101111111111)); - assertEquals(Math.pow(2, -14), HalfFloat.toDouble(0b0000010000000000)); - assertEquals(Math.pow(2, -14) - Math.pow(2, -24), HalfFloat.toDouble(0b0000001111111111)); - assertEquals(Math.pow(2, -24), HalfFloat.toDouble(0b0000000000000001)); - assertEquals(0.0d, HalfFloat.toDouble(0b0000000000000000)); - assertEquals(-0.0d, HalfFloat.toDouble(0b1000000000000000)); - assertEquals(Double.POSITIVE_INFINITY, HalfFloat.toDouble(0b0111110000000000)); - assertEquals(Double.NEGATIVE_INFINITY, HalfFloat.toDouble(0b1111110000000000)); - assertEquals(0.333251953125d, HalfFloat.toDouble(0b0011010101010101)); - } - -} +/* + * Copyright (c) 2015, Pierre-Anthony Lemieux (pal@sandflow.com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import junit.framework.TestCase; + +/** + * Half-float unit tests. + */ +public class HalfFloatTest extends TestCase { + + public HalfFloatTest(String testName) { + super(testName); + } + + /** + * Test of toDouble method, of class HalfFloat. + */ + public void testToDouble() { + assertEquals(1.0d, HalfFloat.toDouble(0b0011110000000000)); + assertEquals(1.0009765625d, HalfFloat.toDouble(0b0011110000000001)); + assertEquals(-2d, HalfFloat.toDouble(0b1100000000000000)); + assertEquals(65504d, HalfFloat.toDouble(0b0111101111111111)); + assertEquals(Math.pow(2, -14), HalfFloat.toDouble(0b0000010000000000)); + assertEquals(Math.pow(2, -14) - Math.pow(2, -24), HalfFloat.toDouble(0b0000001111111111)); + assertEquals(Math.pow(2, -24), HalfFloat.toDouble(0b0000000000000001)); + assertEquals(0.0d, HalfFloat.toDouble(0b0000000000000000)); + assertEquals(-0.0d, HalfFloat.toDouble(0b1000000000000000)); + assertEquals(Double.POSITIVE_INFINITY, HalfFloat.toDouble(0b0111110000000000)); + assertEquals(Double.NEGATIVE_INFINITY, HalfFloat.toDouble(0b1111110000000000)); + assertEquals(0.333251953125d, HalfFloat.toDouble(0b0011010101010101)); + } + +} diff --git a/src/test/java/com/sandflow/smpte/util/UMIDTest.java b/src/test/java/com/sandflow/smpte/util/UMIDTest.java new file mode 100644 index 0000000..5380d85 --- /dev/null +++ b/src/test/java/com/sandflow/smpte/util/UMIDTest.java @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2018, pal + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package com.sandflow.smpte.util; + +import junit.framework.TestCase; + +public class UMIDTest extends TestCase { + + public UMIDTest(String testName) { + super(testName); + } + + public void testFromURN() { + UMID umid1 = UMID.fromURN("urn:smpte:umid:060A2B34.01010105.01010D20.13000000.D2C9036C.8F195343.AB7014D2.D718BFDA"); + byte[] value = umid1.getValue(); + assertEquals(32, value.length); + assertEquals((byte) 0x06, value[0]); + assertEquals((byte) 0x0A, value[1]); + assertEquals((byte) 0x2B, value[2]); + assertEquals((byte) 0x34, value[3]); + assertEquals((byte) 0x01, value[4]); + assertEquals((byte) 0x01, value[5]); + assertEquals((byte) 0x01, value[6]); + assertEquals((byte) 0x05, value[7]); + assertEquals((byte) 0x01, value[8]); + assertEquals((byte) 0x01, value[9]); + assertEquals((byte) 0x0D, value[10]); + assertEquals((byte) 0x20, value[11]); + assertEquals((byte) 0x13, value[12]); + assertEquals((byte) 0x00, value[13]); + assertEquals((byte) 0x00, value[14]); + assertEquals((byte) 0x00, value[15]); + assertEquals((byte) 0xD2, value[16]); + assertEquals((byte) 0xC9, value[17]); + assertEquals((byte) 0x03, value[18]); + assertEquals((byte) 0x6C, value[19]); + assertEquals((byte) 0x8F, value[20]); + assertEquals((byte) 0x19, value[21]); + assertEquals((byte) 0x53, value[22]); + assertEquals((byte) 0x43, value[23]); + assertEquals((byte) 0xAB, value[24]); + assertEquals((byte) 0x70, value[25]); + assertEquals((byte) 0x14, value[26]); + assertEquals((byte) 0xD2, value[27]); + assertEquals((byte) 0xD7, value[28]); + assertEquals((byte) 0x18, value[29]); + assertEquals((byte) 0xBF, value[30]); + assertEquals((byte) 0xDA, value[31]); + } + +} diff --git a/regxmllib/src/test/resources/sample-files/audio1.mxf b/src/test/resources/mxf-files/audio1.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/audio1.mxf rename to src/test/resources/mxf-files/audio1.mxf diff --git a/regxmllib/src/test/resources/sample-files/audio2.mxf b/src/test/resources/mxf-files/audio2.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/audio2.mxf rename to src/test/resources/mxf-files/audio2.mxf diff --git a/src/test/resources/mxf-files/class14.mxf b/src/test/resources/mxf-files/class14.mxf new file mode 100644 index 0000000..a6802ad Binary files /dev/null and b/src/test/resources/mxf-files/class14.mxf differ diff --git a/src/test/resources/mxf-files/escape-chars.mxf b/src/test/resources/mxf-files/escape-chars.mxf new file mode 100644 index 0000000..6354054 Binary files /dev/null and b/src/test/resources/mxf-files/escape-chars.mxf differ diff --git a/regxmllib/src/test/resources/sample-files/indirect.mxf b/src/test/resources/mxf-files/indirect.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/indirect.mxf rename to src/test/resources/mxf-files/indirect.mxf diff --git a/regxmllib/src/test/resources/sample-files/open-incomplete-header.mxf b/src/test/resources/mxf-files/open-incomplete-header.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/open-incomplete-header.mxf rename to src/test/resources/mxf-files/open-incomplete-header.mxf diff --git a/regxmllib/src/test/resources/sample-files/utf8_embedded_text.mxf b/src/test/resources/mxf-files/utf8_embedded_text.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/utf8_embedded_text.mxf rename to src/test/resources/mxf-files/utf8_embedded_text.mxf diff --git a/regxmllib/src/test/resources/sample-files/video1.mxf b/src/test/resources/mxf-files/video1.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/video1.mxf rename to src/test/resources/mxf-files/video1.mxf diff --git a/regxmllib/src/test/resources/sample-files/video2.mxf b/src/test/resources/mxf-files/video2.mxf similarity index 100% rename from regxmllib/src/test/resources/sample-files/video2.mxf rename to src/test/resources/mxf-files/video2.mxf diff --git a/regxmllib/src/test/resources/registers/brown_sauce/Elements.xml b/src/test/resources/registers/brown_sauce/Elements.xml similarity index 100% rename from regxmllib/src/test/resources/registers/brown_sauce/Elements.xml rename to src/test/resources/registers/brown_sauce/Elements.xml diff --git a/regxmllib/src/test/resources/registers/brown_sauce/Groups.xml b/src/test/resources/registers/brown_sauce/Groups.xml similarity index 100% rename from regxmllib/src/test/resources/registers/brown_sauce/Groups.xml rename to src/test/resources/registers/brown_sauce/Groups.xml diff --git a/regxmllib/src/test/resources/registers/brown_sauce/Labels.xml b/src/test/resources/registers/brown_sauce/Labels.xml similarity index 100% rename from regxmllib/src/test/resources/registers/brown_sauce/Labels.xml rename to src/test/resources/registers/brown_sauce/Labels.xml diff --git a/regxmllib/src/test/resources/registers/brown_sauce/Types.xml b/src/test/resources/registers/brown_sauce/Types.xml similarity index 100% rename from regxmllib/src/test/resources/registers/brown_sauce/Types.xml rename to src/test/resources/registers/brown_sauce/Types.xml diff --git a/regxmllib/src/test/resources/registers/catsup/Elements.xml b/src/test/resources/registers/catsup/Elements.xml similarity index 100% rename from regxmllib/src/test/resources/registers/catsup/Elements.xml rename to src/test/resources/registers/catsup/Elements.xml diff --git a/regxmllib/src/test/resources/registers/catsup/Groups.xml b/src/test/resources/registers/catsup/Groups.xml similarity index 100% rename from regxmllib/src/test/resources/registers/catsup/Groups.xml rename to src/test/resources/registers/catsup/Groups.xml diff --git a/regxmllib/src/test/resources/registers/catsup/Labels.xml b/src/test/resources/registers/catsup/Labels.xml similarity index 100% rename from regxmllib/src/test/resources/registers/catsup/Labels.xml rename to src/test/resources/registers/catsup/Labels.xml diff --git a/regxmllib/src/test/resources/registers/catsup/Types.xml b/src/test/resources/registers/catsup/Types.xml similarity index 100% rename from regxmllib/src/test/resources/registers/catsup/Types.xml rename to src/test/resources/registers/catsup/Types.xml diff --git a/src/test/resources/registers/ponzu/Elements.xml b/src/test/resources/registers/ponzu/Elements.xml new file mode 100644 index 0000000..e1171df --- /dev/null +++ b/src/test/resources/registers/ponzu/Elements.xml @@ -0,0 +1,45160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Elements + http://www.smpte-ra.org/reg/335/2012 + Elements +
                urn:smpte:ul:060e2b34.01010101.00000000.00000000
              + NODE + ELEMENTS + Register of individual Metadata Elements + SMPTE ST 335 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifiersAndLocators +
                urn:smpte:ul:060e2b34.01010101.01000000.00000000
              + NODE + IDENTIFIERS AND LOCATORS + Class 1 metadata is reserved for abstract Identifiers and Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01010000.00000000
              + NODE + Globally Unique Identifiers + Unique identifiers and locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDVideo +
                urn:smpte:ul:060a2b34.01010101.01010100.00000000
              + NODE + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_10 +
                urn:smpte:ul:060a2b34.01010101.01010110.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_11 +
                urn:smpte:ul:060a2b34.01010101.01010111.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_12 +
                urn:smpte:ul:060a2b34.01010101.01010112.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_20 +
                urn:smpte:ul:060a2b34.01010101.01010120.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_21 +
                urn:smpte:ul:060a2b34.01010101.01010121.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_22 +
                urn:smpte:ul:060a2b34.01010101.01010122.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDAudio +
                urn:smpte:ul:060a2b34.01010101.01010200.00000000
              + NODE + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_10 +
                urn:smpte:ul:060a2b34.01010101.01010210.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_11 +
                urn:smpte:ul:060a2b34.01010101.01010211.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_12 +
                urn:smpte:ul:060a2b34.01010101.01010212.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_20 +
                urn:smpte:ul:060a2b34.01010101.01010220.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_21 +
                urn:smpte:ul:060a2b34.01010101.01010221.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_22 +
                urn:smpte:ul:060a2b34.01010101.01010222.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDData +
                urn:smpte:ul:060a2b34.01010101.01010300.00000000
              + NODE + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_10 +
                urn:smpte:ul:060a2b34.01010101.01010310.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_11 +
                urn:smpte:ul:060a2b34.01010101.01010311.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_12 +
                urn:smpte:ul:060a2b34.01010101.01010312.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_20 +
                urn:smpte:ul:060a2b34.01010101.01010320.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_21 +
                urn:smpte:ul:060a2b34.01010101.01010321.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_22 +
                urn:smpte:ul:060a2b34.01010101.01010322.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSystem +
                urn:smpte:ul:060a2b34.01010101.01010400.00000000
              + NODE + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_10 +
                urn:smpte:ul:060a2b34.01010101.01010410.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_11 +
                urn:smpte:ul:060a2b34.01010101.01010411.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_12 +
                urn:smpte:ul:060a2b34.01010101.01010412.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_20 +
                urn:smpte:ul:060a2b34.01010101.01010420.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_21 +
                urn:smpte:ul:060a2b34.01010101.01010421.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_22 +
                urn:smpte:ul:060a2b34.01010101.01010422.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDPicture +
                urn:smpte:ul:060e2b34.01010105.01010500.00000000
              + NODE + UMID Picture + SMPTE330M UMID for single picture component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiPicture +
                urn:smpte:ul:060e2b34.01010105.01010600.00000000
              + NODE + UMID Multi Picture + SMPTE330M UMID for multiple picture component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSound +
                urn:smpte:ul:060e2b34.01010105.01010800.00000000
              + NODE + UMID Sound + SMPTE330M UMID for single sound component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiSound +
                urn:smpte:ul:060e2b34.01010105.01010900.00000000
              + NODE + UMID Multi Sound + SMPTE330M UMID for multiple sound component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSingleData +
                urn:smpte:ul:060e2b34.01010105.01010b00.00000000
              + NODE + UMID Single Data + SMPTE330M UMID for single data component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiData +
                urn:smpte:ul:060e2b34.01010105.01010c00.00000000
              + NODE + UMID Multi Data + SMPTE330M UMID for multiple data component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMixed +
                urn:smpte:ul:060e2b34.01010105.01010d00.00000000
              + NODE + UMID Mixed + SMPTE330M UMID for mixed group of components + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDGeneral +
                urn:smpte:ul:060e2b34.01010105.01010f00.00000000
              + NODE + UMID General + SMPTE330M UMID for unspecified components + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalBroadcastingOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011000.00000000
              + NODE + International Broadcasting Organization Identifiers + Internationally recognized identifiers registered by broadcasting organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01011001.00000000
              + LEAF + Organization ID + The broadcasting organization concerned + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationID +
                urn:smpte:ul:060e2b34.01010103.01011001.01000000
              + LEAF + Organization ID + The internationally recognized unique identifier for a broadcasting organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIDKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01011002.00000000
              + LEAF + Organization ID Kind + Specifies the identification system in use. E.g. OUT, ITU, EBU, Callsign etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIDKind +
                urn:smpte:ul:060e2b34.01010104.01011002.01000000
              + LEAF + Organization ID Kind + Specifies the identification system in use. E.g. OUT, ITU, EBU, Callsign etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011003.00000000
              + NODE + Program Identifiers + Globally unique program identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UPID +
                urn:smpte:ul:060e2b34.01010101.01011003.01000000
              + LEAF + UPID + A Unique Program Identifier (ATSC A/57) for a program as a Work + ATSC standard ATSC A/57 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UPN +
                urn:smpte:ul:060e2b34.01010101.01011003.02000000
              + LEAF + UPN + Unique Programme Number (ITVA) + As per ITVA standard (not yet ratified) + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01011003.03000000
              + LEAF + Program Number + Identifier for a program project + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalMediaIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011004.00000000
              + NODE + Physical Media Identifiers + Physical media identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011004.01000000
              + NODE + Tape Identifiers + Tape identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IBTN +
                urn:smpte:ul:060e2b34.01010101.01011004.01010000
              + LEAF + IBTN + EBU International Broadcast Tape Number + European Broadcasting Union IBTN + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalStandardIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011100.00000000
              + NODE + International Standard Identifiers + Internationally accepted Identifier Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISAN +
                urn:smpte:ul:060e2b34.01010101.01011101.00000000
              + LEAF + ISAN + ISO Audio-Visual Number + ISO 15706 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISBN +
                urn:smpte:ul:060e2b34.01010101.01011102.00000000
              + LEAF + ISBN + ISO Book Number + ISO 2108 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISSN +
                urn:smpte:ul:060e2b34.01010101.01011103.00000000
              + LEAF + ISSN + ISO Serial Number + ISO 3297 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISWC +
                urn:smpte:ul:060e2b34.01010101.01011104.00000000
              + LEAF + ISWC + ISO Musical Work Code + ISO 15707 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISMN +
                urn:smpte:ul:060e2b34.01010101.01011105.00000000
              + LEAF + ISMN + ISO Printed Music Number + ISO 10957 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISCI +
                urn:smpte:ul:060e2b34.01010101.01011106.00000000
              + LEAF + ISCI + American Association of Advertising Industries Commercial Identifier + http://www.aaaa.org/publications/search.asp + AAAA's ISCI + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISRC +
                urn:smpte:ul:060e2b34.01010101.01011107.00000000
              + LEAF + ISRC + ISO Recording Code + ISO 3901 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISRN +
                urn:smpte:ul:060e2b34.01010101.01011108.00000000
              + LEAF + ISRN + ISO Report Number + ISO 10444 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISBD +
                urn:smpte:ul:060e2b34.01010101.01011109.00000000
              + LEAF + ISBD + International Federation of Library Associations and Institutions Bibliographic Descriptor + http://www.ifla.org/VII/s13/pubs/isbd.htm + IFLA's ISBD + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISTC +
                urn:smpte:ul:060e2b34.01010101.0101110a.00000000
              + LEAF + ISTC + ISO Textual Work Code + ISO 21047 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalFullAdIDIdentifier +
                urn:smpte:ul:060e2b34.0101010c.0101110b.00000000
              + LEAF + Canonical Full Ad-ID Identifier + Identifier of type CanonicalFullAdIDIdentifierType + AdID + SMPTE RP 2092-1 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200900.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalDOIName +
                urn:smpte:ul:060e2b34.0101010e.0101110c.00000000
              + LEAF + Canonical DOI Name + Identifier of type CanonicalDOINameType + EIDR + RP 2079 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalEIDRIdentifier +
                urn:smpte:ul:060e2b34.0101010e.0101110d.00000000
              + LEAF + Canonical EIDR Identifier + Identifier of type CanonicalEIDRIdentifierType + EIDR + RP 2079 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompactAdIDIdentifier +
                urn:smpte:ul:060e2b34.0101010e.0101110e.00000000
              + LEAF + Compact Ad-ID Identifier + Identifier of type CompactAdIDIdentifierType + AdID + SMPTE RP 2092-1 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01012009.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalStandardCompoundIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011300.00000000
              + NODE + International Standard Compound Identifiers + Compound Identifiers based on an internationally accepted Standard + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SICI +
                urn:smpte:ul:060e2b34.01010101.01011301.00000000
              + LEAF + SICI + ANSI/NISO Serial Item and Contribution Identifier + http://sunsite.berkeley.edu/SICI/ + ANSI/NISO Z39.56 - 1996 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BICI +
                urn:smpte:ul:060e2b34.01010101.01011302.00000000
              + LEAF + BICI + ANSI/NISO Book Item and Component Identifier + http://www.niso.org/commitap.html + ANSI/NISO Z39.56 - 1997 (not yet ratified) + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AICI +
                urn:smpte:ul:060e2b34.01010101.01011303.00000000
              + LEAF + AICI + ANSI/NISO Audio-Visual Item and Component Identifier [proposed] + Not yet ratified + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PII +
                urn:smpte:ul:060e2b34.01010101.01011304.00000000
              + LEAF + PII + American Chemical Society Publisher Item Identifier + http://pubs.acs.org/journals/pubiden.html + ACS's PII + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011500.00000000
              + NODE + Object Identifiers + Object identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DOI +
                urn:smpte:ul:060e2b34.01010101.01011501.00000000
              + LEAF + DOI + International DOI Foundation Digital Object Identifier + http://www.doi.org + International DOI Foundation Digital Object Identifier + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InstanceID +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + LEAF + Instance ID + Unique ID of an instance + mxflib MXF + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectIdentification +
                urn:smpte:ul:060e2b34.01010102.01011503.00000000
              + LEAF + Definition Object ID + The unique identifier for the item being defined + AAF~Identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GlobalNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01011504.00000000
              + LEAF + Global Number + Organizationally-given global number used to identify subjects in the image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipID +
                urn:smpte:ul:060e2b34.01010105.01011508.00000000
              + LEAF + Clip ID + Clip ID as a basic UMID. Note that the value includes the whole UMID including the first 12 UL bytes + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedClipID +
                urn:smpte:ul:060e2b34.01010107.01011509.00000000
              + LEAF + Extended Clip ID + Clip ID as an Extended UMID. Note that the value includes the whole UMID including the first 12 UL bytes + DMS-1 + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 64 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipIDArray +
                urn:smpte:ul:060e2b34.01010107.0101150a.00000000
              + LEAF + Clip ID Array + An ordered array of Basic UMIDs + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020500.00000000 + 32*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedClipIDArray +
                urn:smpte:ul:060e2b34.01010107.0101150b.00000000
              + LEAF + Extended Clip ID Array + An ordered array of Extended UMIDs + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020600.00000000 + 64*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageID +
                urn:smpte:ul:060e2b34.01010101.01011510.00000000
              + LEAF + Package ID + Identifies the Metadata Object with a a unique identifier + AAF~MobID mxflib[:1.19]~PackageUID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextID +
                urn:smpte:ul:060e2b34.01010109.01011511.00000000
              + LEAF + Cryptographic Context ID + Identifies the Cryptographic Context used for data encryption + DMS-Crypto~ContextUniqueIdentifier + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ResourceID +
                urn:smpte:ul:060e2b34.0101010c.01011512.00000000
              + LEAF + Resource ID + A UUID that identifies a resource. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AncillaryResourceID +
                urn:smpte:ul:060e2b34.0101010c.01011513.00000000
              + LEAF + Ancillary Resource ID + A UUID value that identifies the ancillary resource. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EIDRDMSEssenceID +
                urn:smpte:ul:060e2b34.0101010e.01011514.00000000
              + LEAF + EIDR DMS Essence ID + EIDR Identifier for the essence associated with the Descriptive Framework Set + DMS-EIDR + SMPTE RP2089 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200800.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010108.01011540.00000000
              + NODE + Globally Unique Object Identifiers + Globally Unique Object Identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueHumanIdentifiers +
                urn:smpte:ul:060e2b34.01010108.01011540.01000000
              + NODE + Globally Unique Human Identifiers + Globally Unique Human Identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantID +
                urn:smpte:ul:060e2b34.01010108.01011540.01010000
              + LEAF + Participant ID + Unique identifier of a Participant set as the target of a generalized weak (global) reference + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactID +
                urn:smpte:ul:060e2b34.01010108.01011540.01020000
              + LEAF + Contact ID + Unique identifier of a Contact set as the target of a generalized weak (global) reference + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01012000.00000000
              + NODE + Device Identifiers + Unique identifiers for any device used in program production, such as cameras, microphones, editing, color grading, etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDesignation +
                urn:smpte:ul:060e2b34.01010101.01012001.00000000
              + LEAF + Device Designation + Identifies the "house name" of the device used in capturing or generating the essence + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceModel +
                urn:smpte:ul:060e2b34.01010101.01012003.00000000
              + LEAF + Device Model + Identifies the device model used in capturing or generating the essence. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceSerialNumber +
                urn:smpte:ul:060e2b34.01010101.01012004.00000000
              + LEAF + Device Serial Number + Alphanumeric serial number identifying the individual device + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IEEEDeviceIdentifier +
                urn:smpte:ul:060e2b34.01010102.01012005.00000000
              + LEAF + IEEE Device ID + Hex number identifying a device by manufacturer and device number + DMS-1 + IEEE 802 - Network Node ID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010c00.00000000 + 6 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceIDKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012007.00000000
              + LEAF + Device ID Kind + The type of identifier used to identify the device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012008.00000000
              + LEAF + Device Kind + Device Type expressed as a common name - e.g. camera, audio tape recorder, RAM, Hard disk etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKind +
                urn:smpte:ul:060e2b34.01010105.01012008.01000000
              + LEAF + Device Kind + Defines the kind of device used to capture or create the content (as either a commonly known name or as a locally defined name, e.g. Radio-camera) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKindCode +
                urn:smpte:ul:060e2b34.01010103.01012008.02000000
              + LEAF + Device Kind Code + Device Type expressed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAssetNumber +
                urn:smpte:ul:060e2b34.01010105.0101200c.00000000
              + LEAF + Device Asset Number + Defines the asset number of the device used in capturing or generating the content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01012100.00000000
              + NODE + Platform Identifiers + Organizationally given identifiers for platforms, vehicles, or mounts carrying devices or sensors + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformDesignation_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012101.00000000
              + LEAF + Platform Designation + Identifies the generic name of the platform carrying the device used in capturing or generating the essence + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformDesignation +
                urn:smpte:ul:060e2b34.01010109.01012101.01000000
              + LEAF + Platform Designation + Identifies the generic name of the platform carrying the device used in capturing or generating the essence + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformModel_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012102.00000000
              + LEAF + Platform Model + Identifies the platform model carrying the device used in capturing or generating the essence. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformSerialNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012103.00000000
              + LEAF + Platform Serial Number + Alphanumeric serial number identifying the individual platform carrying the device used in capturing or generating the essence. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueLocators +
                urn:smpte:ul:060e2b34.01010101.01020000.00000000
              + NODE + Globally Unique Locators + Globally Unique path definitions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UniformResourceLocators +
                urn:smpte:ul:060e2b34.01010101.01020100.00000000
              + NODE + Uniform Resource Locators + Unique Resource Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URL_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020101.00000000
              + LEAF + URL + Unique Resource Locator String + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URL +
                urn:smpte:ul:060e2b34.01010101.01020101.01000000
              + LEAF + URL + Unique Resource Locator String + AAF~URLString mxflib[:1.19]~URLString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable 255 chars max. +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PURL_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020102.00000000
              + LEAF + PURL + Persistent Universal Resource Locator + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URN_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020103.00000000
              + LEAF + URN + Unique Resource Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 256 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultNamespaceURI_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020104.00000000
              + LEAF + Default Namespace URI + The Uniform Resource Identifier (URI) of the default namespace for an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultNamespaceURI +
                urn:smpte:ul:060e2b34.01010108.01020104.01000000
              + LEAF + Default Namespace URI + The Uniform Resource Identifier (URI) of the default namespace for an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURI_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020105.00000000
              + LEAF + Namespace URI + A URI associated with a Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURI +
                urn:smpte:ul:060e2b34.01010108.01020105.01000000
              + LEAF + Namespace URI + A URI associated with a Namespace Prefix used in Qnames in an XML document + MXF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURIs_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020106.00000000
              + LEAF + Namespace URIs + A list of URIs associated with Namespace Prefixes used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURIs +
                urn:smpte:ul:060e2b34.01010108.01020106.01000000
              + LEAF + Namespace URIs + A list of URIs associated with Namespace Prefixes used in Qnames in an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraSettingFileURI +
                urn:smpte:ul:060e2b34.0101010d.01020108.02000000
              + LEAF + Camera Setting File URI + The Uniform Resource Identifier (URI) of the file containing the camera setup parameters. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocators +
                urn:smpte:ul:060e2b34.01010104.01020200.00000000
              + NODE + Registry Locators + Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTEUniversalLabelLocator +
                urn:smpte:ul:060e2b34.01010104.01020201.00000000
              + LEAF + SMPTE UL + SMPTE Universal Label Locators - the value is a UL in a public Registry + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationLocator +
                urn:smpte:ul:060e2b34.01010105.01020202.00000000
              + LEAF + Identification UL + Specifies the Universal Label that locates the identification kind in a dictionary. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationalPattern +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + LEAF + Operational Pattern UL + Specifies the SMPTE Universal Label that locates an Operational Pattern + AAF[1.1:] ASPA[:0.8] MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorGroups +
                urn:smpte:ul:060e2b34.01010104.01020210.00000000
              + NODE + Registry Locator Groups + Groups of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorOrderedGroupArrays +
                urn:smpte:ul:060e2b34.01010104.01020210.01000000
              + NODE + Registry Locator Ordered Group (Arrays) + Ordered Group (Array) of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainerArray +
                urn:smpte:ul:060e2b34.01010104.01020210.01010000
              + LEAF + Essence Container Array + An array of 'n' universal labels of all essence containers in the file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorUnorderedGroups +
                urn:smpte:ul:060e2b34.01010105.01020210.02000000
              + NODE + Registry Locator Unordered Groups + Unordered Groups of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainers +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + LEAF + Essence Containers + A batch of 'n' universal labels of all essence containers in the file + AAF[1.1:] ASPA[:0.8] MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveSchemes +
                urn:smpte:ul:060e2b34.01010105.01020210.02020000
              + LEAF + Descriptive Metadata Schemes + An unordered batch of 'n' Universal Labels of all the Descriptive Metadata schemes used in this file + AAF[1.1:] ASPA[:0.8] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSchemes +
                urn:smpte:ul:060e2b34.0101010c.01020210.02030000
              + LEAF + Application Scheme Batch + A batch of Universal Labels of all the Application Metadata schemes used in a file. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocallyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030000.00000000
              + NODE + Locally Unique Identifiers + Identifier unique to the local context + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdministrativeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030100.00000000
              + NODE + Administrative Identifiers + Identifiers relating to Business and Administration + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransmissionID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030101.00000000
              + LEAF + Transmission ID + Identifier for transmission control + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ArchiveID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030102.00000000
              + LEAF + Archive ID + Identifier for archival purposes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030103.00000000
              + LEAF + Item ID + Identifier of a content item + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AccountingReferenceNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030104.00000000
              + LEAF + Accounting Reference Number + Reference number for accounting purposes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrafficID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030105.00000000
              + LEAF + Traffic ID + Identifier for emmission management and/or billing + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectNumber +
                urn:smpte:ul:060e2b34.01010102.01030106.00000000
              + LEAF + Project Number + Identifier for a particular project or mission + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTargetID_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030107.00000000
              + LEAF + Local Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas in a motion imagery stream. The image originators are free to populate this field as needed with values from their own target naming or numbering system. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTargetID +
                urn:smpte:ul:060e2b34.01010109.01030107.01000000
              + LEAF + Local Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas in a motion imagery stream. The image originators are free to populate this field as needed with values from their own target naming or numbering system. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01030108.00000000
              + LEAF + Project Name + Name for a particular project or mission + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectName +
                urn:smpte:ul:060e2b34.01010105.01030108.01000000
              + LEAF + Project Name + Name for a particular project or mission + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NITFLayerTargetID_ISO7 +
                urn:smpte:ul:060e2b34.01010109.01030109.00000000
              + LEAF + NITF Layer Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas from an NITF (National Imagery Transmission Format) still image layer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NITFLayerTargetID +
                urn:smpte:ul:060e2b34.01010109.01030109.01000000
              + LEAF + NITF Layer Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas from an NITF (National Imagery Transmission Format) still image layer + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalPhysicalMediaIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030200.00000000
              + NODE + Local Physical Media Identifiers + Organizationally given identifiers for physical media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilmID +
                urn:smpte:ul:060e2b34.01010101.01030201.00000000
              + NODE + Local Film ID + Organizationally given identifiers for film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReelOrRollNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030201.01000000
              + LEAF + Reel or Roll Number + An organizationally given number for a film reel or roll. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeHeader +
                urn:smpte:ul:060e2b34.01010102.01030201.02000000
              + LEAF + Edge Code Header + An organizationally given header for a film reel or roll + AAF~Header + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTapeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030202.00000000
              + NODE + Local Tape Identifiers + Organizationally given identifiers for tape + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTapeNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030202.01000000
              + LEAF + Local Tape Number + An organizationally given number for a tape. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiskIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030203.00000000
              + NODE + Disk Identifiers + Disk identifier information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticDisks +
                urn:smpte:ul:060e2b34.01010103.01030203.01000000
              + NODE + Magnetic Disks + Information about magnetic disks. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticDiskNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030203.01010000
              + LEAF + Magnetic Disk Number + An organizationally given number for a magnetic disc or disc pack. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 char max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDiscs +
                urn:smpte:ul:060e2b34.01010103.01030203.02000000
              + NODE + Optical Discs + Information about optical discs. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDiscNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030203.02010000
              + LEAF + Optical Disc Number + An organizationally given number for an optical disc or disc pack. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 char max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030300.00000000
              + NODE + Local Object Identifiers + Object identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LUID +
                urn:smpte:ul:060e2b34.01010101.01030301.00000000
              + LEAF + LUID + A 4 byte locally unique ID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageName_ISO7 +
                urn:smpte:ul:060e2b34.01010109.01030302.00000000
              + LEAF + Package Name + Identifies a metadata package by name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageName +
                urn:smpte:ul:060e2b34.01010101.01030302.01000000
              + LEAF + Package Name + Identifies a metadata package by name + AAF~Name + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NetworkAndStreamIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01030400.00000000
              + NODE + Network and Stream Identifiers + Information about channel numbering + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelHandle +
                urn:smpte:ul:060e2b34.01010102.01030401.00000000
              + LEAF + Channel Handle + Unique number identifying a channel number in a stream + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamID +
                urn:smpte:ul:060e2b34.01010103.01030402.00000000
              + LEAF + Stream ID + Organizationally given identifier that is the stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 Byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransportStreamID +
                urn:smpte:ul:060e2b34.01010103.01030403.00000000
              + LEAF + Transport Stream ID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceStreamID +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + LEAF + Essence Stream ID + Essence (or its container) stream ID + AAF[1.2:]~EssenceStreamID MXF~EssenceStreamID mxflib[:1.19]~BodySID + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexStreamID +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + LEAF + Index Stream ID + Index table stream ID + AAF[1.2:] MXF~IndexStreamID mxflib[:1.19]~IndexSID + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RP217DataStreamPID +
                urn:smpte:ul:060e2b34.01010109.01030406.00000000
              + LEAF + RP217 Data Stream PID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) for the Data stream per RP217 + AAF[1.3:] ASPA[:0.8] + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RP217VideoStreamPID +
                urn:smpte:ul:060e2b34.01010109.01030407.00000000
              + LEAF + RP217 Video Stream PID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) for the Video stream per RP217 + AAF[1.3:] ASPA[:0.8] + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericStreamID +
                urn:smpte:ul:060e2b34.0101010d.01030408.00000000
              + LEAF + Generic Stream ID + Stream ID of the linked Generic Stream payload + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAChannelID +
                urn:smpte:ul:060e2b34.0101010e.0103040a.00000000
              + LEAF + MCA Channel ID + The numerical channel identifier within the essence, as defined in SMPTE ST 377-1:2011 Amendment1:2012 (Annex B.23 extension, if applicable). + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030500.00000000
              + NODE + Organizational Program Identifiers + Program identifiers unique within an organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030501.00000000
              + LEAF + Organizational Program Number + An Identifier, unique only within an organization, for a program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramNumber +
                urn:smpte:ul:060e2b34.01010103.01030501.01000000
              + LEAF + Organizational Program Number + An Identifier, unique only within an organization, for a program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030600.00000000
              + NODE + Metadata Identifiers + 16-byte Identifiers for metadata elements + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemDesignatorID +
                urn:smpte:ul:060e2b34.01010103.01030601.00000000
              + LEAF + Item Designator ID + Organizationally given identifier that is the 16-byte Item Designator (SMPTE 336M) for any data or metadata that uses the SMPTE Universal Label + SMPTE 336M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTag +
                urn:smpte:ul:060e2b34.01010105.01030602.00000000
              + LEAF + Local Tag Value + A locally unique registry identifier - the value is the local Tag in the local Registry + AAF names this type "LocalTagType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012004.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTagUniqueID +
                urn:smpte:ul:060e2b34.01010105.01030603.00000000
              + LEAF + Local Tag Unique ID + A Unique Identifier of which the local tag is an alias + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLDOCTYPE_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030604.00000000
              + LEAF + HTML DOCTYPE + The complete document type declaration for an HTML document + AAF + http://www.w3.org/TR/2000/REC-xml-20001006 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLDOCTYPE +
                urn:smpte:ul:060e2b34.01010108.01030604.01000000
              + LEAF + HTML DOCTYPE + The complete document type declaration for an HTML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/2000/REC-xml-20001006 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefix_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030605.00000000
              + LEAF + Namespace Prefix + A Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefix +
                urn:smpte:ul:060e2b34.01010108.01030605.01000000
              + LEAF + Namespace Prefix + A Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefixes_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030606.00000000
              + LEAF + Namespace Prefixes + A list of Namespace Prefixes used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefixes +
                urn:smpte:ul:060e2b34.01010108.01030606.01000000
              + LEAF + Namespace Prefixes + A list of Namespace Prefixes used in Qnames in an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030700.00000000
              + NODE + Channel Identifiers + Identifiers relating to channels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030701.00000000
              + NODE + Audio Channel Identifiers + Identifiers relating to audio channels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCALabelDictionaryID +
                urn:smpte:ul:060e2b34.0101010e.01030701.01000000
              + LEAF + MCA Label Dictionary ID + The globally registered UL that defines the meaning of the MCALabelSubDescriptor instance. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATagSymbol +
                urn:smpte:ul:060e2b34.0101010e.01030701.02000000
              + LEAF + MCA Tag Symbol + Symbol identifying this MCALabelSubDescriptor, which mnemonically reflects the meaning as defined in the MCA Label Dictionary ID, e.g. "cLs" for an AudioChannelLabelSubDescriptor Symbol, "c51" for a SoundfieldGroupLabelSubDescriptor Symbol. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATagName +
                urn:smpte:ul:060e2b34.0101010e.01030701.03000000
              + LEAF + MCA Tag Name + Optional text string that may be given to the MCALabelSubDescriptor to further describe it in human readable form, e.g. "Left Surround" for an AudioChannelLabelSubDescriptor Name, "5.1" for a SoundfieldGroupLabelSubDescriptor Name. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupOfSoundfieldGroupsLinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.04000000
              + LEAF + Group of Soundfield Groups Link ID + MCA Link IDs of the Group of Soundfield Groups to which this Soundfield Group belongs + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCALinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.05000000
              + LEAF + MCA Link ID + Uniquely identifies the audio channel, soundfield group and group of soundfield groups instance described by the MCALabelSubDescriptor and is used to link instances of MCALabelSubDescriptors. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoundfieldGroupLinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.06000000
              + LEAF + Soundfield Group Link ID + MCA Link ID of the Soundfield Group to which this channel belongs + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030703.00000000
              + NODE + Stereoscopic Channel Identifiers + Identifiers relating to eye identification (left/right). + SMPTE ST 2070-1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicEyeID +
                urn:smpte:ul:060e2b34.0101010e.01030703.01000000
              + LEAF + Stereoscopic Eye ID + Universal Label that identifies the eye + SMPTE ST 2070-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicDataEssenceCoding +
                urn:smpte:ul:060e2b34.0101010e.01030703.02000000
              + LEAF + Stereoscopic Data Essence Coding + Specifies the data Essence coding type + SMPTE ST 2070-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationMessageIdentifiers +
                urn:smpte:ul:060e2b34.0101010d.01030800.00000000
              + NODE + Operation Message Identifiers + Identifiers relating to the operation message. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityMessageIdentifiers +
                urn:smpte:ul:060e2b34.0101010d.01030801.00000000
              + NODE + Security Message Identifiers + Identifiers relating to the security message. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMRequestID +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + LEAF + ASM Request ID + An identifier associated with the Auditorium Security Message request. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventID +
                urn:smpte:ul:060e2b34.0101010d.01030801.02000000
              + LEAF + ASM Event ID + An identifier associated with the Auditorium Security Message log record item. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyID +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + LEAF + ASM Link Encryption Key ID + An identifier associated with the link encryption key. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocallyUniqueLocators +
                urn:smpte:ul:060e2b34.01010101.01040000.00000000
              + NODE + Locally Unique Locators + Locally unique path definitions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediaLocators +
                urn:smpte:ul:060e2b34.01010101.01040100.00000000
              + NODE + Media Locators + Local paths for a digital media, data, metadata file etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilePath_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040101.00000000
              + LEAF + Local File Path + The local path to a complete digital media, data, metadata etc file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilePath +
                urn:smpte:ul:060e2b34.01010103.01040101.01000000
              + LEAF + Local File Path + The local path to a complete digital media, data, metadata etc file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01040102.00000000
              + LEAF + Physical Media Location + A description of the physical location of media - e.g. which archive, place, rack, shelf, position on shelf + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationName +
                urn:smpte:ul:060e2b34.01010102.01040102.01000000
              + LEAF + Media Location + A description of the physical location of media - e.g. which archive, place, rack, shelf, position on shelf + AAF~Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceTrackNumber +
                urn:smpte:ul:060e2b34.01010102.01040103.00000000
              + LEAF + Track Number + Specifies the intended track number in a sequences of tracks + AAF~PhysicalTrackNumber mxflib[:1.19]~TrackNumber + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackNumberBatch +
                urn:smpte:ul:060e2b34.01010107.01040104.00000000
              + LEAF + Track Number Batch + An unordered list of Track Numbers used to link the System item element to the essence tracks used in the Content Package + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 4*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAPartitionKind +
                urn:smpte:ul:060e2b34.0101010e.01040105.00000000
              + LEAF + MCA Partition Kind + Partition kind of a complete program such as a "Part", "Post Production Reel" or "Act". + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAPartitionNumber +
                urn:smpte:ul:060e2b34.0101010e.01040106.00000000
              + LEAF + MCA Partition Number + The position of the partition in the sequence of partitions that make up the complete program such as "3" for Reel 3. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmLocators +
                urn:smpte:ul:060e2b34.01010101.01040700.00000000
              + NODE + Film Locators + Location information for film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040701.00000000
              + LEAF + Edge Code + The edge code on the film eg feet;frames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040702.00000000
              + LEAF + Frame Code + Unique frame number for film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyCode +
                urn:smpte:ul:060e2b34.01010101.01040703.00000000
              + LEAF + Key Code + Machine readable version of frame code + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InkNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040704.00000000
              + LEAF + Ink Number + Ink number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SynchronizationLocators +
                urn:smpte:ul:060e2b34.01010102.01040900.00000000
              + NODE + Synchronization Locators + Media location information relating to synchronisation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeStart +
                urn:smpte:ul:060e2b34.01010102.01040901.00000000
              + LEAF + Edge Code Start + Specifies the edge code at the beginning of the clip, segment etc + AAF~Start + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProxyLocators +
                urn:smpte:ul:060e2b34.01010101.01041000.00000000
              + NODE + Proxy Locators + Local archival location information for key frames, keys sounds, key text etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyText_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041001.00000000
              + LEAF + Key Text + Local archival location information for key text + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrame_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041002.00000000
              + LEAF + Key Frame + Local archival location information for key frames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeySound_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041003.00000000
              + LEAF + Key Sound + Local archival location information for keys sounds + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyDataOrProgram_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041004.00000000
              + LEAF + Key Data or Program + Local archival location information for key data or program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Titles +
                urn:smpte:ul:060e2b34.01010101.01050000.00000000
              + NODE + Titles + Titling metadata relating to productions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitleKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050100.00000000
              + LEAF + Title Kind + Kind of title, i.e., project, group of programs, group of series, series, item, program, working, original, item, episode, element, scene, shot etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitleKind +
                urn:smpte:ul:060e2b34.01010103.01050101.00000000
              + LEAF + Title Kind + Kind of title, i.e., project, series, item, program, working, original, item, episode, element, scene, shot etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050200.00000000
              + LEAF + Main Title + The main title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainTitle +
                urn:smpte:ul:060e2b34.01010103.01050201.00000000
              + LEAF + Main Title + The main title + ASPA~Product_Title_Legacy DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050300.00000000
              + LEAF + Secondary Title + The secondary title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryTitle +
                urn:smpte:ul:060e2b34.01010103.01050301.00000000
              + LEAF + Secondary Title + The secondary title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050400.00000000
              + LEAF + Series Number + The alphanumeric series number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesNumber +
                urn:smpte:ul:060e2b34.01010103.01050401.00000000
              + LEAF + Series Number + The alphanumeric series number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodeNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050500.00000000
              + LEAF + Episode Number + The alphanumeric episode number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodeNumber +
                urn:smpte:ul:060e2b34.01010103.01050501.00000000
              + LEAF + Episode Number + The alphanumeric episode number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneNumber +
                urn:smpte:ul:060e2b34.01010101.01050600.00000000
              + LEAF + Scene Number + The alphanumeric scene number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.01050601.00000000
              + LEAF + Scene Number + The alphanumeric scene number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TakeNumber +
                urn:smpte:ul:060e2b34.01010101.01050700.00000000
              + LEAF + Take Number + Take number of the instance of the shot + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VersionTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01050800.00000000
              + LEAF + Version Title + The version title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VersionTitle +
                urn:smpte:ul:060e2b34.01010103.01050801.00000000
              + LEAF + Version Title + The version title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MissionIdentifier_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01050900.00000000
              + LEAF + Mission ID + A locally defined identifier for the platform mission number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MissionIdentifier +
                urn:smpte:ul:060e2b34.01010103.01050901.00000000
              + LEAF + Mission ID + A locally defined identifier for the platform mission number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkingTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01050a00.00000000
              + LEAF + Working Title + The (possibly temporary) working title of a production or a production component + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkingTitle +
                urn:smpte:ul:060e2b34.01010104.01050a01.00000000
              + LEAF + Working Title + The (possibly temporary) working title of a production or a production component + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01050b00.00000000
              + LEAF + Original Title + The original title of a production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalTitle +
                urn:smpte:ul:060e2b34.01010104.01050b01.00000000
              + LEAF + Original Title + The original title of a production + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipNumber +
                urn:smpte:ul:060e2b34.01010104.01050c00.00000000
              + LEAF + Clip Number + The alphanumeric number of the Clip + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010104.01050c01.00000000
              + LEAF + Clip Number + The alphanumeric number of the Clip + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandMainTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050d00.00000000
              + LEAF + Brand Main Title + Main Brand title (e.g. Horizon) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandMainTitle +
                urn:smpte:ul:060e2b34.01010105.01050d01.00000000
              + LEAF + Brand Main Title + Main Brand title (e.g. Horizon) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandOriginalTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050e00.00000000
              + LEAF + Brand Original Title + Any original Brand title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandOriginalTitle +
                urn:smpte:ul:060e2b34.01010105.01050e01.00000000
              + LEAF + Brand Original Title + Any original Brand title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050f00.00000000
              + LEAF + Framework Title + A human readable title for this instance of the Production Framework (e.g. "Wilco Productions version 3") + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTitle +
                urn:smpte:ul:060e2b34.01010105.01050f01.00000000
              + LEAF + Framework Title + A human readable title for this instance of the Production Framework (e.g. "Wilco Productions version 3") + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitle +
                urn:smpte:ul:060e2b34.0101010e.01051000.00000000
              + LEAF + MCA Title + Name of the overall program to which the audio essence track belongs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitleVersion +
                urn:smpte:ul:060e2b34.0101010e.01051100.00000000
              + LEAF + MCA Title Version + Version of the program to which the audio belongs, such as a specific cut of a movie. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitleSubVersion +
                urn:smpte:ul:060e2b34.0101010e.01051200.00000000
              + LEAF + MCA Title Sub-Version + Sub-version of the program to which the audio belongs such as a localized rendition that has the same cut as depicted in MCA Version. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAEpisode +
                urn:smpte:ul:060e2b34.0101010e.01051300.00000000
              + LEAF + MCA Episode + Episode of an MCA title. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01070000.00000000
              + NODE + Local Identifiers + Local identifiers which are not unique other than at low level + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01070100.00000000
              + NODE + Package Identifiers + Local identifiers which are not unique other than at package level + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackID +
                urn:smpte:ul:060e2b34.01010102.01070101.00000000
              + LEAF + Track ID + Specifies the particular track within a package + AAF~SlotID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070102.00000000
              + LEAF + Track Name + Specifies the particular track within a package by a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackName +
                urn:smpte:ul:060e2b34.01010102.01070102.01000000
              + LEAF + Track Name + Specifies the particular track within a package by a name + AAF~SlotName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070102.03000000
              + LEAF + Definition Object Name + Name of item being defined + [sic] Although this is nested under a leaf, it is in use and cannot be moved + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectName +
                urn:smpte:ul:060e2b34.01010102.01070102.03010000
              + LEAF + Definition Object Name + Name of item being defined + AAF~Name + [sic] Although this is nested under a leaf, it is in use and cannot be moved + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentPackageMetadataLink +
                urn:smpte:ul:060e2b34.01010102.01070103.00000000
              + LEAF + Content Package Metadata Link + Defines a local link between essence and its metadata + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070104.00000000
              + LEAF + Defined Name + Name of item being defined + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedName +
                urn:smpte:ul:060e2b34.01010102.01070104.01000000
              + LEAF + Defined Name + Name of item being defined + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescribedTrackIDs +
                urn:smpte:ul:060e2b34.01010104.01070105.00000000
              + LEAF + Described Track IDs + Specifies an unordered list of track ID values that identify the tracks which are described + AAF[1.1:]~DescribedSlots ASPA[:0.8]~TrackIDs mxflib[:1.19]~TrackIDs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveClipDescribedTrackIDs +
                urn:smpte:ul:060e2b34.01010105.01070106.00000000
              + LEAF + Descriptive Clip Described Track IDs + Specifies an unordered list of track ID values that identify the tracks which are described + AAF[1.12:]~DescribedSlotIDs mxflib[:1.19]~DescribedSlotIDs + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotTrackIDs +
                urn:smpte:ul:060e2b34.01010105.01070107.00000000
              + LEAF + Shot Track IDs + Specifies an unordered list of 'n' track ID values that identify the tracks in the Package to which this set refers + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 4*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericIdentifiers +
                urn:smpte:ul:060e2b34.01010104.01080000.00000000
              + NODE + Generic Identifiers + Unique Identifiers for non-Broadcasting Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierKind +
                urn:smpte:ul:060e2b34.01010104.01080100.00000000
              + LEAF + Identifier Kind + Specifies the indentification system used - e.g. ISO, UPN etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierValue +
                urn:smpte:ul:060e2b34.01010104.01080200.00000000
              + LEAF + Identifier Value + The value of the identifer + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0000.00000000
              + NODE + Organization Identifiers + Unique Identifiers for non-Broadcasting Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturingOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0100.00000000
              + NODE + Manufacturing Organization Identifiers + Unique Identifiers for Manufacturing Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0101.00000000
              + NODE + Manufacturer Identifiers + Unique Identifiers for Manufacturers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceManufacturerName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.010a0101.01000000
              + LEAF + Device Manufacturer Name + The manufacturer or maker of the device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceManufacturerName +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + LEAF + Device Manufacturer Name + The manufacturer or maker of the device + AAF~Manufacturer DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0101.03000000
              + LEAF + Manufacturer ID + An identifier for the manufacturer or maker of the device + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IEEEManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0102.00000000
              + LEAF + IEEE Manufacturer ID + The IEEE registered ID for a particular manufacturer. + IEEE 802 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010d00.00000000 + 3 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AAFManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0103.00000000
              + LEAF + AAF Manufacturer ID + The AAF registered ID for a particular manufacturer. + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010104.010a0200.00000000
              + NODE + General Organization Identifiers + Unique Identifiers for Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationCode_ISO7 +
                urn:smpte:ul:060e2b34.01010104.010a0201.00000000
              + LEAF + Organization Code + The identifying Code for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationCode +
                urn:smpte:ul:060e2b34.01010104.010a0201.01000000
              + LEAF + Organization Code + The identifying Code for an organization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRightsIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01100000.00000000
              + NODE + Intellectual Property Rights Identifiers + Unique IDs allocated by IP Rights organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SUISACISACIPI +
                urn:smpte:ul:060e2b34.01010101.01100100.00000000
              + NODE + SUISA CISAC IPI + IP Identifiers allocated by CISAC + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CISACLegalEntityID +
                urn:smpte:ul:060e2b34.01010101.01100101.00000000
              + LEAF + CISAC Legal Entity ID + Natural person or legal entity ID in the International Confederation of Societies of Authors and Composers(CISAC) Interested Parties system + http://www.cisac.org + CISAC Common Information System: Interested Parties Sub-system + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AGICOAIdentifers +
                urn:smpte:ul:060e2b34.01010101.01100200.00000000
              + NODE + AGICOA Identifers + Unique Identifiers allocated by AGICOA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AGICOAID +
                urn:smpte:ul:060e2b34.01010101.01100201.00000000
              + LEAF + AGICOA ID + The Association of International Collective Management of Audio Visual Works (AGICOA) register ID. + http://www.agicoa.org + AGICOA registration standard + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MusicIndustryIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01100300.00000000
              + NODE + Music Industry Identifiers + Identifiers associated with the Music Industry + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordingLabelName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100301.00000000
              + LEAF + Recording Label Name + Name of a publication label - e.g. United Artists, Topic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordingLabelName +
                urn:smpte:ul:060e2b34.01010103.01100301.01000000
              + LEAF + Recording Label Name + Name of a publication label - e.g. United Artists, Topic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CollectionName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100302.00000000
              + LEAF + Collection Name + Name of a published collection - e.g. 'Sinatra Live at the Sands' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CollectionName +
                urn:smpte:ul:060e2b34.01010103.01100302.01000000
              + LEAF + Collection Name + Name of a published collection - e.g. 'Sinatra Live at the Sands' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100303.00000000
              + LEAF + Origin Code + Code indicating the type of source of material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainCatalogNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100304.00000000
              + LEAF + Main Catalog Number + The main catalogue number for a recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogPrefixNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100305.00000000
              + LEAF + Catalog Prefix Number + The alphanumeric prefix to the Main catalogue number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SideNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100306.00000000
              + LEAF + Side Number + Where appropriate, the side number on which the track is recorded. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedTrackNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100307.00000000
              + LEAF + Recorded Track Number + The track or band number of a recording. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ADMINISTRATION +
                urn:smpte:ul:060e2b34.01010101.02000000.00000000
              + NODE + ADMINISTRATION + Class 2 is reserved for administrative and business related metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Supplier +
                urn:smpte:ul:060e2b34.01010101.02010000.00000000
              + NODE + Supplier + Details of the content supplying organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceOrganization_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02010100.00000000
              + LEAF + Source Organization + The name of the content supplying organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceOrganization +
                urn:smpte:ul:060e2b34.01010109.02010101.00000000
              + LEAF + Source Organization + The name of the content supplying organization + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplyContractNumber +
                urn:smpte:ul:060e2b34.01010101.02010200.00000000
              + LEAF + Supply Contract Number + The alphanumeric number for the contract for the supply of content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProducerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02010300.00000000
              + LEAF + Original Producer Name + The name of the original content Producer. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProducerName +
                urn:smpte:ul:060e2b34.01010109.02010301.00000000
              + LEAF + Original Producer Name + The name of the original content Producer. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplyingDepartmentName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02010400.00000000
              + LEAF + Supplying Department Name + The name of the supplying department + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierIdentificationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010500.00000000
              + LEAF + Supplier Identification Kind + The supplier identification type (e.g. bank Sort code) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierIdentificationValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010600.00000000
              + LEAF + Supplier Identification Value + The value of supplier identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010700.00000000
              + LEAF + Supplier Account Number + The number of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010800.00000000
              + LEAF + Supplier Account Name + The name of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountName +
                urn:smpte:ul:060e2b34.01010104.02010801.00000000
              + LEAF + Supplier Account Name + The name of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Product +
                urn:smpte:ul:060e2b34.01010101.02020000.00000000
              + NODE + Product + Abstract information about the media product + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalEpisodeCount +
                urn:smpte:ul:060e2b34.01010101.02020100.00000000
              + LEAF + Total Episode Count + Total number of episodic items in a series + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesInASeriesGroupCount +
                urn:smpte:ul:060e2b34.01010103.02020200.00000000
              + LEAF + Series in a Series Group Count + The total number of series for a related group of series - for example, several series of the same program may be commissioned over many years. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02020300.00000000
              + LEAF + Programming Group Kind + The kind of program group of which the program forms a part - e.g. Anthology, Serial, Series, Themed Cluster, Repeating Series etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupKind +
                urn:smpte:ul:060e2b34.01010105.02020301.00000000
              + LEAF + Programming Group Kind + The kind of program group of which the program forms a part - e.g. Anthology, Serial, Series, Themed Cluster, Repeating Series etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicStartNumber +
                urn:smpte:ul:060e2b34.01010104.02020400.00000000
              + LEAF + Episode Start Number + The episodic number at the start of a series + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicEndNumber +
                urn:smpte:ul:060e2b34.01010104.02020500.00000000
              + LEAF + Episode End Number + The episodic number at the end of a series + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02020600.00000000
              + LEAF + Programming Group Title + The title of a programming group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupTitle +
                urn:smpte:ul:060e2b34.01010105.02020601.00000000
              + LEAF + Programming Group Title + The title of a programming group + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purchaser +
                urn:smpte:ul:060e2b34.01010103.02030000.00000000
              + NODE + Purchaser + Details of the content purchasing organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchasingOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030100.00000000
              + LEAF + Purchasing Organization Name + The name of the content purchasing organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SalesContractNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030200.00000000
              + LEAF + Sales Contract Number + The alphanumeric number for the contract for the sale of content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchasingDepartment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030400.00000000
              + LEAF + Purchasing Department + The name of the purchasing department + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserIdentificationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030500.00000000
              + LEAF + Purchaser Identification Kind + The purchaser identification type (e.g. bank Sort code) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserIdentificationValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030600.00000000
              + LEAF + Purchaser Identification Value + The value of purchaser identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030700.00000000
              + LEAF + Purchaser Account Number + The number of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030800.00000000
              + LEAF + Purchaser Account Name + The name of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountName +
                urn:smpte:ul:060e2b34.01010104.02030801.00000000
              + LEAF + Purchaser Account Name + The name of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractDescriptions +
                urn:smpte:ul:060e2b34.01010103.02040000.00000000
              + NODE + Contract Descriptions + Detail descriptive information about a contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractType_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040100.00000000
              + LEAF + Contract Type + Description of the contract type using terms agreed between the contracting parties + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTypeCode +
                urn:smpte:ul:060e2b34.01010103.02040101.00000000
              + LEAF + Contract Type Code + Description of the contract type using terms as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020201.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractType +
                urn:smpte:ul:060e2b34.01010104.02040102.00000000
              + LEAF + Contract Type + Description of the contract type using terms agreed between the contracting parties + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractClauseDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040200.00000000
              + LEAF + Contract Clause Description + The description given to a clause within a contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractClauseDescription +
                urn:smpte:ul:060e2b34.01010104.02040201.00000000
              + LEAF + Contract Clause Description + The description given to a clause within a contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineCode +
                urn:smpte:ul:060e2b34.01010103.02040300.00000000
              + LEAF + Contract Line Code + Description of the product or service covered by a line in the contract, as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020202.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040301.00000000
              + LEAF + Contract Line Name + Description of the product or serve covered by a line in the contract, as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineName +
                urn:smpte:ul:060e2b34.01010104.02040302.00000000
              + LEAF + Contract Line Name + Description of the product or service covered by a line in the contract, as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTermsOfBusiness_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040400.00000000
              + LEAF + Contract Terms of Business + The definition of the terms applying to the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTermsOfBusiness +
                urn:smpte:ul:060e2b34.01010104.02040401.00000000
              + LEAF + Contract Terms of Business + The definition of the terms applying to the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractInstallmentPercentage +
                urn:smpte:ul:060e2b34.01010103.02040500.00000000
              + LEAF + Contract Installment Percentage + The value of a contract installment as a percentage of the total value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Jurisdiction_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040600.00000000
              + LEAF + Jurisdiction + The Law to which a Contract is bound in the event of a dispute. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Jurisdiction +
                urn:smpte:ul:060e2b34.01010104.02040601.00000000
              + LEAF + Jurisdiction + The Law to which a Contract is bound in the event of a dispute. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rights +
                urn:smpte:ul:060e2b34.01010101.02050000.00000000
              + NODE + Rights + Rights metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Copyright +
                urn:smpte:ul:060e2b34.01010101.02050100.00000000
              + NODE + Copyright + Copyright metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050101.00000000
              + LEAF + Copyright Status + Executive evaluation of copyright status + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightStatus +
                urn:smpte:ul:060e2b34.01010103.02050101.01000000
              + LEAF + Copyright Status + Executive evaluation of copyright status + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightOwnerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050102.00000000
              + LEAF + Copyright Owner Name + The name of the person/organization who owns the copyright. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightOwner +
                urn:smpte:ul:060e2b34.01010103.02050102.01000000
              + LEAF + Copyright Owner Name + The name of the person/organization who owns the copyright. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualRights +
                urn:smpte:ul:060e2b34.01010101.02050200.00000000
              + NODE + Intellectual Rights + Intellectual property rights metadata other than copyright + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050201.00000000
              + LEAF + Intellectual Property Description + A definition of the IP in freeform text + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyDescription +
                urn:smpte:ul:060e2b34.01010103.02050201.01000000
              + LEAF + Intellectual Property Description + A definition of the intellectual property in freeform text + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRight_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050202.00000000
              + LEAF + Intellectual Property Rights + A freeform text definition of what use can be made of an IP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRight +
                urn:smpte:ul:060e2b34.01010103.02050202.01000000
              + LEAF + Intellectual Property Rights + A freeform text definition of what use can be made of an intellectual property + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LegalPersonalities +
                urn:smpte:ul:060e2b34.01010101.02050300.00000000
              + NODE + Legal Personalities + A person or body in whom legal responsibility can be vested + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rightsholder_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050301.00000000
              + LEAF + Rightsholder + A definition of who or what entity can exercise an IP right + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rightsholder +
                urn:smpte:ul:060e2b34.01010103.02050301.01000000
              + LEAF + Rightsholder + A definition of who or what entity can exercise an intellectual property right + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsManagementAuthority_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050302.00000000
              + LEAF + Rights Management Authority + Entity that manages the rights for access to the material. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsManagementAuthority +
                urn:smpte:ul:060e2b34.01010103.02050302.01000000
              + LEAF + Rights Management Authority + Entity that manages the rights for access to the material. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterestedPartyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050303.00000000
              + LEAF + Interested Party Name + A definition or who or what entity has an interest in the right being excercised + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRightsOptions +
                urn:smpte:ul:060e2b34.01010101.02050400.00000000
              + NODE + Intellectual Property Rights Options + A definition of what options can be excersied within the framework of using an IP Right + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxNumberOfUsages +
                urn:smpte:ul:060e2b34.01010101.02050401.00000000
              + LEAF + Maximum Use Count + Maximum number of usages or repeats + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LicenseOptionsDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050402.00000000
              + LEAF + License Options Description + Options for prolongation or renewal of license + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsConditionDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02050403.00000000
              + LEAF + Rights Condition Description + Optional condition which restrict a Right - e.g. embargo periods + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsCondition +
                urn:smpte:ul:060e2b34.01010103.02050403.01000000
              + LEAF + Rights Condition Description + Optional condition which restrict a Right - e.g. embargo periods + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsComment_ISO7 +
                urn:smpte:ul:060e2b34.01010108.02050404.00000000
              + LEAF + Rights Comment + General remarks concerning a Right + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsComment +
                urn:smpte:ul:060e2b34.01010108.02050404.01000000
              + LEAF + Rights Comment + General remarks concerning a Right + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FinancialInformation +
                urn:smpte:ul:060e2b34.01010101.02060000.00000000
              + NODE + Financial Information + Details of payments, costs, income money and other considerations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Currencies +
                urn:smpte:ul:060e2b34.01010101.02060100.00000000
              + NODE + Currencies + Information about currencies involved in transactions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrencyCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060101.00000000
              + LEAF + Currency Code + International Standards Organisation Codes for the representation of currencies and funds + ISO-4217 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrencyName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060101.01000000
              + LEAF + Currency Name + The currency of the transaction as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalCurrencyAmount +
                urn:smpte:ul:060e2b34.01010104.02060102.00000000
              + LEAF + Total Currency Amount + The total currency amount + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InstallmentNumber +
                urn:smpte:ul:060e2b34.01010104.02060103.00000000
              + LEAF + Installment Number + The number of any repeat payments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentsAndCosts +
                urn:smpte:ul:060e2b34.01010101.02060200.00000000
              + NODE + Payments and Costs + Payments and costing information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoyaltyPaymentInformation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060201.00000000
              + LEAF + Royalty Payment Information + Royalty payment and other financial information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalPayment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060202.00000000
              + LEAF + Total Payment + The total numerical amount of currency involved in a payment transaction. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060203.00000000
              + LEAF + Payee Account Name + The name of the account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060204.00000000
              + LEAF + Payee Account Number + The number of an account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountSortCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060205.00000000
              + LEAF + Payee Account Sort Code + The sort code for the account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Income +
                urn:smpte:ul:060e2b34.01010101.02060300.00000000
              + NODE + Income + Income information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoyaltyIncomeInformation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060301.00000000
              + LEAF + Royalty Income Information + Royalty income and other financial information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalIncome_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060302.00000000
              + LEAF + Total Income + The total numerical amount of currency involved in a sales transaction. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060303.00000000
              + LEAF + Payer Account Name + The name of the account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060304.00000000
              + LEAF + Payer Account Number + The number of an account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountSortCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060305.00000000
              + LEAF + Payer Account Sort Code + The sort code for the account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AccessControl +
                urn:smpte:ul:060e2b34.01010101.02070000.00000000
              + NODE + Access Control + Details of permitted access to the media product + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RestrictionsOnUse_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02070100.00000000
              + LEAF + Restrictions on Use + Identifies the type or level of restriction applied to the media product. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExCCIData +
                urn:smpte:ul:060e2b34.01010101.02070200.00000000
              + LEAF + ExCCI Data + Extended Content Control Information Data Packet + Proposed SMPTE 401M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 233 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMBadRequestCopy +
                urn:smpte:ul:060e2b34.0101010d.02070300.00000000
              + LEAF + ASM Bad Request Copy + A copy of the ASM request KLV pack that was misunderstood. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMResponse +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + LEAF + ASM Response + An enumerated value that describes the result of the request. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLogRecord +
                urn:smpte:ul:060e2b34.0101010d.02070500.00000000
              + LEAF + ASM Log Record + The logged information associated with a specific event expressed as XML. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMProtocolVersion +
                urn:smpte:ul:060e2b34.0101010d.02070600.00000000
              + LEAF + ASM Protocol Version + A value indicating the protocol suite version in use. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMPlayoutStatus +
                urn:smpte:ul:060e2b34.0101010d.02070700.00000000
              + LEAF + ASM Playout Status + An enumerated value that describes whether a security playout function is being performed. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMBufferOverflowFlag +
                urn:smpte:ul:060e2b34.0101010d.02070800.00000000
              + LEAF + ASM Buffer Overflow Flag + A boolean value indicating whether the key buffer would have overflowed. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMKeyPresentFlag +
                urn:smpte:ul:060e2b34.0101010d.02070900.00000000
              + LEAF + ASM Key Present Flag + A boolean value indicating whether the encryption key is present. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMKeyNotPresentFlag +
                urn:smpte:ul:060e2b34.0101010d.02070a00.00000000
              + LEAF + ASM Key Not Present Flag + A boolean value indicating that the identified key to be purged was not present. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMProjectorCertificateData +
                urn:smpte:ul:060e2b34.0101010d.02070e00.00000000
              + LEAF + ASM Projector Certificate Data + Projector certificate coded using Distinguished Encoding Rules (DER) encoding + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Security +
                urn:smpte:ul:060e2b34.01010101.02080000.00000000
              + NODE + Security + Content encryption/decryption information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemAccess +
                urn:smpte:ul:060e2b34.01010101.02080100.00000000
              + NODE + System Access + Details of permitted access to the technical system or platform + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Username_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02080101.00000000
              + LEAF + Username + A username in a domain + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Username +
                urn:smpte:ul:060e2b34.01010101.02080101.01000000
              + LEAF + Username + A username in a domain + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Password_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02080102.00000000
              + LEAF + Password + An individual password for access to the system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Password +
                urn:smpte:ul:060e2b34.01010101.02080102.01000000
              + LEAF + Password + An individual password for access to the system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Classification +
                urn:smpte:ul:060e2b34.01010103.02080200.00000000
              + NODE + Classification + Details of permitted access to the technical system or platform + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassification_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080201.00000000
              + LEAF + Security Classification + Marking of the security level or other description of the classification of information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassification +
                urn:smpte:ul:060e2b34.01010109.02080201.01000000
              + LEAF + Security Classification + Marking of the security level or other description of the classification of information + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Caveats +
                urn:smpte:ul:060e2b34.01010103.02080202.00000000
              + LEAF + Security Classification Caveats + Marking of security exceptions or restrictions on the security classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassificationCaveats +
                urn:smpte:ul:060e2b34.01010109.02080202.01000000
              + LEAF + Security Classification Caveats + Marking of security exceptions or restrictions on the security classification + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassifiedBy_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080203.00000000
              + LEAF + Classified By + Original classification authority name and position or personal identifier; the title of the document or security classification guide used to classify the information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationReason_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080204.00000000
              + LEAF + Classification Reason + Narrative text explaining the reason for assigning the classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Declassification +
                urn:smpte:ul:060e2b34.01010103.02080205.00000000
              + LEAF + Declassification Date + Date for automatic declassification or the code indicating exemption from automatic declassification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DerivedFrom_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080206.00000000
              + LEAF + Derived From + Narrative text indicating the source document or authority for derivative declassification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationComment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080207.00000000
              + LEAF + Classification Comment + Narrative text further explaining the classification assignment + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationComment +
                urn:smpte:ul:060e2b34.01010109.02080207.01000000
              + LEAF + Classification Comment + Narrative text further explaining the classification assignment + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationAndMarkingSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080208.00000000
              + LEAF + Classification and Marking System + Classification and marking system used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Encryption +
                urn:smpte:ul:060e2b34.01010101.02090000.00000000
              + NODE + Encryption + Content encryption/decryption information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmEncryption +
                urn:smpte:ul:060e2b34.01010101.02090100.00000000
              + NODE + Film Encryption + Content encryption/decryption information for Film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeys +
                urn:smpte:ul:060e2b34.01010101.02090101.00000000
              + NODE + Scrambling Keys + Information about decryption keys for Film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeyKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02090101.01000000
              + LEAF + Scrambling Key Kind + The program decryption key type for Film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeyValue +
                urn:smpte:ul:060e2b34.01010101.02090101.02000000
              + LEAF + Scrambling Key Value + The program decryption key value for Film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEncryption +
                urn:smpte:ul:060e2b34.01010109.02090200.00000000
              + NODE + Data Encryption + Content encryption/decryption information for data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEncryptionAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090201.00000000
              + NODE + Data Encryption Algorithms + Information about data encryption algorithms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataHashingAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090202.00000000
              + NODE + Data Hashing Algorithms + Information about data hashing algorithms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaEncryption +
                urn:smpte:ul:060e2b34.01010109.02090300.00000000
              + NODE + Digital Cinema Encryption + Content encryption/decryption information for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaEncryptionAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090301.00000000
              + NODE + Digital Cinema Encryption Algorithms + Information about encryption algorithms for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CipherAlgorithm +
                urn:smpte:ul:060e2b34.01010109.02090301.01000000
              + LEAF + Cipher Algorithm + The cipher algorithm used for Digital Cinema encryption + DMS-Crypto + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicKeyID +
                urn:smpte:ul:060e2b34.01010109.02090301.02000000
              + LEAF + Cryptographic Key ID + The identifier of the Key used for Digital Cinema encryption + DMS-Crypto~KeyIdentifier + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncryptedSourceValue +
                urn:smpte:ul:060e2b34.01010109.02090301.03000000
              + LEAF + Encrypted Source Value + The encrypted essence value + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 20 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaHashingAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090302.00000000
              + NODE + Digital Cinema Hashing Algorithms + Information about content hashing algorithms for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MICAlgorithm +
                urn:smpte:ul:060e2b34.01010109.02090302.01000000
              + LEAF + MIC Algorithm + The hashing algorithm used for Digital Cinema message integrity check + DMS-Crypto + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIC +
                urn:smpte:ul:060e2b34.01010109.02090302.02000000
              + LEAF + MIC + The Message Integrity Check (Keyed HMAC) + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 20 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifiersAndLocatorsAdministrationAuthorities +
                urn:smpte:ul:060e2b34.01010104.020a0000.00000000
              + NODE + Identifiers and Locators Administration Authorities + An Authority of issuing Identifiers and Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierIssuingAuthority_ISO7 +
                urn:smpte:ul:060e2b34.01010104.020a0100.00000000
              + LEAF + Identifier Issuing Authority + The Authority issuing an identifier + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationIssuingAuthority +
                urn:smpte:ul:060e2b34.01010105.020a0101.00000000
              + LEAF + Identifier Issuing Authority + The authority that issued the identification value + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublicationOutlet +
                urn:smpte:ul:060e2b34.01010101.02100000.00000000
              + NODE + Publication Outlet + The content publication outlet - eg Broadcast, internet etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Broadcast +
                urn:smpte:ul:060e2b34.01010101.02100100.00000000
              + NODE + Broadcast + Broadcast Outlet information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Broadcaster +
                urn:smpte:ul:060e2b34.01010101.02100101.00000000
              + NODE + Broadcaster + The broadcasting organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.01000000
              + LEAF + Broadcast Organization Name + Name of the broadcasting organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastOrganizationName +
                urn:smpte:ul:060e2b34.01010103.02100101.01010000
              + LEAF + Broadcast Organization Name + Name of the broadcasting organization as text. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastChannel_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.02000000
              + LEAF + Broadcast Channel + Broadcast channel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastServiceName +
                urn:smpte:ul:060e2b34.01010103.02100101.02010000
              + LEAF + Broadcast Service Name + The Broadcast Service - eg News 24 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastMediumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.03000000
              + LEAF + Broadcast Medium Kind + Publishing medium, including transmission (e.g., satellite, cable, terrestrial, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastMediumCode +
                urn:smpte:ul:060e2b34.01010103.02100101.03020000
              + LEAF + Broadcast Medium Code + Code defining the broadcast medium, including transmission (e.g., satellite, cable, terrestrial) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020203.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastRegion +
                urn:smpte:ul:060e2b34.01010103.02100101.04010000
              + LEAF + Broadcast Region + Editorial target region of broadcast + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastRegion_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.05000000
              + LEAF + Broadcast Region + Target region of broadcast + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Publication +
                urn:smpte:ul:060e2b34.01010104.02100200.00000000
              + NODE + Publication + Publishing details + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralPublication +
                urn:smpte:ul:060e2b34.01010104.02100201.00000000
              + NODE + General Publication + General publishing details + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.01000000
              + LEAF + Publishing Organization Name + Name of the publishing organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingOrganizationName +
                urn:smpte:ul:060e2b34.01010104.02100201.01010000
              + LEAF + Publishing Organization Name + Name of the publishing organization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingServiceName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.02000000
              + LEAF + Publishing Service Name + The publication Service + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingServiceName +
                urn:smpte:ul:060e2b34.01010104.02100201.02010000
              + LEAF + Publishing Service Name + The publication Service + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingMediumName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.03000000
              + LEAF + Publishing Medium Name + Publishing medium (e.g., magazine, newspaper, Web) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingMediumName +
                urn:smpte:ul:060e2b34.01010104.02100201.03010000
              + LEAF + Publishing Medium Name + Publishing medium (e.g., magazine, newspaper, Web) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingRegionName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.04000000
              + LEAF + Publishing Region Name + Target region of publication + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingRegionName +
                urn:smpte:ul:060e2b34.01010104.02100201.04010000
              + LEAF + Publishing Region Name + Target region of publication + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterPublicationInformation +
                urn:smpte:ul:060e2b34.0101010c.02100202.00000000
              + NODE + Register Publication Information + Contains metadata relating to the published SMPTE registers. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterKind_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.01000000
              + LEAF + Register Kind + The type of the register. Example: Types, Data Elements, Labels, Groups, etc. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterVersion_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.02000000
              + LEAF + Register Version + An incremental number that indicates the version of the register. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEditorName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.03000000
              + LEAF + Register Editor Name + The name of the person who administrates a register or entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterStatusKind_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.04000000
              + LEAF + Register Status Kind + Indicates the status of an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItem +
                urn:smpte:ul:060e2b34.0101010c.02100203.00000000
              + NODE + Register Item + Data elements that relate to specific items in the published SMPTE registers. + SMPTE 2045 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.01000000
              + LEAF + Register Item Name + The name of the leaf or node in plain language. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemDefinition_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.02000000
              + LEAF + Register Item Definition + The detailed and unambiguous definition of the data element (leaf) or class/subclass (node). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemSymbol_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.03000000
              + LEAF + Register Item Symbol + The symbol is a name that conforms to computer language syntax restrictions, and it is intended for use in computer languages such as Extensible Markup Language (XML). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemDefiningDocumentName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.04000000
              + LEAF + Register Item Defining Document Name + Indicates the SMPTE document which defines this entry . + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemUL_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.05000000
              + LEAF + Register Item UL + The unique ID of this register entry assigned by SMPTE. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemNotes_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.06000000
              + LEAF + Register Item Notes + Provides additional information that may assist in the interpretation and correct application of the data element (leaf) or class/subclass (node). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemIntroductionVersion_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.07000000
              + LEAF + Register Item Introduction Version + This field records the version number of the register which first recorded the allocation of a data element or class/subclass description against its UL. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemHierarchyLevel_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.08000000
              + LEAF + Register Item Hierarchy Level + This indicates the level of an entry in the class hierarchy of the SMPTE UL-based register. It is calculated from the position of the last active byte of the item designator. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterNodeWildcardFlag_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.09000000
              + LEAF + Register Node Wildcard Flag + Provides information that entries exist under this node which are using wildcards. These wildcard entries shall be expanded always when exchanging SMPTE registers. This wildcard flag in an annotation that the entries under this node were created according to a pattern. An omitted wildcard flag shall have the meaning of "0" (false). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryStatus_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.0a000000
              + LEAF + Register Entry Status + Indicates the status of the entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministration +
                urn:smpte:ul:060e2b34.0101010c.02100204.00000000
              + NODE + Register Administration + Metadata relating to the administration of registers and register items. + SMPTE 2045 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAction_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.01000000
              + LEAF + Register Action + The enumerated action which is underway for an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterApproverName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.02000000
              + LEAF + Register Approver Name + Name of the person who authorizes an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterCreationTime_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.03000000
              + LEAF + Register Creation Time + Date and time when the entry was created. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistrantName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.04000000
              + LEAF + Registrant Name + Name of the person who registered the metadata item. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemOriginatorName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.05000000
              + LEAF + Register Item Originator Name + Name of the party that originated the request for a new register item or a change to an existing item. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterUserName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.06000000
              + LEAF + Register User Name + Name of the person who modified the entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterUserTime_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.07000000
              + LEAF + Register User Time + Date and time when the entry has been modified. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationNotes_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.08000000
              + LEAF + Register Administration Notes + Provides additional information that may assist in the administration of an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastAndRepeatInformation +
                urn:smpte:ul:060e2b34.01010101.02200000.00000000
              + NODE + Broadcast and Repeat Information + Business information concerning the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastFlags +
                urn:smpte:ul:060e2b34.01010101.02200100.00000000
              + NODE + Broadcast Flags + Flags concerning aspects of business or administration + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstBroadcastFlag +
                urn:smpte:ul:060e2b34.01010101.02200101.00000000
              + LEAF + First Broadcast Flag + First broadcast of the product + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RepeatNumbers +
                urn:smpte:ul:060e2b34.01010101.02200200.00000000
              + NODE + Repeat Numbers + Information about the repeat status when not a first broadcast + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrentRepeatNumber +
                urn:smpte:ul:060e2b34.01010101.02200201.00000000
              + LEAF + Current Repeat Number + The number of the current repeat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousRepeatNumber +
                urn:smpte:ul:060e2b34.01010101.02200202.00000000
              + LEAF + Previous Repeat Number + The number of the previous repeat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Ratings +
                urn:smpte:ul:060e2b34.01010101.02200300.00000000
              + NODE + Ratings + Information about audience ratings and indices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceRating +
                urn:smpte:ul:060e2b34.01010101.02200301.00000000
              + LEAF + Audience Rating + Audience rating as number of viewers + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceReach +
                urn:smpte:ul:060e2b34.01010101.02200302.00000000
              + LEAF + Audience Reach + The audience reach of the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceShare +
                urn:smpte:ul:060e2b34.01010102.02200303.00000000
              + LEAF + Audience Share + The audience share expressed as a percentage + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceAppreciation +
                urn:smpte:ul:060e2b34.01010102.02200304.00000000
              + LEAF + Audience Appreciation + The appeciation index of the program, expressed as points out of 100. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipatingParties +
                urn:smpte:ul:060e2b34.01010101.02300000.00000000
              + NODE + Participating Parties + Details of all parties, contributing to or taking part in the production - staff, contributors, and including those receiving Credits etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndividualsAndGroups +
                urn:smpte:ul:060e2b34.01010101.02300100.00000000
              + NODE + Individuals and Groups + Details of persons or groups of people contributing to or taking part in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NatureOfPersonalityIndividualOrGroup_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300101.00000000
              + LEAF + Nature of Personality (Individual or Group) + Group, Individual etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NatureOfPersonalityIndividualOrGroup +
                urn:smpte:ul:060e2b34.01010103.02300101.01000000
              + LEAF + Nature of Personality (Individual or Group) + Group, Individual etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Production +
                urn:smpte:ul:060e2b34.01010101.02300102.00000000
              + NODE + Production + Details of Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContributionStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300102.01000000
              + LEAF + Contribution Status + Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContributionStatus +
                urn:smpte:ul:060e2b34.01010103.02300102.01010000
              + LEAF + Contribution Status + Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportAndAdministrationDetails +
                urn:smpte:ul:060e2b34.01010101.02300103.00000000
              + NODE + Support and Administration Details + Details of support and administative staff or contributors - business mangemenent, resource planning, archiving etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrAdministrationStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300103.01000000
              + LEAF + Support or Administration Status + Cataloguing staff, finance staff etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrAdministrationStatus +
                urn:smpte:ul:060e2b34.01010103.02300103.01010000
              + LEAF + Support or Administration Status + Cataloguing staff, finance staff etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationsAndPublicBodies +
                urn:smpte:ul:060e2b34.01010101.02300200.00000000
              + NODE + Organizations and Public Bodies + Details of Organizations and Public Bodies contributing to or taking part in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300201.00000000
              + LEAF + Organization Kind + Limited company, government department etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationKind +
                urn:smpte:ul:060e2b34.01010103.02300201.01000000
              + LEAF + Organization Kind + Limited company, government department etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationOrPublicBody +
                urn:smpte:ul:060e2b34.01010101.02300202.00000000
              + NODE + Production Organization or Public Body + Details of performing contribution, non-performing contribution, production contribution, technical contribution, specialism etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationRole_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300202.01000000
              + LEAF + Production Organization Role + Role of contributing organization (e.g., film library) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationRole +
                urn:smpte:ul:060e2b34.01010103.02300202.01010000
              + LEAF + Production Organization Role + Role of contributing organization (e.g., film library) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportAndAdministrationOrganizationOrPublicBody +
                urn:smpte:ul:060e2b34.01010101.02300203.00000000
              + NODE + Support and Administration Organization or Public Body + Details of support and administrative contribution (e.g., business management, resource planning, archiving etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrganizationRole_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300203.01000000
              + LEAF + Support Organization Role + Role of support/administration organization (e.g., banker) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrganizationRole +
                urn:smpte:ul:060e2b34.01010103.02300203.01010000
              + LEAF + Support Organization Role + Role of support/administration organization (e.g., banker) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionInformation +
                urn:smpte:ul:060e2b34.01010101.02300500.00000000
              + NODE + Job Function Information + Information about the job function or role of participating parties + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300501.00000000
              + LEAF + Job Function Name + The function of the persons(s), organization or public body eg. Editor, Actor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunction +
                urn:smpte:ul:060e2b34.01010103.02300501.01000000
              + LEAF + Job Function Name + The function of the persons(s), organization or public body eg. Editor, Actor + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionCode +
                urn:smpte:ul:060e2b34.01010103.02300501.02000000
              + LEAF + Job Function Code + Code for the function of the participating parties (e.g., editor, actor) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020204.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoleName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300502.00000000
              + LEAF + Role Name + eg. Name of character played + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoleName +
                urn:smpte:ul:060e2b34.01010103.02300502.01000000
              + LEAF + Role Name + eg. Name of character played + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02300503.00000000
              + LEAF + Job Title + The normal job title for a contact. Eg. Manager, Library Services + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobTitle +
                urn:smpte:ul:060e2b34.01010103.02300503.01000000
              + LEAF + Job Title + The normal job title for a contact. Eg. Manager, Library Services + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactInformation +
                urn:smpte:ul:060e2b34.01010101.02300600.00000000
              + NODE + Contact Information + Contact information for the participating party + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300601.00000000
              + LEAF + Contact Kind + Client, supplier, useful etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactKind +
                urn:smpte:ul:060e2b34.01010103.02300601.01000000
              + LEAF + Contact Kind + Client, supplier, useful etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactDepartmentName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300602.00000000
              + LEAF + Contact Department Name + Name information for a department within an organization where contact can be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactDepartment +
                urn:smpte:ul:060e2b34.01010103.02300602.01000000
              + LEAF + Contact Department Name + Name information for a department within an organization where contact can be made + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonOrOrganizationDetails +
                urn:smpte:ul:060e2b34.01010101.02300603.00000000
              + NODE + Person or Organization Details + The name of person(s), organization or public body + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonNames +
                urn:smpte:ul:060e2b34.01010101.02300603.01000000
              + NODE + Person Names + Name information for persons + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FamilyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01010000
              + LEAF + Family Name + The family name of an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FamilyName +
                urn:smpte:ul:060e2b34.01010103.02300603.01010100
              + LEAF + Family Name + The family name of an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01020000
              + LEAF + First Given Name + The first given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01020100
              + LEAF + First Given Name + The first given name for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01030000
              + LEAF + Second Given Name + The second given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01030100
              + LEAF + Second Given Name + The second given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThirdGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01040000
              + LEAF + Third Given Name + The third given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThirdGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01040100
              + LEAF + Third Given Name + The third given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Salutation_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02300603.01050000
              + LEAF + Salutation + An individual's salutation or title. Eg. Mr., Mrs., Sir + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Salutation +
                urn:smpte:ul:060e2b34.01010104.02300603.01050100
              + LEAF + Salutation + An individual's salutation or title. Eg. Mr., Mrs., Sir + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HonorsQualifications_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02300603.01060000
              + LEAF + Honors and Qualifications + Personal honours and qualifications + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HonorsQualifications +
                urn:smpte:ul:060e2b34.01010104.02300603.01060100
              + LEAF + Honors and Qualifications + Personal honours and qualifications + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02300603.01070000
              + LEAF + Person Description + Description of a person used to distinguish them from other persons of the same name - e.g. farmer, poet, American dentist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonDescription +
                urn:smpte:ul:060e2b34.01010103.02300603.01070100
              + LEAF + Person Description + Description of a person used to distinguish them from other persons of the same name - e.g. farmer, poet, American dentist. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherGivenNames_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02300603.01080000
              + LEAF + Other Given Names + Other given names for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherGivenNames +
                urn:smpte:ul:060e2b34.01010104.02300603.01080100
              + LEAF + Other Given Names + Other given names for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02300603.01090000
              + LEAF + Alternate Name + Alternate name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateName +
                urn:smpte:ul:060e2b34.01010104.02300603.01090100
              + LEAF + Alternate Name + Alternate name for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkingName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0000
              + LEAF + Linking Name + A link used between family, given and other names (e.g. den, ten, van den, von) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkingName +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0100
              + LEAF + Linking Name + A link used between family, given and other names (e.g. den, ten, van den, von) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameSuffix_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0000
              + LEAF + Name Suffix + A suffix to a name (e.g. Jr, Sr, III) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameSuffix +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0100
              + LEAF + Name Suffix + A suffix to a name (e.g. Jr, Sr, III) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormerFamilyName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0000
              + LEAF + Former Family Name + Former name of an individual (e.g. maiden name) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormerFamilyName +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0100
              + LEAF + Former Family Name + Former name of an individual (e.g. maiden name) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Nationality_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0000
              + LEAF + Nationality + Nationaility of an individual by origin, birth, or naturalization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Nationality +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0100
              + LEAF + Nationality + Nationaility of an individual by origin, birth, or naturalization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Citizenship_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0000
              + LEAF + Citizenship + Citizenship of an individual with its attendant duties, rights, and privileges + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Citizenship +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0100
              + LEAF + Citizenship + Citizenship of an individual with its attendant duties, rights, and privileges + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupNames +
                urn:smpte:ul:060e2b34.01010101.02300603.02000000
              + NODE + Group Names + Name information for groups + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.02010000
              + LEAF + Main Name + The main name by which the group is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainName +
                urn:smpte:ul:060e2b34.01010103.02300603.02010100
              + LEAF + Main Name + The main name by which the group is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.02020000
              + LEAF + Supplementary Name + Supplementary naming information for a group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryName +
                urn:smpte:ul:060e2b34.01010103.02300603.02020100
              + LEAF + Supplementary Name + Supplementary naming information for a group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationNames +
                urn:smpte:ul:060e2b34.01010101.02300603.03000000
              + NODE + Organization Names + Name information for organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationMainName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.03010000
              + LEAF + Organization Main Name + The main name by which an organization is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationMainName +
                urn:smpte:ul:060e2b34.01010103.02300603.03010100
              + LEAF + Organization Main Name + The main name by which an organization is known + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.03020000
              + LEAF + Supplementary Organization Name + Supplementary naming information for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryOrganizationName +
                urn:smpte:ul:060e2b34.01010103.02300603.03020100
              + LEAF + Supplementary Organization Name + Supplementary naming information for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Protocols +
                urn:smpte:ul:060e2b34.0101010e.02400000.00000000
              + NODE + Protocols + Elements defined as part of a protocol + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataTransferProtocol +
                urn:smpte:ul:060e2b34.0101010e.02400100.00000000
              + NODE + Aux Data Transfer Protocol + Elements defined as part of the Aux Data Transfer protocol + SMPTE ST 430-14 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataEditUnitRangeStartIndex +
                urn:smpte:ul:060e2b34.0101010e.02400101.00000000
              + LEAF + Aux Data Edit Unit Range Start Index + Index of the first Edit Unit of the timeline interval covered by the transfer + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxEditUnitRangeCount +
                urn:smpte:ul:060e2b34.0101010e.02400102.00000000
              + LEAF + Aux Edit Unit Range Count + Number of Edit Units of the timeline interval covered by the transfer + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockEditUnitIndex +
                urn:smpte:ul:060e2b34.0101010e.02400103.00000000
              + LEAF + Aux Data Block Edit Unit Index + Index of the timeline Edit Unit + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockEditUnitEditRate +
                urn:smpte:ul:060e2b34.0101010e.02400104.00000000
              + LEAF + Aux Data Block Edit Unit Edit Rate + Edit rate of the timeline Edit Unit + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataEssenceCodingUL +
                urn:smpte:ul:060e2b34.0101010e.02400105.00000000
              + LEAF + Aux Data Block Source Data Essence Coding UL + Data Essence Coding UL of the source Aux Data Track File + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataItemLength +
                urn:smpte:ul:060e2b34.0101010e.02400106.00000000
              + LEAF + Aux Data Block Source Data Item Length + Length in bytes of the Source Data Item element + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataItem +
                urn:smpte:ul:060e2b34.0101010e.02400107.00000000
              + LEAF + Aux Data Block Source Data Item + Data Item of the source Aux Data Track File + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceCryptographicContextLength +
                urn:smpte:ul:060e2b34.0101010e.02400108.00000000
              + LEAF + Aux Data Block Source Cryptographic Context Length + Length in bytes of the Cryptographic Context Set + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceCryptographicContext +
                urn:smpte:ul:060e2b34.0101010e.02400109.00000000
              + LEAF + Aux Data Block Source Cryptographic Context + Cryptographic Context Set, if any, associated with the Elements of the Data Item contained in Source Data Item element + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Interpretive +
                urn:smpte:ul:060e2b34.01010101.03000000.00000000
              + NODE + INTERPRETIVE + Class 3 is reserved for information on interpreting the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Fundamental +
                urn:smpte:ul:060e2b34.01010101.03010000.00000000
              + NODE + Fundamental + Fundamental defining information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountriesAndLanguages +
                urn:smpte:ul:060e2b34.01010101.03010100.00000000
              + NODE + Countries and Languages + Defining information about Countries and languages + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryAndRegionCodes +
                urn:smpte:ul:060e2b34.01010101.03010101.00000000
              + NODE + Country and Region Codes + Country Codes and Region Codes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO3166CountryCode +
                urn:smpte:ul:060e2b34.01010101.03010101.01000000
              + LEAF + ISO 3166 Country Code + International Standards Organisation Codes for the representation of names of countries and their subdivisions + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200100.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionCode +
                urn:smpte:ul:060e2b34.01010103.03010101.02000000
              + LEAF + Region Code + The ISO code that represents a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200200.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryAndRegionNames +
                urn:smpte:ul:060e2b34.01010103.03010101.10000000
              + NODE + Country and Region Names + Country Names and Region Names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010101.10010000
              + LEAF + Country Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryName +
                urn:smpte:ul:060e2b34.01010103.03010101.10010100
              + LEAF + Country Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010101.10020000
              + LEAF + Region Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionName +
                urn:smpte:ul:060e2b34.01010103.03010101.10020100
              + LEAF + Region Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageCodes +
                urn:smpte:ul:060e2b34.01010101.03010102.00000000
              + NODE + Language Codes + Language Codes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO6391LanguageCode_ISO639 +
                urn:smpte:ul:060e2b34.01010101.03010102.01000000
              + LEAF + ISO 639-1 Language Code + Codes assigned by ISO 639-1 for the identification of languages + ISO 639-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO6391LanguageCode +
                urn:smpte:ul:060e2b34.01010109.03010102.01010000
              + LEAF + ISO 639-1 Language Code + Codes assigned by ISO 639-1 for the identification of languages + ASPA + ISO 639-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextLanguageCodes +
                urn:smpte:ul:060e2b34.01010104.03010102.02000000
              + NODE + Text Language Codes + Language Codes that represent the language used for text + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO639TextLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.02010000
              + LEAF + ISO 639 Text Language Code + The short code that represents the language used for text + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO639CaptionsLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.02020000
              + LEAF + ISO 639 Captions Language Code + The short code that represents the language used for textual captions displayed on-screen + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTextLanguageCode +
                urn:smpte:ul:060e2b34.01010105.03010102.02030000
              + LEAF + Framework Text Language Code + The ISO language code of the text in this set and the default language code of all sets contained in this framework + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedTextLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02110000
              + LEAF + Extended Text Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information used for text + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedCaptionsLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02120000
              + LEAF + Extended Captions Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information used for textual captions displayed on-screen + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkExtendedTextLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02130000
              + LEAF + Framework Extended Text Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information of the text in this set and the default language code of all sets contained in this framework + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646TextLanguageCode +
                urn:smpte:ul:060e2b34.0101010d.03010102.02140000
              + LEAF + RFC 5646 Text Language Code + Identifies the language of the written content as an RFC 5646 code. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTextLanguageCode +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + LEAF + Event Text Language Code + Specifies the language of the event text using RFC 5646 tags + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646LanguageTagList +
                urn:smpte:ul:060e2b34.0101010e.03010102.02160000
              + LEAF + RFC 5646 Language Tag List + Identifies one or more languages as a comma-separated list of RFC 5646 language tags. + SMPTE ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpokenLanguageCodes +
                urn:smpte:ul:060e2b34.01010104.03010102.03000000
              + NODE + Spoken Language Codes + Language Codes that represent the language used for speech + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimarySpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03010000
              + LEAF + Primary Spoken Language Code + ISO 639 Language Code for the current primary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondarySpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03020000
              + LEAF + Secondary Spoken Language Code + ISO 639 Language Code for the current secondary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryOriginalLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03030000
              + LEAF + Primary Original Language Code + ISO 639 Language Code for the original primary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryOriginalSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03040000
              + LEAF + Secondary Original Language Code + ISO 639 Language Code for the original secondary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03110000
              + LEAF + Primary Extended Spoken Language Code + ISO 639 Language Code for the original secondary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03120000
              + LEAF + Secondary Extended Spoken Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the secondary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03130000
              + LEAF + Original Extended Spoken Primary Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the original primary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryOriginalExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03140000
              + LEAF + Secondary Original Extended Spoken Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the original seconday spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646SpokenLanguage +
                urn:smpte:ul:060e2b34.0101010d.03010102.03150000
              + LEAF + RFC 5646 Spoken Language + RFC 5646 language tag for this channel or Soundfield Group, e.g. "en-US". + SMPTE ST 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageNames +
                urn:smpte:ul:060e2b34.01010103.03010102.10000000
              + NODE + Language Names + Language Names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010102.10010000
              + LEAF + Language Name + The International Standards Organisation name for a language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageName +
                urn:smpte:ul:060e2b34.01010103.03010102.10010100
              + LEAF + Language Name + The International Standards Organisation name for a language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataInterpretationsAndDefinitions +
                urn:smpte:ul:060e2b34.01010102.03010200.00000000
              + NODE + Data Interpretations and Definitions + Defining information about data interpretation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemInterpretations +
                urn:smpte:ul:060e2b34.01010101.03010201.00000000
              + NODE + System Interpretations + Interpretive information for common data systems + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperatingSystemInterpretations +
                urn:smpte:ul:060e2b34.01010101.03010201.01000000
              + LEAF + Operating System Interpretations + 1-byte code for distinction of common operating systems + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ByteOrder +
                urn:smpte:ul:060e2b34.01010101.03010201.02000000
              + LEAF + Byte Order + Specifies the byte order of the metadata 'MM'=Big endian, 'II'=Little endian + ASPA[0.8] AAF + 'MM'=Big endian, 'II'=Little endian + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceIsIdentified +
                urn:smpte:ul:060e2b34.01010101.03010201.03000000
              + LEAF + Essence Is Identified + Specifies whether the wrapper or container format identifies essence with an SMPTE label or other AUID (False=0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectModelVersion +
                urn:smpte:ul:060e2b34.01010102.03010201.04000000
              + LEAF + Object Model Version + Specifies the Internal Object Storage Mechanism Version Number + ASPA[0.8] AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatVersion +
                urn:smpte:ul:060e2b34.01010102.03010201.05000000
              + LEAF + Format Version + Specifies the version of the specification of the format + ASPA[0.8]~Version AAF~Version + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MajorVersion +
                urn:smpte:ul:060e2b34.01010104.03010201.06000000
              + LEAF + Major Version + A major version number. A change in a major version implies non-backwards compatibility + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinorVersion +
                urn:smpte:ul:060e2b34.01010104.03010201.07000000
              + LEAF + Minor Version + A minor version number. A change in a minor version implies some measure of backwards compatibility + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SectorSize +
                urn:smpte:ul:060e2b34.01010104.03010201.08000000
              + LEAF + Sector Size + The size of a unit of data, in bytes. The unit size may be at any granulaity (packet, sector etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KAGSize +
                urn:smpte:ul:060e2b34.01010105.03010201.09000000
              + LEAF + KAG Size + Size of the KLV Alignment Grid (KAG) for this partition, in bytes + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReversedByteOrder +
                urn:smpte:ul:060e2b34.01010105.03010201.0a000000
              + LEAF + Reversed Byte Order + Specifies whether the luma and croma sampling order conforms to ITU-R BT.601. Value will be zero if the byte order conforms, non-zero if the luminance sample preceeds the chroma. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=conforms to ITU-R BT.601 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyDefinitions +
                urn:smpte:ul:060e2b34.01010102.03010202.00000000
              + NODE + Property Definitions + Information for the definition of data properties. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsOptional +
                urn:smpte:ul:060e2b34.01010102.03010202.01000000
              + LEAF + Is Optional + Specifies whether property is optional (false=0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSearchable +
                urn:smpte:ul:060e2b34.01010102.03010202.02000000
              + LEAF + Is Searchable + Specifies if information is accessible by searching a database (false=0) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyDefaults +
                urn:smpte:ul:060e2b34.01010102.03010202.03000000
              + NODE + Property Defaults + Information about property defaults + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UseDefaultValue +
                urn:smpte:ul:060e2b34.01010102.03010202.03010000
              + LEAF + Use Default Value + Specifies that a defined default value should be used for a property where the value is not supplied. (False=use supplied value) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultDataValue +
                urn:smpte:ul:060e2b34.01010102.03010202.03020000
              + LEAF + Default Data Value + Specifies the default value of a property or metadata element as defined by the Type definitions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TypeDefinition +
                urn:smpte:ul:060e2b34.01010102.03010203.00000000
              + NODE + Type Definition + Information for the definition of data types + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Size +
                urn:smpte:ul:060e2b34.01010102.03010203.01000000
              + LEAF + Size + Specifies the number of bytes in the integer + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSigned +
                urn:smpte:ul:060e2b34.01010102.03010203.02000000
              + LEAF + Is Signed + Specifies if the integer is signed (false=unsigned) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementCount +
                urn:smpte:ul:060e2b34.01010102.03010203.03000000
              + LEAF + Element Count + Specifies the number of elements in the array + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementNames +
                urn:smpte:ul:060e2b34.01010102.03010203.04000000
              + LEAF + Element Name List + Specifies, as a single string value, a list of names zero delineated between each name in an enumeration + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementValues +
                urn:smpte:ul:060e2b34.01010102.03010203.05000000
              + LEAF + Type Definition Element Value List + Specifies, as a single string value, a list of values to match the names in the Type Definition Element Name List + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberNames +
                urn:smpte:ul:060e2b34.01010102.03010203.06000000
              + LEAF + Member Name List + Specifies, as a single string value, a list of names zero delineated between each name in a record + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendibleEnumerationElementNames +
                urn:smpte:ul:060e2b34.01010102.03010203.07000000
              + LEAF + Extendible Element Name List + Specifies, as a single string value, a list of names zero delineated between each name in an extendible enumeration + AAF~ElementNames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendibleEnumerationElementValues +
                urn:smpte:ul:060e2b34.01010102.03010203.08000000
              + LEAF + Type Definition Extendible Element Values + Specifies as a single string value a list of values to match the SMPTE labels or AUIDs in the Type Definition Extendible Element Names + AAF~ElementValues + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementLength +
                urn:smpte:ul:060e2b34.01010104.03010203.09000000
              + LEAF + Element Length + The length of each element in a list in bytes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetSet +
                urn:smpte:ul:060e2b34.01010102.03010203.0b000000
              + LEAF + Target Set + The path to the object which contains the target + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameValueConstructInterpretations +
                urn:smpte:ul:060e2b34.01010105.0301020a.00000000
              + NODE + Name-Value Construct Interpretations + Defining information about interpreting name-value constructs + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.0301020a.01000000
              + LEAF + Item Name + Defines the name of the parameter as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemName +
                urn:smpte:ul:060e2b34.01010105.0301020a.01010000
              + LEAF + Item Name + Defines the name of the parameter as a string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemValue_ISO7 +
                urn:smpte:ul:060e2b34.01010105.0301020a.02000000
              + LEAF + Item Value + Defines the value of the parameter as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemValue +
                urn:smpte:ul:060e2b34.01010105.0301020a.02010000
              + LEAF + Item Value + Defines the value of the parameter as a string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVInterpretations +
                urn:smpte:ul:060e2b34.01010102.03010210.00000000
              + NODE + KLV Interpretations + Defining information about interpreting the KLV construct + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FillerData +
                urn:smpte:ul:060e2b34.01010102.03010210.01000000
              + LEAF + Filler Data + Specifies an empty data element. Intended to act as a space filler. Value may be application dependant. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataValue +
                urn:smpte:ul:060e2b34.01010102.03010210.02000000
              + LEAF + KLV Data Value + An entire KLV triplet encoded as the value + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageKLVData +
                urn:smpte:ul:060e2b34.01010102.03010210.03000000
              + LEAF + Package KLV Data + Specifies a set of references to KLV data associated with the entire package + AAF~KLVData + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentKLVData +
                urn:smpte:ul:060e2b34.01010102.03010210.04000000
              + LEAF + Component KLV Data + Specifies a set of references to KLV data associated with a component within a package + AAF~KLVData + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TerminatingFillerData +
                urn:smpte:ul:060e2b34.01010103.03010210.05000000
              + LEAF + Terminating Filler Data + Specifies an empty data element specifically intended to flag the end of a package of Metadata. Value may be application dependant. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVMetadataSequence +
                urn:smpte:ul:060e2b34.01010107.03010210.06000000
              + LEAF + KLV Metadata Sequence + A sequence of KLV packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageAttributes +
                urn:smpte:ul:060e2b34.01010107.03010210.07000000
              + LEAF + Package Attributes + Specifies a set of references to Tagged Values associated with the entire package + AAF[1.1:]~Attributes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentAttributes +
                urn:smpte:ul:060e2b34.01010107.03010210.08000000
              + LEAF + Component Attributes + Specifies a set of references to Tagged Values associated with a component within a package + AAF[1.1:]~Attributes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLConstructsAndInterpretations +
                urn:smpte:ul:060e2b34.01010105.03010220.00000000
              + NODE + XML Constructs and Interpretations + Defining information about XML constructs and interpretations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_Indirect +
                urn:smpte:ul:060e2b34.01010105.03010220.01000000
              + LEAF + XML Document Text + An XML document as text. Data type is specified by the value. + http://www.w3.org/TR/REC-xml + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_UTF7 +
                urn:smpte:ul:060e2b34.01010105.03010220.01010000
              + LEAF + XML Document Text + An XML document in UTF-7 text encoding form + http://www.ietf.org/rfc/rfc2152.txt + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText +
                urn:smpte:ul:060e2b34.01010105.03010220.01020000
              + LEAF + XML Document Text + An XML document in UTF-16 text encoding form + ISO 10646-1:2000 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_BiM +
                urn:smpte:ul:060e2b34.01010105.03010220.01030000
              + LEAF + XML Document Text + An XML document in MPEG-7 BiM form + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLBiMConstructsInMultipleStreams +
                urn:smpte:ul:060e2b34.01010107.03010220.02000000
              + NODE + XML BiM Constructs in Multiple Streams + Stream identification information for XML document text carried in mutilple simultaneous streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrames +
                urn:smpte:ul:060e2b34.01010107.03010220.02010000
              + NODE + MPEG-7 BiM Decoder Init Frames + Simultaneously streamed MPEG-7 BiM DecoderInit frames + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream1 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010100
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 1) + Stream 1 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream2 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010200
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 2) + Stream 2 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream3 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010300
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 3) + Stream 3 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream4 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010400
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 4) + Stream 4 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream5 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010500
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 5) + Stream 5 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream6 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010600
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 6) + Stream 6 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream7 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010700
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 7) + Stream 7 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream8 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010800
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 8) + Stream 8 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrames +
                urn:smpte:ul:060e2b34.01010107.03010220.02020000
              + NODE + MPEG-7 BiM Access Unit Frames + Simultaneously streamed MPEG-7 BiM Access Unit frames + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream1 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020100
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 1) + Stream 1 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream2 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020200
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 2) + Stream 2 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream3 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020300
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 3) + Stream 3 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream4 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020400
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 4) + Stream 4 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream5 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020500
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 5) + Stream 5 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream6 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020600
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 6) + Stream 6 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream7 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020700
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 7) + Stream 7 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream8 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020800
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 8) + Stream 8 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03000000
              + NODE + Text Data + Text Data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTF8TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03010000
              + LEAF + UTF-8 Text Data + UTF-8 Text Data + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTF16TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03020000
              + LEAF + UTF-16 Text Data + UTF-16 Text Data + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalDimensions +
                urn:smpte:ul:060e2b34.01010101.03010300.00000000
              + NODE + Fundamental Dimensions + Information about the four basic indefinables of natural philosophy + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Length +
                urn:smpte:ul:060e2b34.01010101.03010301.00000000
              + NODE + Length + Descriptive information about length (Default is Metric system, metres) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LengthSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010301.01000000
              + LEAF + Length System Name + Metric, Imperial etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LengthUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010301.02000000
              + LEAF + Length Unit Kind + Units of measurements of length and distance (feet, metres etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Angles +
                urn:smpte:ul:060e2b34.01010101.03010302.00000000
              + NODE + Angles + Descriptive information about Angles (Default is Degrees) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngularUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010302.01000000
              + LEAF + Angular Unit Kind + Degrees, Radians, Grads etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Time +
                urn:smpte:ul:060e2b34.01010101.03010303.00000000
              + NODE + Time + Descriptive information about Time (Default is UTC system). + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeSystemOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010303.01000000
              + LEAF + Time System Offset + Time offset from UTC (Signed hours and minutes, colon delineated) (Default is undefined). Positive is East of UMT; negative is West of UMT + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 6 chars max + +13hours/-12hours +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010303.02000000
              + LEAF + Time Unit Kind + Frames, seconds, minutes etc. (Default is seconds). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimingBiasCorrection +
                urn:smpte:ul:060e2b34.01010103.03010303.03000000
              + LEAF + Timing Bias Correction + Correction in seconds to be applied to timing metadata or essence time + Positive seconds to be added to the applicable time; negative seconds to be subtracted from the applicable time + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimingBiasCorrectionDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010303.04000000
              + LEAF + Timing Bias Correction Description + Description of the timing bias computation, reason, etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Mass +
                urn:smpte:ul:060e2b34.01010101.03010304.00000000
              + NODE + Mass + Descriptive information about Mass (Default is Metric system, Kilogramme) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Energy +
                urn:smpte:ul:060e2b34.01010101.03010305.00000000
              + NODE + Energy + Descriptive information about Energy (Default is Joule) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HumanAssignedDescriptors +
                urn:smpte:ul:060e2b34.01010101.03020000.00000000
              + NODE + Human Assigned Descriptors + Descriptors (Human Assigned) relating to analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Categorization +
                urn:smpte:ul:060e2b34.01010101.03020100.00000000
              + NODE + Categorization + Analytical categorisation of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedContentClassification +
                urn:smpte:ul:060e2b34.01010101.03020101.00000000
              + NODE + Content Classification + Content classification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentCodingSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.01000000
              + LEAF + Content Coding System + The system of coding for program classification eg Escort 2.4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 31 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.02000000
              + LEAF + Program Kind + Type of program (e.g., cartoon, film, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Genre_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.03000000
              + LEAF + Genre + Programme genre (e.g., entertainment, current affairs magasine, Italo Western, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Genre +
                urn:smpte:ul:060e2b34.01010103.03020101.03010000
              + LEAF + Genre + Programme genre (e.g., entertainment, current affairs magasine, Italo Western, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetAudience_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.04000000
              + LEAF + Target Audience + Target audience (e.g., children, 17 to 32, elderly, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetAudience +
                urn:smpte:ul:060e2b34.01010103.03020101.04010000
              + LEAF + Target Audience + Target audience (e.g., children, 17 to 32, elderly, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramMaterialClassificationCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020101.10000000
              + LEAF + Program Material Classification Code + The resulting delineated classification code from the classification system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogingAndIndexing +
                urn:smpte:ul:060e2b34.01010101.03020102.00000000
              + NODE + Cataloging and Indexing + Archival analysis of the essence metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogDataStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.01000000
              + LEAF + Catalog Data Status + The current status of the catalogue as a freeform text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThesaurusName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.02000000
              + LEAF + Thesaurus Name + The name of a specialized vocabulary of selected words or concepts for a particular field, e.g. a particular cataloguing, indexing or thesaurus system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThesaurusName +
                urn:smpte:ul:060e2b34.01010104.03020102.02010000
              + LEAF + Thesaurus Name + The name of a specialized vocabulary of selected words or concepts for a particular field, e.g. a particular cataloguing, indexing or thesaurus system + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Theme_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.03000000
              + LEAF + Theme + The category of the Theme of the content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Theme +
                urn:smpte:ul:060e2b34.01010103.03020102.03010000
              + LEAF + Theme + The category of the Theme of the content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentClassification +
                urn:smpte:ul:060e2b34.01010101.03020102.04000000
              + LEAF + Content Classification + The value of the content classification as a (possibly subdivided) alphanumeric string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020102.04010000
              + LEAF + Subject Name + The Subject being indexed expressed as a Name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectName +
                urn:smpte:ul:060e2b34.01010103.03020102.04020000
              + LEAF + Subject Name + The Subject being indexed expressed as a Name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Keywords_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.05000000
              + LEAF + Keywords + Words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Keywords +
                urn:smpte:ul:060e2b34.01010103.03020102.05010000
              + LEAF + Keywords + Words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrames_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.06000000
              + LEAF + Key Frames + Freeform textual reference to a key frame of video in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeySounds_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.07000000
              + LEAF + Key Sounds + Freeform textual reference to a key sound in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyData_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.08000000
              + LEAF + Key Data + Freeform textual reference to a key piece of data or program in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedCategoryName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.09000000
              + LEAF + Assigned Category Name + Freeform textual name assigned by the user to a category - as in, for example, a column header + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Tag +
                urn:smpte:ul:060e2b34.01010102.03020102.09010000
              + LEAF + Assigned Category Name + Freeform textual name assigned by the user to a category - as in, for example, a column header + AAF~Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedCategoryValue_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0a000000
              + LEAF + Assigned Category Value + Freeform textual value for an assigned category + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndirectValue +
                urn:smpte:ul:060e2b34.01010102.03020102.0a010000
              + LEAF + Assigned Category Value + Freeform textual value for an assigned category + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotList_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0b000000
              + LEAF + Shot List + Freeform textual listing of shots, for example indexed against time or frame count + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageUserComments +
                urn:smpte:ul:060e2b34.01010102.03020102.0c000000
              + LEAF + Package User Comments + Specifies a vector of references to categorized package comments + AAF~UserComments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueInWords_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0d000000
              + LEAF + Cue-In Words + The actual words on the sound track or a textual reference to music etc. at the in-cue point + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InCueWords +
                urn:smpte:ul:060e2b34.01010104.03020102.0d010000
              + LEAF + Cue-In Words + The actual words on the sound track or a textual reference to music etc. at the in-cue point + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueOutWords_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0e000000
              + LEAF + Cue-Out Words + The words on the sound track or a textual reference to music etc. at the out-cue point + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OutCueWords +
                urn:smpte:ul:060e2b34.01010104.03020102.0e010000
              + LEAF + Cue-Out Words + The words on the sound track or a textual reference to music etc. at the out-cue point + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrameSampleCount +
                urn:smpte:ul:060e2b34.01010103.03020102.0f000000
              + LEAF + Key Frame Sample Count + The number of key frame samples in the subject digital video file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020102.10000000
              + LEAF + Keypoint Kind + The Kind of keypoint - e.g. shot category, keyword, key picture, key sound etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointKind +
                urn:smpte:ul:060e2b34.01010104.03020102.10010000
              + LEAF + Keypoint Kind + The Kind of keypoint - e.g. shot category, keyword, key picture, key sound etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020102.11000000
              + LEAF + Keypoint Value + The Value of the keypoint - i.e. the kind of framing, lens effect etc or the actual keyword, key texture, key timbre etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointValue +
                urn:smpte:ul:060e2b34.01010104.03020102.11010000
              + LEAF + Keypoint Value + The Value of the keypoint - i.e. the kind of framing, lens effect etc or the actual keyword, key texture, key timbre etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkThesaurusName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020102.15000000
              + LEAF + Framework Thesaurus Name + The name of the default specialized vocabulary of selected words or concepts for a particular field used in a framework, e.g. a particular cataloguing, indexing or thesaurus system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkThesaurusName +
                urn:smpte:ul:060e2b34.01010105.03020102.15010000
              + LEAF + Framework Thesaurus Name + The name of the default specialized vocabulary of selected words or concepts for a particular field used in a framework, e.g. a particular cataloguing, indexing or thesaurus system + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentUserComments +
                urn:smpte:ul:060e2b34.01010107.03020102.16000000
              + LEAF + Component User Comments + Specifies a vector of references to comments on a Component + AAF[1.1:]~UserComments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAAudioContentKind +
                urn:smpte:ul:060e2b34.0101010e.03020102.20000000
              + LEAF + MCA Audio Content Kind + The MCA Audio Content Kind item shall indicate the kind of content contained in the audio essence as described in SMPTE RP 428-4. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAAudioElementKind +
                urn:smpte:ul:060e2b34.0101010e.03020102.21000000
              + LEAF + MCA Audio Element Kind + The MCA Audio Element Kind item shall indicate the kind of audio element contained in the audio essence as described in SMPTE RP 428-4. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescription +
                urn:smpte:ul:060e2b34.01010101.03020106.00000000
              + NODE + Textual Description + A textual characterization of the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Abstract_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.01000000
              + LEAF + Abstract + A brief narrative summary of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1024 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Abstract +
                urn:smpte:ul:060e2b34.01010103.03020106.01010000
              + LEAF + Abstract + A brief narrative summary of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purpose_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.02000000
              + LEAF + Purpose + A summary of the intentions with which the data set was developed. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purpose +
                urn:smpte:ul:060e2b34.01010103.03020106.02010000
              + LEAF + Purpose + A summary of the intentions with which the data set was developed. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Description_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.03000000
              + LEAF + Description + A freeform textual descrition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Description +
                urn:smpte:ul:060e2b34.01010103.03020106.03010000
              + LEAF + Description + A freeform textual descrition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextDataDescription +
                urn:smpte:ul:060e2b34.0101010d.03020106.03020000
              + LEAF + Text Data Description + A freeform text description. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.04000000
              + LEAF + Color Descriptor + eg. Black and white, tinted etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.04010000
              + LEAF + Color Descriptor + eg. Black and white, tinted etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.05000000
              + LEAF + Format Descriptor + eg. Letterbox, Pillarbox etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.05010000
              + LEAF + Format Descriptor + eg. Letterbox, Pillarbox etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntentDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020106.06000000
              + LEAF + Intent Descriptor + A freeform textual descrition written before production implementation etc. started - e.g. at the scripting stage. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntentDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.06010000
              + LEAF + Intent Descriptor + A freeform textual descrition written before production implementation etc. started - e.g. at the scripting stage. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescriptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020106.07000000
              + LEAF + Textual Description Kind + A summary of the use for which the description was made - e.g. billings, the production companies original description, a full production description etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescriptionKind +
                urn:smpte:ul:060e2b34.01010103.03020106.07010000
              + LEAF + Textual Description Kind + A summary of the use for which the description was made - e.g. billings, the production companies original description, a full production description etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSynopsis_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.08000000
              + LEAF + Group Synopsis + Synopsis of the group, series, serial etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSynopsis +
                urn:smpte:ul:060e2b34.01010105.03020106.08010000
              + LEAF + Group Synopsis + Synopsis of the group, series, serial etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSynopsis_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.09000000
              + LEAF + Annotation Synopsis + Synopsis of the A/V content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSynopsis +
                urn:smpte:ul:060e2b34.01010105.03020106.09010000
              + LEAF + Annotation Synopsis + Synopsis of the A/V content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0a000000
              + LEAF + Annotation Description + A free-form textual description of the A/V content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0a010000
              + LEAF + Annotation Description + A free-form textual description of the A/V content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0b000000
              + LEAF + Scripting Kind + Description of the scripting kind as a text string (e.g. lighting, transcript etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingKind +
                urn:smpte:ul:060e2b34.01010105.03020106.0b010000
              + LEAF + Scripting Kind + Description of the scripting kind as a text string (e.g. lighting, transcript etc) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingText_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0c000000
              + LEAF + Scripting Text + The scripting text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingText +
                urn:smpte:ul:060e2b34.01010105.03020106.0c010000
              + LEAF + Scripting Text + The scripting text string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0d000000
              + LEAF + Shot Description + A freeform textual description of the shot defined by this set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0d010000
              + LEAF + Shot Description + A freeform textual description of the shot defined by this set + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0e000000
              + LEAF + Annotation Kind + Specifies the kind of annotation, e.g. Technical, Editorial, Archival etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationKind +
                urn:smpte:ul:060e2b34.01010105.03020106.0e010000
              + LEAF + Annotation Kind + Specifies the kind of annotation, e.g. Technical, Editorial, Archival etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0f000000
              + LEAF + Related Material Description + A freeform textual description of related material of any kind + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0f010000
              + LEAF + Related Material Description + A freeform textual description of related material of any kind + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFMarkerDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020106.10000000
              + LEAF + JFIF Marker Description + A freeform textual description of the JFIF image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFMarkerDescription +
                urn:smpte:ul:060e2b34.01010109.03020106.10010000
              + LEAF + JFIF Marker Description + A freeform textual description of the JFIF image + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLMetaDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020106.11000000
              + LEAF + HTML Meta Description + A freeform textual description of a Web page intended for use in the HTML "meta" element + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLMetaDescription +
                urn:smpte:ul:060e2b34.01010109.03020106.11010000
              + LEAF + HTML Meta Description + A freeform textual description of a Web page intended for use in the HTML "meta" element + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Stratum +
                urn:smpte:ul:060e2b34.01010101.03020107.00000000
              + NODE + Stratum + The descriptive stratum of the archival content analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StratumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020107.01000000
              + LEAF + Stratum Kind + eg. Background, action, sound natures etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Subtitling +
                urn:smpte:ul:060e2b34.0101010e.03020108.00000000
              + NODE + Subtitling + Information about subtitles + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTextKind +
                urn:smpte:ul:060e2b34.0101010e.03020108.01000000
              + LEAF + Event Text Kind + Identifies the type (purpose) of the event text type, e.g. subtitles or closed captions. + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + STLLineNumber +
                urn:smpte:ul:060e2b34.0101010e.03020108.02000000
              + LEAF + STL Line Number + The line number on which a specific language is being visible + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Assessments +
                urn:smpte:ul:060e2b34.01010101.03020200.00000000
              + NODE + Assessments + Assesments of editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Awards +
                urn:smpte:ul:060e2b34.01010101.03020201.00000000
              + NODE + Awards + Awards relating to editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndividualAwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020201.01000000
              + LEAF + Individual Award Name + Awards granted to individuals + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramAwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020201.02000000
              + LEAF + Program Award Name + Awards granted to program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020201.03000000
              + LEAF + Festival Name + The festival or award ceremony at which an award was made. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalName +
                urn:smpte:ul:060e2b34.01010104.03020201.03010000
              + LEAF + Festival Name + The festival or award ceremony at which an award was made. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020201.04000000
              + LEAF + Award Name + Name of the award + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardName +
                urn:smpte:ul:060e2b34.01010104.03020201.04010000
              + LEAF + Award Name + Name of the award + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020201.05000000
              + LEAF + Award Category + Name of the award classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardCategory +
                urn:smpte:ul:060e2b34.01010104.03020201.05010000
              + LEAF + Award Category + Name of the award classification + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NominationCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010108.03020201.06000000
              + LEAF + Nomination Category + Nomination category of the award (e.g. best actor, best director etc.) + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NominationCategory +
                urn:smpte:ul:060e2b34.01010108.03020201.06010000
              + LEAF + Nomination Category + Nomination category of the award (e.g. best actor, best director etc.) + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualitativeValues +
                urn:smpte:ul:060e2b34.01010101.03020202.00000000
              + NODE + Qualitative Values + Assessed values relating to editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssetValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.01000000
              + LEAF + Asset Value + Assessment of the program quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.02000000
              + LEAF + Content Value + Assessment of the content value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CulturalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.03000000
              + LEAF + Cultural Value + Assessment of the cultural quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AestheticValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.04000000
              + LEAF + Aesthetic Value + Assessment of the asthetic quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HistoricalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.05000000
              + LEAF + Historical Value + Assessment of the historic value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TechnicalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.06000000
              + LEAF + Technical Value + Assessment of the technical value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherValues_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.07000000
              + LEAF + Other Values + Assessment of other relevant qualities + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TechnicalCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03020300.00000000
              + NODE + Technical Comments and Descriptions + Technical comments or descriptions relating to system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03020301.00000000
              + NODE + Object Comments and Descriptions + Comments or descriptions relating to Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020301.01000000
              + LEAF + Object Kind + Specifies the kind of Object. E.g. a plugin + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectKind +
                urn:smpte:ul:060e2b34.01010102.03020301.01010000
              + LEAF + Object Kind + Specifies the kind of Object. E.g. a plugin + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020301.02000000
              + LEAF + Object Description + Provides human informative description about the object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectDescription +
                urn:smpte:ul:060e2b34.01010102.03020301.02010000
              + LEAF + Object Description + Provides human informative description about the object + AAF~Description + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDescriptionCode +
                urn:smpte:ul:060e2b34.01010103.03020301.02020000
              + LEAF + Object Description Code + Provides human informative description about the object as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020205.00000000 + 8 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralComments +
                urn:smpte:ul:060e2b34.01010103.03020302.00000000
              + NODE + General Comments + Note form technical comments and descriptions of a general nature + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020302.01000000
              + LEAF + Description Kind + The name of a descriptive comment or note. Eg. Peters comment, Noise + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptionKind +
                urn:smpte:ul:060e2b34.01010103.03020302.01010000
              + LEAF + Description Kind + The name of a descriptive comment or note. Eg. Peters comment, Noise + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveComment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020302.02000000
              + LEAF + Descriptive Comment + The comment or note as text. E.g. Head banding, + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveComment +
                urn:smpte:ul:060e2b34.01010103.03020302.02010000
              + LEAF + Descriptive Comment + The comment or note as text. E.g. Head banding, + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDescriptiveComments +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100000
              + NODE + Descriptive Comment for a Device + Technical comments and descriptions of a general nature for a device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensAttributes +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100100
              + LEAF + Lens Attributes + Informative description of the lens in use (as a text string). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraAttributes +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100200
              + LEAF + Camera Attributes + Informative description of the camera in use (as a text string). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveNames +
                urn:smpte:ul:060e2b34.01010102.03020400.00000000
              + NODE + Descriptive Names + Assigned descriptive names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectNames +
                urn:smpte:ul:060e2b34.01010103.03020401.00000000
              + NODE + Object Names + Descriptive names assigned to Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericObjectNames +
                urn:smpte:ul:060e2b34.01010102.03020401.01000000
              + NODE + Generic Object Names + Descriptive names assigned to Generic Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020401.01010000
              + LEAF + Object Name + Specifies the name of the object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionName_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020401.02000000
              + LEAF + MetaDefinition Name + Specifies the display name of the item being defined + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionName +
                urn:smpte:ul:060e2b34.01010102.03020401.02010000
              + LEAF + MetaDefinition Name + Specifies the display name of the item being defined + AAF~Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditorialCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010102.03020500.00000000
              + NODE + Editorial Comments and Descriptions + Comments or descriptions of an editorial nature + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCommentKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020501.00000000
              + LEAF + Shot Comment Kind + The type of descriptive comment or note (e.g., 'Shot' or 'Lighting Mood') + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCommentKind +
                urn:smpte:ul:060e2b34.01010107.03020501.01000000
              + LEAF + Shot Comment Kind + The type of descriptive comment or note (e.g., 'Shot' or 'Lighting Mood') + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotComment_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020502.00000000
              + LEAF + Shot Comment + The comment or note about a shot (e.g., 'general view of valley in autumn', 'badly recorded' or 'sombre mood') + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotComment +
                urn:smpte:ul:060e2b34.01010107.03020502.01000000
              + LEAF + Shot Comment + The comment or note about a shot (e.g., 'general view of valley in autumn', 'badly recorded' or 'sombre mood') + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SlateInformation +
                urn:smpte:ul:060e2b34.01010104.03020503.00000000
              + LEAF + Slate Information + Slate information as a text string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipKind +
                urn:smpte:ul:060e2b34.01010105.03020504.00000000
              + LEAF + Clip Kind + The kind of clip as an enumerated string (e.g., still, graphic, moving pictures, sound etc.) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HumanAssignedContextDescriptions +
                urn:smpte:ul:060e2b34.01010103.03020600.00000000
              + NODE + Human-Assigned Context Descriptions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContextDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020601.00000000
              + LEAF + Context Description + A textual anotation of the context of the production. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MachineAssignedOrComputedDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030000.00000000
              + NODE + Machine-Assigned or Computed Descriptions + Descriptors (Machine Assigned or Computed) relating to analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCategorization +
                urn:smpte:ul:060e2b34.01010101.03030100.00000000
              + NODE + Automated Categorization + Automated analytical categorization of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedContentClassification +
                urn:smpte:ul:060e2b34.01010101.03030101.00000000
              + NODE + Automated Content Classification + Automated content classification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCatalogingAndIndexing +
                urn:smpte:ul:060e2b34.01010101.03030102.00000000
              + NODE + Automated Cataloging and Indexing + Automated cataloguing and indexing by archival analysis of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCatalogingCatalogDataStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.01000000
              + LEAF + Catalog Data Status + The current status of the catalogue as a freeform text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogingSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.02000000
              + LEAF + Cataloging System Name + The particular Cataloguing, Indexing or Thesaurus system used by the automated system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeywords_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.06000000
              + LEAF + Computed Keywords + Automatically derived words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeywords +
                urn:smpte:ul:060e2b34.01010103.03030102.06010000
              + LEAF + Computed Keywords + Automatically derived words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeyFrames_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.07000000
              + LEAF + Computed Key Frames + Automatically derived freeform textual reference to a key frame of video in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeySounds_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.08000000
              + LEAF + Computed Key Sounds + Automatically derived freeform textual reference to a key sound in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeyData_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.09000000
              + LEAF + Computed Key Data + Automatically derived freeform textual reference to a key piece of data or program in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedTextualDescription +
                urn:smpte:ul:060e2b34.01010101.03030106.00000000
              + NODE + Computed Textual Description + Automated textual characterization of the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedStratum +
                urn:smpte:ul:060e2b34.01010101.03030107.00000000
              + NODE + Automated Stratum + Automatically derived descriptive stratum of the archival content analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedStratumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030107.01000000
              + LEAF + Computed Stratum Kind + Automatically derived descriptive stratum of the content (e.g., background, action, sound nature) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedTechnicalCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030300.00000000
              + NODE + Computed Technical Comments and Descriptions + Technical comments or descriptions relating to system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030301.00000000
              + NODE + Computed Object Comments and Descriptions + Comments or descriptions relating to objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03030301.01000000
              + LEAF + Computed Object Kind + Specifies the kind of object (e.g., a plugin) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectKind +
                urn:smpte:ul:060e2b34.01010102.03030301.01010000
              + LEAF + Computed Object Kind + Specifies the kind of object (e.g., a plugin) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersionString_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03030301.02000000
              + LEAF + Version Number String + Specifies the string version number of the code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersionString +
                urn:smpte:ul:060e2b34.01010102.03030301.02010000
              + LEAF + Version Number String + Specifies the string version number of the code + AAF~VersionString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersion +
                urn:smpte:ul:060e2b34.01010102.03030301.03000000
              + LEAF + Version Number + Specifies the version number of the code + AAF~VersionNumber + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectIdentificationConfidence +
                urn:smpte:ul:060e2b34.01010103.03030301.04000000
              + LEAF + Object Identification Confidence + Percentage confidence that an identified object in the current field of view is the same object identified, detected or tracked in another or previous view. This is an indication that the track of a moving object has been maintained. + Format is PPPD where PPP is the percentage confidence from 0 (zero) to 100 and D is tenths of a percent. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectHorizontalAverageDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.05000000
              + LEAF + Object Horizontal Average Dimension + Average number of horizontal pixels when a bounding rectangle is placed around an object in the frame or field of view. + Sides of the bounding rectangle are parallel to the sides of the image frame. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectVerticalAverageDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.06000000
              + LEAF + Object Vertical Average Dimension + Average number of vertical pixels or lines when a bounding rectangle is placed around an object in the frame or field of view. + Sides of the bounding rectangle are parallel to the sides of the image frame. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectAreaDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.07000000
              + LEAF + Object Area Dimension + Count of the number of pixels comprising an object in the frame or field of view. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DerivedSummaryInformation +
                urn:smpte:ul:060e2b34.01010102.03030302.00000000
              + NODE + Derived Summary Information + Summary Information derived from other Metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WAVESummary +
                urn:smpte:ul:060e2b34.01010102.03030302.01000000
              + LEAF + WAVE Summary + Summary info according to WAVE Chunk format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AIFCSummary +
                urn:smpte:ul:060e2b34.01010102.03030302.02000000
              + LEAF + AIFC Summary + Summary info according to AIFC Chunk format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFSummary +
                urn:smpte:ul:060e2b34.01010102.03030302.03000000
              + LEAF + TIFF Summary + Summary info according to TIFF format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010105.03030310.00000000
              + NODE + Device Comments and Descriptions + Technical comments or descriptions relating to devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceUsageDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03030310.01000000
              + LEAF + Device Usage Description + Freeform textual description of the function or use of the device in the production of a specific content item + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceUsageDescription +
                urn:smpte:ul:060e2b34.01010105.03030310.01010000
              + LEAF + Device Usage Description + Freeform textual description of the function or use of the device in the production of a specific content item + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Parametric +
                urn:smpte:ul:060e2b34.01010101.04000000.00000000
              + NODE + PARAMETRIC + Class 4 is reserved for parametric and configuration metadata. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndImageEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010000.00000000
              + NODE + Video and Image Essence Characteristics + All parametric aspects of the video/image essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalImageCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010100.00000000
              + NODE + Fundamental Image Characteristics + Fundamental characteristics of the image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AspectRatios +
                urn:smpte:ul:060e2b34.01010101.04010101.00000000
              + NODE + Aspect Ratios + Specifies the horizontal to vertical aspect ratio of the image. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageAspectRatio +
                urn:smpte:ul:060e2b34.01010101.04010101.01000000
              + LEAF + Presentation Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the whole image as it is to be presented to avoid geometric distortion and hence including any black edges. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureAspectRatio_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010101.02000000
              + LEAF + Capture Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the image captured at the sensor - hence after the (possibly anamorphic) lens. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportAspectRatio +
                urn:smpte:ul:060e2b34.01010102.04010101.03000000
              + LEAF + Viewport Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the image viewport - ie. The desired shot as it is framed for capture and thus the aspect ratio at which the image must be viewed to avoid geometric distortion. May also therefore be a sub-selection of a larger image, possibly of a different aspect ratio. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalActionSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.04000000
              + LEAF + Horizontal Action Safe Percentage + Specifies the percentage of the image which lies outside the horizontal safe area for action: expressed as the ratio of one side as a percentage of the total width of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalActionSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.05000000
              + LEAF + Vertical Action Safe Percentage + Specifies the percentage of the image which lies outside the vertical safe area for action: expressed as the ratio of one side as a percentage of the total height of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalGraphicsSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.06000000
              + LEAF + Horizontal Graphics Safe Percentage + Specifies the percentage of the image which lies outside the horizontal safe area for graphics: expressed as the ratio of one side as a percentage of the total width of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalGraphicsSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.07000000
              + LEAF + Vertical Graphics Safe Percentage + Specifies the percentage of the image which lies outside the vertical safe area for graphics: expressed as the ratio of one side as a percentage of the total height of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerceivedDisplayFormat +
                urn:smpte:ul:060e2b34.01010103.04010101.08000000
              + LEAF + Perceived Display Format Name + Colloquial description of the image when viewed in its intended aspect ratio on a display of another aspect ratio - e.g. pillarbox, letterbox, mixed etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerceivedDisplayFormatCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010101.08010000
              + LEAF + Perceived Display Format Code + A code for the colloquial description of the image when viewed in its intended aspect ratio on a display of another aspect ratio (e.g., a code for pillarbox, letterbox, mixed) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AFDBarData +
                urn:smpte:ul:060e2b34.0101010c.04010101.09000000
              + LEAF + AFD and Bar Data + The Active Format Description and Bar Data is a concatenated series of codes, flags, and values that signal the active image area being used for program content. The content and structure of the payload information value shall be coded as described in SMPTE 2016-3. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PanScanInformation +
                urn:smpte:ul:060e2b34.0101010c.04010101.0a000000
              + LEAF + Pan Scan Information + The Pan-Scan information is a concatenated series of codes, flags, and values that describe a variable image viewport and the output aspect ratio. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010200.00000000
              + NODE + Image Source Characteristics + Fundamental characteristics of the image source + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OptoElectronicFormulation +
                urn:smpte:ul:060e2b34.01010101.04010201.00000000
              + NODE + Opto-Electronic Formulation + Fundamental opto-elecronic transfer etc characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010201.01000000
              + NODE + Transfer Characteristics + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureGammaEquation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01010000
              + LEAF + Capture Gamma Equation + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureGammaEquation_Rational +
                urn:smpte:ul:060e2b34.01010101.04010201.01010100
              + LEAF + Capture Gamma Equation + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferCharacteristic +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + LEAF + Transfer Characteristic + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + AAF + SMPTE ST 377-1:2011 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020102.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LumaEquation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01020000
              + LEAF + Luma Equation + Specifies the equation used to derive luma and chroma from gamma-corrected RGB signals + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorimetryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01030000
              + LEAF + Colorimetry Code + The fundamental color coding that relates the scene CIE tri-stimulus values (X, Y, Z) to the linear video levels (R, G, B). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingEquations +
                urn:smpte:ul:060e2b34.01010102.04010201.01030100
              + LEAF + Coding Equations + The fundamental color coding that relates the scene CIE tri-stimulus values (X, Y, Z) to the linear video levels (R, G, B). + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020106.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalFormCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01040000
              + LEAF + Signal Form Code + Code specifies the component sequence for the video pixel matrix (eg RGB, YUV etc). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoColorKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010201.01050000
              + LEAF + Video Color Kind + The type of color of the video (B/W, color, etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorPrimaries_ISO7 +
                urn:smpte:ul:060e2b34.01010109.04010201.01060000
              + LEAF + Color Primaries + The set of color primaries used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorPrimaries +
                urn:smpte:ul:060e2b34.01010109.04010201.01060100
              + LEAF + Color Primaries + The set of color primaries used + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020105.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PresentationGammaEquation_GammaCode +
                urn:smpte:ul:060e2b34.01010102.04010201.01100000
              + LEAF + Presentation Gamma Equation + Specifies the non-linear relationship between the input video signal levels and the resulting displayed light levels on the display. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020206.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PresentationGammaEquation +
                urn:smpte:ul:060e2b34.01010102.04010201.01100100
              + LEAF + Presentation Gamma Equation + Specifies the non-linear relationship between the input video signal levels and the resulting displayed light levels on the display. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020102.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorParameters +
                urn:smpte:ul:060e2b34.01010107.04010202.00000000
              + NODE + Sensor Parameters + Settings and adjustments for image sensors + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorMode_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04010202.01000000
              + LEAF + Sensor Mode + The mode setting of the sensor as a text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndImageScanningParameters +
                urn:smpte:ul:060e2b34.01010101.04010300.00000000
              + NODE + Video and Image Scanning Parameters + Fundemental scanning and sequencing information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalParameters +
                urn:smpte:ul:060e2b34.01010101.04010301.00000000
              + NODE + Temporal Parameters + Time dependant sequencing and scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorFieldCode +
                urn:smpte:ul:060e2b34.01010101.04010301.01000000
              + LEAF + Color Field Code + Identifies the color field of the source video field for video derived from composite sources. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 00h = undefined (default), 01h ~ 08h = field number +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldRate +
                urn:smpte:ul:060e2b34.01010101.04010301.02000000
              + LEAF + Field Rate + Specifies the field rate of the video scanning system. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameRate_UInt16 +
                urn:smpte:ul:060e2b34.01010101.04010301.03000000
              + LEAF + Frame Rate + The rate that video images are captured, expressed in frames per second. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureFrameRate +
                urn:smpte:ul:060e2b34.0101010d.04010301.03010000
              + LEAF + Capture Frame Rate + The rate that video images are captured expressed in frames per second (for example, 50:1, 60000:1001). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameLayout +
                urn:smpte:ul:060e2b34.01010101.04010301.04000000
              + LEAF + Frame Layout + Specifies frame layout (interlaced, single frame, full frame, etc.) + AAF + AAF names this type "LayoutType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010108.00000000 + 1 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SamplingStructureCode +
                urn:smpte:ul:060e2b34.01010101.04010301.05000000
              + LEAF + Sampling Structure Code + A code that specifies the analogue or digital sampling structure for the video scanning system. Eg Progressive + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020207.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldDominance +
                urn:smpte:ul:060e2b34.01010102.04010301.06000000
              + LEAF + Field Dominance + Specifies whether the first frame of picture is field 1 or field 2 + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010121.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureDisplayRate +
                urn:smpte:ul:060e2b34.01010103.04010301.07000000
              + LEAF + Picture Display Rate + The rate at which pictures must be displayed in order to achieve the intended editorial effect, expressed in pictures per second. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalParameters +
                urn:smpte:ul:060e2b34.01010101.04010302.00000000
              + NODE + Vertical Parameters + Vertical scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalLinesPerFrame +
                urn:smpte:ul:060e2b34.01010101.04010302.01000000
              + LEAF + Total Lines per Frame + Specifies the number of lines in a total frame in the video scanning system. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveLinesPerFrame +
                urn:smpte:ul:060e2b34.01010101.04010302.02000000
              + LEAF + Active Lines per Frame + Specifies the total number of lines (rows) in the active portion of a frame in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LeadingLines +
                urn:smpte:ul:060e2b34.01010101.04010302.03000000
              + LEAF + Leading Lines + Specifies the number of leading lines in the processed image to be blanked before display + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrailingLines +
                urn:smpte:ul:060e2b34.01010101.04010302.04000000
              + LEAF + Trailing Lines + Specifies the number of trailing lines in the processed image to be blanked before display + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoLineMap +
                urn:smpte:ul:060e2b34.01010102.04010302.05000000
              + LEAF + Video Line Map + Specifies the line numbers of the two top lines of the active picture + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010300.00000000 + 2 x 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayF2Offset +
                urn:smpte:ul:060e2b34.01010105.04010302.07000000
              + LEAF + Display F2 Offset + Topness Adjustment for displayed picture + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredF2Offset +
                urn:smpte:ul:060e2b34.01010105.04010302.08000000
              + LEAF + Stored F2 Offset + Topness Adjustment for stored picture + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveFormatDescriptor +
                urn:smpte:ul:060e2b34.01010105.04010302.09000000
              + LEAF + Active Format Descriptor + Specifies the intended framing of the content within the displayed image (4:3 in 16:9 etc.) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LineNumber +
                urn:smpte:ul:060e2b34.01010105.04010302.0a000000
              + LEAF + Line Number + Specifies the video line number to which a block of essence data corresponds + ITU-R BT.470-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternativeCenterCuts +
                urn:smpte:ul:060e2b34.0101010e.04010302.0b000000
              + LEAF + Alternative Center Cuts + Specifies the alternate aspect ratio subset(s) of the active area, containing all of the critical action and centered on the active area. + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 4+4+16*N +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalParameters +
                urn:smpte:ul:060e2b34.01010101.04010303.00000000
              + NODE + Horizontal Parameters + Horizontal scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogVideoCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010400.00000000
              + NODE + Analog Video Coding Characteristics + Information about the analogue coding of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogVideoSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010401.00000000
              + LEAF + Analog Video System Name + PAL, NTSC etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoSignal +
                urn:smpte:ul:060e2b34.01010102.04010401.01000000
              + LEAF + Video Signal + PAL, NTSC etc + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010103.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoScanningCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04010404.00000000
              + NODE + Video Scanning Characteristics + Information about the scanning of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScanningDirection +
                urn:smpte:ul:060e2b34.01010105.04010404.01000000
              + LEAF + Scanning Direction + Enumerated Scanning Direction + AAF[1.1:] + AAF names this type "OrientationType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010128.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010500.00000000
              + NODE + Digital Video and Image Coding Parameters + Information about the essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04010501.00000000
              + NODE + Digital Video and Image Sampling Parameters + Inflormation about the digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceSampleRate +
                urn:smpte:ul:060e2b34.01010101.04010501.01000000
              + LEAF + Luminance Sample Rate + The luminance sample rate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveSamplesPerLine +
                urn:smpte:ul:060e2b34.01010101.04010501.02000000
              + LEAF + Active Samples per Line + Total number of samples (columns) in the active portion of a line in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalSamplesPerLine +
                urn:smpte:ul:060e2b34.01010101.04010501.03000000
              + LEAF + Total Samples per Line + Specifies the number of samples in a total line in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SamplingHierarchyCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010501.04000000
              + LEAF + Sampling Hierarchy Code + A code that specifies the component sampling hierarchy for the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalSubsampling +
                urn:smpte:ul:060e2b34.01010101.04010501.05000000
              + LEAF + Horizontal Sub-sampling + Specifies ratio of luminance subsampling to chrominance subsampling in horizontal direction + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorSiting +
                urn:smpte:ul:060e2b34.01010101.04010501.06000000
              + LEAF + Color Siting + Specifies how to compute subsampled chrominance values + AAF + AAF names this type"ColorSitingType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010105.00000000 + 1 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledHeight +
                urn:smpte:ul:060e2b34.01010101.04010501.07000000
              + LEAF + Sampled Height + Specifies the integer height of the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledWidth +
                urn:smpte:ul:060e2b34.01010101.04010501.08000000
              + LEAF + Sampled Width + Specifies the integer width of the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledXOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.09000000
              + LEAF + Sampled X-Offset + Specifies the X offset of the sampled image relative to the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledYOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0a000000
              + LEAF + Sampled Y-Offset + Specifies the Y offset of the sampled image relative to the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayHeight +
                urn:smpte:ul:060e2b34.01010101.04010501.0b000000
              + LEAF + Display Height + Specifies the height of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayWidth +
                urn:smpte:ul:060e2b34.01010101.04010501.0c000000
              + LEAF + Display Width + Specifies the width of the presented image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayXOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0d000000
              + LEAF + Display X-Offset + Specifies the X offset of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayYOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0e000000
              + LEAF + Display Y-Offset + Specifies the Y offset of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilteringCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010501.0f000000
              + LEAF + Filtering Code + Specifies the spectral filtering that has been applied to the digital samples of the video signal. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalSubsampling +
                urn:smpte:ul:060e2b34.01010102.04010501.10000000
              + LEAF + Vertical Sub-sampling + Specifies ratio of luminance subsampling to chrominance subsampling in vertical direction + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAverageBitRate +
                urn:smpte:ul:060e2b34.01010103.04010501.11000000
              + LEAF + Video Average Bit Rate + The Average bit rate in bits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoFixedBitRate +
                urn:smpte:ul:060e2b34.01010103.04010501.12000000
              + LEAF + Video Fixed Bit Rate + Fixed = TRUE, variable = FALSE + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveHeight +
                urn:smpte:ul:060e2b34.0101010e.04010501.13000000
              + LEAF + Active Height + Specifies the height of the Active Area Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveWidth +
                urn:smpte:ul:060e2b34.0101010e.04010501.14000000
              + LEAF + Active Width + Specifies the width of the Active Area Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveXOffset +
                urn:smpte:ul:060e2b34.0101010e.04010501.15000000
              + LEAF + Active X Offset + Specifies the horizontal offset of the Active Area Rectangle from the left side of the Display Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveYOffset +
                urn:smpte:ul:060e2b34.0101010e.04010501.16000000
              + LEAF + Active Y Offset + Specifies the vertical offset of the Active Area Rectangle from the upper side of the Display Rectangle. + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageStorageParameters +
                urn:smpte:ul:060e2b34.01010101.04010502.00000000
              + NODE + Digital Video and Image Storage Parameters + Information about image storage parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredHeight +
                urn:smpte:ul:060e2b34.01010101.04010502.01000000
              + LEAF + Stored Height + Specifies the integer height of the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredWidth +
                urn:smpte:ul:060e2b34.01010101.04010502.02000000
              + LEAF + Stored Width + Specifies the integer width of the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBILineCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.03000000
              + LEAF + VBI Line Count + Number of VBI lines stored in a Data Element + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredVBILineNumber +
                urn:smpte:ul:060e2b34.0101010a.04010502.04000000
              + LEAF + Stored VBI Line Number + The line number of this stored VBI line according to SMPTE 377M-2004 E.1.5 + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIWrappingType +
                urn:smpte:ul:060e2b34.0101010a.04010502.05000000
              + LEAF + VBI Wrapping Type + Enumerated wrapping type of the VBI data payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadSampleCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.06000000
              + LEAF + VBI Payload Sample Count + A count of the number of samples stored in the payload byte array + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadByteArray +
                urn:smpte:ul:060e2b34.0101010a.04010502.07000000
              + LEAF + VBI Payload Byte Array + An array of Uint8 samples containing the coded VBI data + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPacketCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.08000000
              + LEAF + ANC Packet Count + Number of ANC packets stored in a Data Element + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredANCLineNumber +
                urn:smpte:ul:060e2b34.0101010a.04010502.09000000
              + LEAF + Stored ANC Line Number + The line number of this stored ANC packet according to SMPTE 377M-2004 E.1.5 + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCWrappingType +
                urn:smpte:ul:060e2b34.0101010a.04010502.0a000000
              + LEAF + ANC Wrapping Type + Enumerated wrapping type of the VBI data payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadSampleCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.0b000000
              + LEAF + ANC Payload Sample Count + A count of the number of samples stored in the payload byte array + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadByteArray +
                urn:smpte:ul:060e2b34.0101010a.04010502.0c000000
              + LEAF + ANC Payload Byte Array + An array of Uint8 samples containing the coded ANC data + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalQuantizationAndLevelParameters +
                urn:smpte:ul:060e2b34.01010101.04010503.00000000
              + NODE + Digital Quantization and Level Parameters + Inflormation about the digital quantisation and levels + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerPixel_UInt8 +
                urn:smpte:ul:060e2b34.01010101.04010503.01000000
              + LEAF + Bits per Pixel + The maximum number of significant bits for the value in each band of each pixel without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerPixel +
                urn:smpte:ul:060e2b34.01010102.04010503.01010000
              + LEAF + Bits per Pixel + The maximum number of significant bits for the value in each band of each pixel without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoundingMethodCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010503.02000000
              + LEAF + Rounding Method Code + Specifies the rounding method that has been applied to the digital samples of the video signal. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlackRefLevel +
                urn:smpte:ul:060e2b34.01010101.04010503.03000000
              + LEAF + Black Reference Level + Specifies digital luminance associated with black + AAF~BlackReferenceLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WhiteRefLevel +
                urn:smpte:ul:060e2b34.01010101.04010503.04000000
              + LEAF + White Reference Level + Specifies digital luminance associated with white + AAF~WhiteReferenceLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorRange +
                urn:smpte:ul:060e2b34.01010102.04010503.05000000
              + LEAF + Color Range Levels + Specifies the range of the color levels. + AAF + ITU-R BT.601-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PixelLayout +
                urn:smpte:ul:060e2b34.01010102.04010503.06000000
              + LEAF + Pixel Layout + Specifies pixel quantisation and order as a data structure. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaSampleDepth +
                urn:smpte:ul:060e2b34.01010102.04010503.07000000
              + LEAF + Alpha Sample Depth + Specifies the number of bits in the alpha signal. + AAF~AlphaSamplingWidth + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Palette +
                urn:smpte:ul:060e2b34.01010102.04010503.08000000
              + LEAF + Palette + Specifies, as a single string, the fixed length values of each color in the palette used. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaletteLayout +
                urn:smpte:ul:060e2b34.01010102.04010503.09000000
              + LEAF + Palette Layout + Specifies pixel quantisation and order in the palette as a data structure. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentDepth +
                urn:smpte:ul:060e2b34.01010102.04010503.0a000000
              + LEAF + Component Depth + Specifies the number of active bits per sample (e.g. 8, 10, 16 etc) + AAF~ComponentWidth + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentMaxRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0b000000
              + LEAF + Component Maximum Ref + Maximum value for RGB components e.g. 235 or 940 (8 or 10 bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentMinRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0c000000
              + LEAF + Component Minimum Ref + Minumum value for RGB components e.g. 16 or 64 (8 or 10-bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaMaxRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0d000000
              + LEAF + Alpha Maximum Ref + Maximum value for alpha component e.g. 235 or 940 (8 or 10 bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaMinRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0e000000
              + LEAF + Alpha Minimum Ref + Minumum value for alpha components e.g. 16 or 64 (8 or 10-bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadSampleCoding +
                urn:smpte:ul:060e2b34.0101010a.04010503.0f000000
              + LEAF + VBI Payload Sample Coding + Enumerated sample coding of VBI payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadSampleCoding +
                urn:smpte:ul:060e2b34.0101010a.04010503.10000000
              + LEAF + ANC Payload Sample Coding + Enumerated sample coding of ANC payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageSignalTypeIdentifiers +
                urn:smpte:ul:060e2b34.01010105.04010504.00000000
              + NODE + Digital Video and Image Signal Type Identifiers + Identifiers of the specific standard to which a video signal conforms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoPayloadIdentifier +
                urn:smpte:ul:060e2b34.01010105.04010504.01000000
              + LEAF + Video Payload Identifier + SMPTE 352M-2001 Video Payload Identifier + SMPTE 352M-2001 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010e00.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoPayloadIdentifier2002 +
                urn:smpte:ul:060e2b34.01010105.04010504.02000000
              + LEAF + Video Payload Identifier 2002 + SMPTE 352M-2002 Video Payload Identifier + Note 2002 revision date + SMPTE 352M-2002 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010e00.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageCompressionParameters +
                urn:smpte:ul:060e2b34.01010101.04010600.00000000
              + NODE + Digital Video and Image Compression Parameters + Information about the digital video compression scheme used (MPEG, DV etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureCompression +
                urn:smpte:ul:060e2b34.01010102.04010601.00000000
              + LEAF + Video Coding Scheme ID + Specifies the Compression scheme used + AAF~Compression + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010602.00000000
              + NODE + MPEG Coding Parameters + Information about MPEG video coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG2CodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010602.01000000
              + NODE + MPEG-2 Coding Parameters + Information about MPEG video coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldFrameTypeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010602.01010000
              + LEAF + Field Frame Type Code + Identifies the field or frame type of the source video image for video derived from compressed sources. Eg, I B or P + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleSequence +
                urn:smpte:ul:060e2b34.01010105.04010602.01020000
              + LEAF + Single Sequence Flag + TRUE if the essence consists of a single MPEG sequence. False if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ConstantBPictureCount +
                urn:smpte:ul:060e2b34.01010105.04010602.01030000
              + LEAF + Constant B Picture Flag + TRUE if the number of B frames is always constant + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodedContentScanning +
                urn:smpte:ul:060e2b34.01010105.04010602.01040000
              + LEAF + Coded Content Scanning Kind + The type of scanning used in MPEG video coded content as a code (e.g., 0=Unknown, 1=Progressive, 2=Interlaced, 3=Mixed) + AAF[1.12:] + SMPTE381M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LowDelay +
                urn:smpte:ul:060e2b34.01010105.04010602.01050000
              + LEAF + Low Delay Indicator + TRUE if low delay mode was used in the sequence + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClosedGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01060000
              + LEAF + Closed GOP Indicator + TRUE if closed_gop is set in all GOP Headers, per 13818-1 IBP descriptor + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdenticalGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01070000
              + LEAF + Identical GOP Indicator + TRUE if every GOP in the sequence is constructed the same, per 13818-1 IBP descriptor + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01080000
              + LEAF + Maximum GOP Size + Specifies the maximum occurring spacing between I frames, per 13818-1 IBP descriptor. A value of 0 or the absence of this property implies no limit to the maximum GOP + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxBPictureCount +
                urn:smpte:ul:060e2b34.01010105.04010602.01090000
              + LEAF + Maximum B Picture Count + Specifies the maximum number of B pictures between P or I frames, equivalent to 13818-2 annex D (M-1) + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProfileAndLevel +
                urn:smpte:ul:060e2b34.01010105.04010602.010a0000
              + LEAF + Profile And Level + Specifies the MPEG-2 video profile and level. The value is taken directly from the profile_and_level_indication in the MPEG-2 sequence header extension. For main profile @ main level, the value is 0x48. For 4:2:2 profile @ main level, the value is 0x85 + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitRate +
                urn:smpte:ul:060e2b34.01010105.04010602.010b0000
              + LEAF + Bit Rate + Maximum bit rate of MPEG video elementary stream in bit/s as defined in ISO-13818-2 bit_rate property + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualCodingParameters +
                urn:smpte:ul:060e2b34.0101010d.04010602.02000000
              + NODE + MPEG-4 Visual Coding Parameters + Describes MPEG-4 Visual coding parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualVOPCodingType +
                urn:smpte:ul:060e2b34.0101010d.04010602.02010000
              + LEAF + MPEG-4 Visual VOP Coding Type + Identifies whether a VOP is an intra-coded VOP (I), predictive-coded VOP (P), bidirectionally predictive-coded (B) or sprite coded (S). + true + UnknownContext + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualSingleSequence +
                urn:smpte:ul:060e2b34.0101010d.04010602.02020000
              + LEAF + MPEG-4 Visual Single Sequence + TRUE if the essence consists of a single MPEG sequence. False if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualConstantBVOPs +
                urn:smpte:ul:060e2b34.0101010d.04010602.02030000
              + LEAF + MPEG-4 Visual Constant B-VOPs + TRUE if the number of B-VOPs is always constant. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualCodedContentType +
                urn:smpte:ul:060e2b34.0101010d.04010602.02040000
              + LEAF + MPEG-4 Visual Coded Content Type + 0= "Unknown" 1= "Progressive" 2= "Interlaced" 3= "Mixed" An enumerated value which tells if the underlying content which was MPEG coded was of a known type. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012d.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualLowDelay +
                urn:smpte:ul:060e2b34.0101010d.04010602.02050000
              + LEAF + MPEG-4 Visual Low Delay + TRUE if the VOL contains no B-VOPs. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualClosedGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02060000
              + LEAF + MPEG-4 Visual Closed GOV + TRUE if closed_gov is set in all GOV headers. An example is defined in closed_gop_flag of ISO/IEC 13818-1 IBP descriptor. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualIdenticalGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02070000
              + LEAF + MPEG-4 Visual Identical GOV + TRUE if every GOV in the sequence is constructed the same. An example is defined in identical_gop_flag of ISO/IEC 13818-1 IBP descriptor. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualMaxGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02080000
              + LEAF + MPEG-4 Visual Max GOV + Specifies the maximum occurring spacing between I frames. An example is defined in max_gop_length of ISO/IEC 13818-1 IBP descriptor. A value of 0 or the absence of this property implies no limit to the maximum GOV or the maximum GOV is unknown. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualBVOPCount +
                urn:smpte:ul:060e2b34.0101010d.04010602.02090000
              + LEAF + MPEG-4 Visual B-VOP Count + Specifies the maximum number of B-VOPs between P or I-VOPs. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualProfileAndLevel +
                urn:smpte:ul:060e2b34.0101010d.04010602.020a0000
              + LEAF + MPEG-4 Visual Profile And Level + Specifies the MPEG-4 Part 2 video profile and level. The meaning of the bits is given in Table G.1 of ISO/IEC 14496-2. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualBitRate +
                urn:smpte:ul:060e2b34.0101010d.04010602.020b0000
              + LEAF + MPEG-4 Visual Bit Rate + Maximum bit rate of MPEG-4 Part.2 video ES in bit/s.An example is defined in ISO/IEC 14496-2 bit_rate property. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEG2000CodingParameters +
                urn:smpte:ul:060e2b34.0101010a.04010603.00000000
              + NODE + JPEG 2000 Coding Parameters + Information about JPEG 2000 picture coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.01000000
              + LEAF + Rsiz + An enumerated value that defines the decoder capabilities. Values are defined in ISO/IEC 15444-1 Annex A.5 Table A-10. Other values may be defined in amendments to ISO/IEC 15444-1 or in related international standards documents. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Xsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.02000000
              + LEAF + Xsiz + Width of the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Ysiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.03000000
              + LEAF + Ysiz + Height of the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.04000000
              + LEAF + XOsiz + Horizontal offset from the origin of the reference grid to the left side of the image area, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.05000000
              + LEAF + YOsiz + Vertical offset from the origin of the reference grid to the top side of the image area, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XTsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.06000000
              + LEAF + XTsiz + Width of one reference tile with respect to the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YTsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.07000000
              + LEAF + YTsiz + Height of one reference tile with respect to the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XTOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.08000000
              + LEAF + XTOsiz + Horizontal offset from the origin of the reference grid to the left side of the first tile, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YTOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.09000000
              + LEAF + YTOsiz + Vertical offset from the origin of the reference grid to the top side of the first tile, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Csiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.0a000000
              + LEAF + Csiz + The number of components in the picture as defined in ISO/IEC 15444-1 Annex A.5.1. If this Sub Descriptor is referenced by the CDCI Descriptor, the order and kind of components shall be as defined by the Essence Container UL in the MXF File Descriptor. If this Sub Descriptor is referenced by the RGBA Descriptor, the order and kind of components shall be as defined by the Pixel Layout property of the RGBA Descriptor. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureComponentSizing +
                urn:smpte:ul:060e2b34.0101010a.04010603.0b000000
              + LEAF + Picture Component Sizing + Array of picture components where each component comprises 3 bytes named Ssizi, XRSizi, YRSizi (as defined in ISO/IEC 15444-1 Annex A.5.1). The array of 3-byte groups is preceded by the array header comprising a 4-byte value of the number of components followed by a 4-byte value of '3'. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020900.00000000 + 3n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingStyleDefault +
                urn:smpte:ul:060e2b34.0101010a.04010603.0c000000
              + LEAF + Coding Style Default + Default coding style for all components. Use this value only if static for all pictures in the Essence Container.The data format is as defined in ISO/IEC 15444-1, Annex A.6.1 and comprises the sequence of Scod (1 byte per table A-12), SGcod (4 bytes per table A.12) and Spcod (5 bytes plus 0 or more precinct size bytes per table A.12) + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + var +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QuantizationDefault +
                urn:smpte:ul:060e2b34.0101010a.04010603.0d000000
              + LEAF + Quantization Default + Default quantization style for all components. Use this value only if static for all pictures in the Essence Container.The data format is as defined in ISO/IEC 15444-1, Annex A.6.4 and comprises the sequence of Sqcd (1 byte per table A.27) followed by one or more Sqcdi bytes (for the ith sub-band in the defined order per table A.27). + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + var +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + J2CLayout +
                urn:smpte:ul:060e2b34.0101010e.04010603.0e000000
              + LEAF + J2C Layout + The nature and order of the image components in the compressed domain as carried in the J2C codestream. + SMPTE ST422 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1PictureEssenceDescriptors +
                urn:smpte:ul:060e2b34.0101010c.04010604.00000000
              + NODE + VC-1 Picture Essence Descriptors + Defines the VC-1 Picture Essence Descriptor Set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1InitializationMetadata +
                urn:smpte:ul:060e2b34.0101010c.04010604.01000000
              + LEAF + VC-1 Initialization Metadata + Encodes the metadata defined in SMPTE 421 annex J for Simple and Main Profile bitstreams. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1SingleSequence +
                urn:smpte:ul:060e2b34.0101010c.04010604.02000000
              + LEAF + VC-1 Single Sequence + TRUE is the essence consists of a single VC-a sequence. FALSE if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1CodedContentType +
                urn:smpte:ul:060e2b34.0101010c.04010604.03000000
              + LEAF + VC-1 Coded Content Type + An enumerated value that tells if the underlying content was of a known VC-1 type. Enumerations are 0="Unknown", 1="Progressive, 2= "Interlaced," "3=Mixed." + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1IdenticalGOP +
                urn:smpte:ul:060e2b34.0101010c.04010604.04000000
              + LEAF + VC-1 Identical GOP + A boolean value, using TRUE to indicate that all GOPs in the sequence are constructed the same. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1MaxGOP +
                urn:smpte:ul:060e2b34.0101010c.04010604.05000000
              + LEAF + VC-1 Maximum GOP + Specifies the maximum occuring spacing between I-frames. A value of '0", or the absence of this property implies no limit to the maximum GOP. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1BPictureCount +
                urn:smpte:ul:060e2b34.0101010c.04010604.06000000
              + LEAF + VC-1 B Picture Count + Specifies the maximum number of B pictures between P or I frames. BI pictures count as B pictures and skipped pictures count as P pictures. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1AverageBitRate +
                urn:smpte:ul:060e2b34.0101010c.04010604.07000000
              + LEAF + VC-1 Average Bit Rate + Specifies the average bit rate of VC-1 video elementary streams in bits-per-second. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1MaximumBitRate +
                urn:smpte:ul:060e2b34.0101010c.04010604.08000000
              + LEAF + VC-1 Maximum Bit Rate + Specifies the maximum bit rate of VC-1 video elementary streams in bits-per-second. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1Profile +
                urn:smpte:ul:060e2b34.0101010c.04010604.09000000
              + LEAF + VC-1 Profile + Specifies the VC-1 profile. Coded as per SMPTE 421M, Annex J.1.2. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1Level +
                urn:smpte:ul:060e2b34.0101010c.04010604.0a000000
              + LEAF + VC-1 Level + Specifies the VC-1 video level. This is coded as per SMPTE 421M, Annex J.I.2. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFCodingParameters +
                urn:smpte:ul:060e2b34.0101010d.04010605.00000000
              + NODE + TIFF Coding Parameters + Information about TIFF picture coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFByteOrder +
                urn:smpte:ul:060e2b34.0101010d.04010605.01000000
              + LEAF + TIFF Byte Order + Byte order of the essence data. Shall be 'MM' = Big endian or 'II' = Little endian + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010201.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFBitsPerSampleArray +
                urn:smpte:ul:060e2b34.0101010d.04010605.02000000
              + LEAF + TIFF Bits Per Sample Array + Array of the number of bits allocated for each component in an uncompressed pixel, where n = Number of components per pixel. Shall be encoded as defined for BitsPerSample in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 8 + 2n bytes + 8 to 32 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFCompressionKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.03000000
              + LEAF + TIFF Compression Kind + Compression scheme used to store the image data. Shall be 1 = No compression or 7 = Lossless Huffman JPEG compression. Shall be encoded as defined for Compression in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010202.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFPhotometricInterpretationKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.04000000
              + LEAF + TIFF Photometric Interpretation Kind + Color space and order of image data components. Shall be 32803 = Color Filter Array or 34892 = Linear Raw. Shall be encoded as defined for PhotometricInterpretation in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010203.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFOrientation +
                urn:smpte:ul:060e2b34.0101010d.04010605.05000000
              + LEAF + TIFF Orientation + Orientation of the camera relative to the scene, when the image was captured. Shall be encoded as defined for Orientation in ISO 12234-2. + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFSamplesPerPixel +
                urn:smpte:ul:060e2b34.0101010d.04010605.06000000
              + LEAF + TIFF Samples Per Pixel + Number of components (n) per pixel. Shall be 1 for Photometric Interpretation = 32083 or 3 for PhotometricInterpretation = 34892. Shall be encoded as defined for SamplesPerPixel in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFLightSourceKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.07000000
              + LEAF + TIFF Light Source Kind + Predominant light source (scene illuminant) present when the image was captured, or its color temperature. Shall be encoded as defined for LightSource in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCParameters +
                urn:smpte:ul:060e2b34.0101010e.04010606.01000000
              + NODE + AVC Parameters + Parameters about AVC Picture Coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCConstantBPictureFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01030000
              + LEAF + AVC Constant B Picture Flag + TRUE if the number of B Pictures is always constant. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCCodedContentKind +
                urn:smpte:ul:060e2b34.0101010e.04010606.01040000
              + LEAF + AVC Coded Content Kind + Enumerated value specifying Picture type and Coding type. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012c.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCClosedGOPIndicator +
                urn:smpte:ul:060e2b34.0101010e.04010606.01060000
              + LEAF + AVC Closed GOP Indicator + TRUE if all GOPs are started with IDR Picture. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCIdenticalGOPIndicator +
                urn:smpte:ul:060e2b34.0101010e.04010606.01070000
              + LEAF + AVC Identical GOP Indicator + TRUE if every GOP in the sequence has the same number of pictures and the same types of pictures in the same order. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumGOPSize +
                urn:smpte:ul:060e2b34.0101010e.04010606.01080000
              + LEAF + AVC Maximum GOP Size + Specifies the maximum occurring spacing between I Pictures. A value of 0 or the absence of this property indicates either there is no limit to the maximum GOP or the maximum GOP is unknown. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumBPictureCount +
                urn:smpte:ul:060e2b34.0101010e.04010606.01090000
              + LEAF + AVC Maximum B-Picture Count + Specifies the maximum number of B Pictures between P or I Pictures. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCProfile +
                urn:smpte:ul:060e2b34.0101010e.04010606.010a0000
              + LEAF + AVC Profile + Specifies the AVC video profile. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumBitRate +
                urn:smpte:ul:060e2b34.0101010e.04010606.010b0000
              + LEAF + AVC Maximum Bit Rate + Maximum bit rate of the AVC stream in bit/s + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCProfileConstraint +
                urn:smpte:ul:060e2b34.0101010e.04010606.010c0000
              + LEAF + AVC Profile Constraint + Specifies the AVC video profile constraint flags. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCLevel +
                urn:smpte:ul:060e2b34.0101010e.04010606.010d0000
              + LEAF + AVC Level + Specifies the AVC level. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCDecodingDelay +
                urn:smpte:ul:060e2b34.0101010e.04010606.010e0000
              + LEAF + AVC Decoding Delay + Specifies the delay required for decoded pictures in number of access units. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumRefFrames +
                urn:smpte:ul:060e2b34.0101010e.04010606.010f0000
              + LEAF + AVC Maximum Ref Frames + Specifies the maximum number of reference frames. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCSequenceParameterSetFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01100000
              + LEAF + AVC Sequence Parameter Set Flag + Specifies the location and the constancy of sequence parameter sets + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCPictureParameterSetFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01110000
              + LEAF + AVC Picture Parameter Set Flag + Specifies the location and the constancy of picture parameter sets + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCAverageBitRate +
                urn:smpte:ul:060e2b34.0101010e.04010606.01140000
              + LEAF + AVC Average Bit Rate + Average bit rate of the AVC stream in bit/s + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Properties +
                urn:smpte:ul:060e2b34.0101010e.04010607.00000000
              + NODE + VC-2 Properties + Properties of VC-2 streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2MajorVersion +
                urn:smpte:ul:060e2b34.0101010e.04010607.01000000
              + LEAF + VC-2 Major Version + VC-2 Major Version Number as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2MinorVersion +
                urn:smpte:ul:060e2b34.0101010e.04010607.02000000
              + LEAF + VC-2 Minor Version + VC-2 Minor Version Number as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Profile +
                urn:smpte:ul:060e2b34.0101010e.04010607.03000000
              + LEAF + VC-2 Profile + VC-2 Profile as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Level +
                urn:smpte:ul:060e2b34.0101010e.04010607.04000000
              + LEAF + VC-2 Level + VC-2 Level as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2WaveletFilters +
                urn:smpte:ul:060e2b34.0101010e.04010607.05000000
              + LEAF + VC-2 Wavelet Filters + The distinct values of state[wavelet_index] across the entire wrapped VC-2 stream(each value used in the wrapped VC-2 stream appears only once in this array). This identifies the wavelet filters used. + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2SequenceHeadersIdentical +
                urn:smpte:ul:060e2b34.0101010e.04010607.06000000
              + LEAF + VC-2 Sequence Headers Identical + A flag to indicate whether all VC-2 Sequence Headers in the entire wrapped VC-2 stream are byte-for-byte identical + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2EditUnitsAreCompleteSequences +
                urn:smpte:ul:060e2b34.0101010e.04010607.07000000
              + LEAF + VC-2 Edit Units Are Complete Sequences + A flag to indicate whether every Edit Unit comprises a single valid VC-2 sequence in its entirety + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5Parameters +
                urn:smpte:ul:060e2b34.0101010e.04010608.00000000
              + NODE + VC-5 Parameters + VC-5 Parameters + SMPTE ST 2073-10 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5AlphaSampling +
                urn:smpte:ul:060e2b34.0101010e.04010608.01000000
              + LEAF + VC-5 Alpha Sampling + VC-5 AlphaSampling codec state parameter defined in SMPTE ST 2073-4 + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentPattern +
                urn:smpte:ul:060e2b34.0101010e.04010608.02000000
              + LEAF + VC-5 Bayer Component Pattern + Bayer component order and bit depth of each component (See SMPTE ST 377-1) + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentBlackLevel +
                urn:smpte:ul:060e2b34.0101010e.04010608.03000000
              + LEAF + VC-5 Bayer Component Black Level + Value of each Bayer component that corresponds to black + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentWhiteLevel +
                urn:smpte:ul:060e2b34.0101010e.04010608.04000000
              + LEAF + VC-5 Bayer Component White Level + Value of each Bayer component that corresponds to the white clipping point + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmToVideoCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010800.00000000
              + NODE + Film-to-Video Characteristics + Information about transferring Film to Video + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmPulldownCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010801.00000000
              + NODE + Film Pulldown Characteristics + Film transfer pulldown characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownSequence +
                urn:smpte:ul:060e2b34.01010101.04010801.01000000
              + LEAF + Pulldown Sequence + eg. 3:2, 1:1 at 25Hz, 1:1 at 59.94Hz, 24Hz/25Hz, Videotap, etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010b.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownFieldDominance +
                urn:smpte:ul:060e2b34.01010101.04010801.02000000
              + LEAF + Pulldown Field Dominance + Field one dominant (True) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndFilmFrameRelationship +
                urn:smpte:ul:060e2b34.01010101.04010801.03000000
              + LEAF + Video and Film Frame Relationship + Specifies temporal correlation between video fields/frames and film frames from which they were derived (ABCD Frame Sequence) + RP-186 4.3.2 RP-197 7.5.3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 00000001 through 00001010 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFrameRates +
                urn:smpte:ul:060e2b34.01010101.04010802.00000000
              + NODE + Film Frame Rates + Frame per second film frame rate + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureFilmFrameRate_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010802.01000000
              + LEAF + Capture Film Frame Rate + eg 24.00 fps + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferFilmFrameRate_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010802.02000000
              + LEAF + Transfer Film Frame Rate + eg 23.976 fps + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameRate +
                urn:smpte:ul:060e2b34.01010102.04010802.03000000
              + LEAF + Rounded Capture Film Frame Rate + Specifies the film frame rate, rounded to the nearest whole number + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoFileFormats +
                urn:smpte:ul:060e2b34.01010103.04010b00.00000000
              + NODE + Video File Formats + Information about the format of the subject file + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoFileFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010b01.00000000
              + LEAF + Digital Video File Format + The format of the subject digital video bitstream or file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011000.00000000
              + NODE + Image Test Parameters + Test information from the original imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011001.00000000
              + NODE + Video Test Parameters + Video information from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04011001.01000000
              + LEAF + Video Test Parameter + eg. Starting Bit Error Rate, Maximum BER Tolerance Level, Sharpness Quality Benchmark, Scalar Based Quality Parameter, Spatial Quality Information, Temporal Quality Information, Matrix Based Quality Parameter + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestResult_Float +
                urn:smpte:ul:060e2b34.01010101.04011001.02000000
              + LEAF + Video Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestResult_Int32 +
                urn:smpte:ul:060e2b34.01010101.04011001.03000000
              + LEAF + Video Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011002.00000000
              + NODE + Film Test Parameters + Film test information from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04011002.01000000
              + LEAF + Film Test Parameter + eg. Film Frequency Response; Telecine Gamma Correction; Macbeth Color Checker, Telecine Gray Scale Mirror; Lab Aim Density; Lab Aim Density Red/Green/Blue; Lab Aim Density Red/Green/Blue Dmin; etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestResult +
                urn:smpte:ul:060e2b34.01010101.04011002.02000000
              + LEAF + Film Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestResult_Int32 +
                urn:smpte:ul:060e2b34.01010101.04011002.03000000
              + LEAF + Film Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04020000.00000000
              + NODE + Audio Essence Characteristics + Operating characteristics of the device creating the audio essence. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalAudioCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04020100.00000000
              + NODE + Fundamental Audio Characteristics + Fundamental audio characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFormulation +
                urn:smpte:ul:060e2b34.01010101.04020101.00000000
              + NODE + Audio Formulation + number of recording channels used, analogue or digital recording device, analog or digital mixing console + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectrospatialFormulation +
                urn:smpte:ul:060e2b34.01010101.04020101.01000000
              + LEAF + Electrospatial Formulation + Mono, Dual mono, Stereo A+B, Stereo M&S, Dolby surround, MPEG BC/NBC etc + AAF[1.1:]~ElectroSpatial + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010122.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilteringApplied_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020101.02000000
              + LEAF + Filtering Applied + eg, Academy, flat etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioReferenceLevel +
                urn:smpte:ul:060e2b34.01010101.04020101.03000000
              + LEAF + Audio Reference Level + Number of Dbm for 0VU + AAF[1.1:]~AudioRefLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelCount +
                urn:smpte:ul:060e2b34.01010105.04020101.04000000
              + LEAF + Channel Count + The number of channels represented in the waveform data. + AAF[1.1:]~Channels + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelAssignment +
                urn:smpte:ul:060e2b34.01010107.04020101.05000000
              + LEAF + Channel Assignment + UL enumerating the channel assignment in use (e.g., SMPTE 320M-A) + AAF[1.1:] + For example SMPTE 320M-A + RP224 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferenceImageEditRate +
                urn:smpte:ul:060e2b34.0101010e.04020101.06000000
              + LEAF + Reference Image Edit Rate + Edit rate of the image essence with which the audio is intended to sync. For example, 24/1.001 fps, 24 fps, 25 fps + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferenceAudioAlignmentLevel +
                urn:smpte:ul:060e2b34.0101010e.04020101.07000000
              + LEAF + Reference Audio Alignment Level + Reference alignment level of the audio expressed in dBFS. For example, -20dBFS. + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioMix +
                urn:smpte:ul:060e2b34.01010101.04020101.10000000
              + NODE + Audio Mix + The number of audio channels in the mix + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioMonoChannelCount +
                urn:smpte:ul:060e2b34.01010101.04020101.10010000
              + LEAF + Audio Mono Channel Count + The number of mono channels in the mix + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioStereoChannelCount +
                urn:smpte:ul:060e2b34.01010101.04020101.10020000
              + LEAF + Audio Stereo Channel Count + The number of stereo channels in the mix + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020200.00000000
              + NODE + Analog Audio Coding Parameters + Information about the original analogue coding of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020201.00000000
              + LEAF + Analog System + Flat, Dolby-A etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020300.00000000
              + NODE + Digital Audio Coding Parameters + Information about the essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04020301.00000000
              + NODE + Digital Sampling Parameters + Information about the digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioSampleRate_UInt8 +
                urn:smpte:ul:060e2b34.01010101.04020301.01000000
              + LEAF + Audio Sample Rate + The tabulated reference clock frequency + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioSampleRate +
                urn:smpte:ul:060e2b34.01010105.04020301.01010000
              + LEAF + Audio Sample Rate + The reference sampling clock frequency as a rational number + AAF[1.1:]~AudioSamplingRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioAverageBitRate +
                urn:smpte:ul:060e2b34.01010102.04020301.02000000
              + LEAF + Audio Average Bit Rate + The Average bit rate in bits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFixedBitRateFlag +
                urn:smpte:ul:060e2b34.01010102.04020301.03000000
              + LEAF + Audio Fixed Bit Rate Flag + Fixed = TRUE, variable = FALSE + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locked +
                urn:smpte:ul:060e2b34.01010104.04020301.04000000
              + LEAF + Locked Indicator + TRUE if number of samples per frame is locked to video + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelope +
                urn:smpte:ul:060e2b34.01010105.04020301.05000000
              + LEAF + Peak Envelope + Peak envelope information - value contains a header followed by the data of the peak points. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeVersion +
                urn:smpte:ul:060e2b34.01010108.04020301.06000000
              + LEAF + Peak Envelope Version + Version number of the peak envelope data format specification + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeFormat +
                urn:smpte:ul:060e2b34.01010108.04020301.07000000
              + LEAF + Peak Envelope Format + Data format of the peak envelope data + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PointsPerPeakValue +
                urn:smpte:ul:060e2b34.01010108.04020301.08000000
              + LEAF + Points Per Peak Value + Number of peak points per peak value + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeBlockSize +
                urn:smpte:ul:060e2b34.01010108.04020301.09000000
              + LEAF + Peak Envelope Block Size + Number of audio samples used to generate each peak frame + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakChannels +
                urn:smpte:ul:060e2b34.01010108.04020301.0a000000
              + LEAF + Peak Channel Count + Number of peak channels + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakFrames +
                urn:smpte:ul:060e2b34.01010108.04020301.0b000000
              + LEAF + Peak Frame Count + Number of peak frames + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakOfPeaksPosition +
                urn:smpte:ul:060e2b34.01010108.04020301.0c000000
              + LEAF + Peak Of Peaks Position + Offset of the first audio sample whose absolute value in the maximum value of the entire audio file + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeTimestamp +
                urn:smpte:ul:060e2b34.01010108.04020301.0d000000
              + LEAF + Peak Envelope Timestamp + Timestamp of the creation of the peak data + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeData +
                urn:smpte:ul:060e2b34.01010108.04020301.0e000000
              + LEAF + Peak Envelope Data + The peak envelope data stream + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioStorageParameters +
                urn:smpte:ul:060e2b34.01010101.04020302.00000000
              + NODE + Digital Audio Storage Parameters + Information about audio storage parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockAlign +
                urn:smpte:ul:060e2b34.01010105.04020302.01000000
              + LEAF + Block Align + The block alignment in Bytes - playback processes multiples of this value at a time. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SequenceOffset +
                urn:smpte:ul:060e2b34.01010105.04020302.02000000
              + LEAF + Sequence Offset + The zero-based ordinal frame number of first essence data within five-frame sequence + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockStartOffset +
                urn:smpte:ul:060e2b34.01010105.04020302.03000000
              + LEAF + Block Start Offset + Position of AES-3 first Z-pre-amble in the essence stream + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyFileSecurityReport +
                urn:smpte:ul:060e2b34.01010105.04020302.05000000
              + LEAF + File Security Report + File Security Code (checksum) of the BWF quality report + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyFileSecurityWave +
                urn:smpte:ul:060e2b34.01010105.04020302.06000000
              + LEAF + File Security Wave + File Security Code (checksum) of the BWF wave data + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioQuantizationAndLevelParameters +
                urn:smpte:ul:060e2b34.01010101.04020303.00000000
              + NODE + Digital Audio Quantization and Level Parameters + Information about the digital quantisation and levels + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerSample +
                urn:smpte:ul:060e2b34.01010101.04020303.01000000
              + LEAF + Bits Per Sample + The maximum number of significant bits for the value without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoundingLaw_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020303.02000000
              + LEAF + Rounding Law + The rounding law applied + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dither_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020303.03000000
              + LEAF + Dither + rectangular, triangular PD + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QuantizationBits +
                urn:smpte:ul:060e2b34.01010104.04020303.04000000
              + LEAF + Bits Per Audio Sample + The maximum number of significant bits for the value without compression. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AverageBytesPerSecond +
                urn:smpte:ul:060e2b34.01010105.04020303.05000000
              + LEAF + Average Bytes Per Second + The average number of Bytes per second at which the waveform data should be transferred + AAF[1.1:]~AverageBPS + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioCompressionParameters +
                urn:smpte:ul:060e2b34.01010101.04020400.00000000
              + NODE + Digital Audio Compression Parameters + Information about the digital audio compression scheme used (MPEG, Dolby etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingLawKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04020401.00000000
              + LEAF + Coding Law Kind + Type of coding ( u-Law, A-law, block companding, G 711, G 722, MPEG type, layer no, Dolby AC). Expessed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingLawName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020401.01000000
              + LEAF + Coding Law Name + Type of coding (e.g., u-Law, A-law, block companding, G 711, G 722, MPEG type, layer no, Dolby AC). Expessed as a name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoundCompression +
                urn:smpte:ul:060e2b34.01010102.04020402.00000000
              + LEAF + Audio Coding Scheme ID + Specifies the audio coding or compression scheme used as a UL + AAF[1.1:]~Compression + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCodingSchemeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020402.01000000
              + LEAF + Audio Coding Scheme Code + Specifies the audio coding or compression scheme used as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCodingSchemeName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020402.02000000
              + LEAF + Audio Coding Scheme Name + Specifies the audio coding or compression scheme used as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020403.00000000
              + NODE + MPEG Audio Coding Parameters + Information about MPEG audio coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG1AudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020403.01000000
              + NODE + MPEG-1 Audio Coding Parameters + Information about MPEG audio coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LayerNumber +
                urn:smpte:ul:060e2b34.01010102.04020403.01010000
              + LEAF + Layer Number + The layer number of the digital coding + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioBitRate +
                urn:smpte:ul:060e2b34.0101010a.04020403.01020000
              + LEAF + MPEG Audio Bit Rate + Specifies the rate of a compressed MPEG audio bitstream in kbit/s. The allowed values are typically determined by a given MPEG audio layer and mode. + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AACChannelConfiguration +
                urn:smpte:ul:060e2b34.0101010e.04020403.01030000
              + LEAF + AAC Channel Configuration + Low order 4 bits of Channel Configuration. Upper 4 bits are zeros + SMPTE ST 381-4 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AACSamplingFrequency +
                urn:smpte:ul:060e2b34.0101010e.04020403.01040000
              + LEAF + AAC Sampling Frequency + Low order 4 bits of Sampling Frequency Index. Upper 4 bits are zeros + SMPTE ST 381-4 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020500.00000000
              + NODE + Digital Audio Processing Parameters + Parameters required for processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AES3ProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020501.00000000
              + NODE + AES-3 Processing Parameters + Parameters required for AES-3 processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxBitsMode +
                urn:smpte:ul:060e2b34.01010105.04020501.01000000
              + LEAF + Auxiliary Bits Mode + Specifies the use of AES-3 Auxiliary Bits + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010124.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelStatusMode +
                urn:smpte:ul:060e2b34.01010105.04020501.02000000
              + LEAF + Channel Status Mode + AES3 Enumerated mode for the carriage of channel status data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010a00.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedChannelStatusData +
                urn:smpte:ul:060e2b34.01010105.04020501.03000000
              + LEAF + Fixed Channel Status Data + AES3 Fixed data pattern for channel status data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + 48 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserDataMode +
                urn:smpte:ul:060e2b34.01010105.04020501.04000000
              + LEAF + User Data Mode + AES3 Enumerated mode of carriage of user data.. + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010b00.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedUserData +
                urn:smpte:ul:060e2b34.01010105.04020501.05000000
              + LEAF + Fixed User Data + AES3 Fixed data pattern for user data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + 48 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Emphasis +
                urn:smpte:ul:060e2b34.01010105.04020501.06000000
              + LEAF + Emphasis + The AES-3 emphasis in use + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010123.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedTimecodeTrackID +
                urn:smpte:ul:060e2b34.0101010c.04020501.07000000
              + LEAF + Linked Timecode Track ID + AES3 association of SMPTE 337M time stamp to Timecode Track IDs. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataStreamNumber +
                urn:smpte:ul:060e2b34.0101010c.04020501.08000000
              + LEAF + SMPTE 337M Data Stream Number + The data_stream_number of the SMPTE 337M data stream being described. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BWFProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020502.00000000
              + NODE + BWF Processing Parameters + Parameters required for BWF processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingHistory +
                urn:smpte:ul:060e2b34.01010105.04020502.01000000
              + LEAF + Bext Coding History + The Coding History from the BWF <bext> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BextCodingHistory +
                urn:smpte:ul:060e2b34.01010105.04020502.01010000
              + LEAF + Bext Coding History + The Coding History from the BWF <bext> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BasicData +
                urn:smpte:ul:060e2b34.01010105.04020502.02000000
              + LEAF + Qlty Basic Data + Basic Capture Data from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyBasicData +
                urn:smpte:ul:060e2b34.01010105.04020502.02010000
              + LEAF + Qlty Basic Data + Basic Capture Data from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.03000000
              + LEAF + Qlty Start Of Modulation + Start of modulation of the original recording, in hours, minutes, seconds and tenths of a second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyStartOfModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.03010000
              + LEAF + Qlty Start Of Modulation + Start of modulation of the original recording, in hours, minutes, seconds and tenths of a second + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityEvent +
                urn:smpte:ul:060e2b34.01010105.04020502.04000000
              + LEAF + Qlty Quality Event + Information from the BWF <qlty> chunk describing each Quality event in the sound signal. One string is used for each event. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyQualityEvent +
                urn:smpte:ul:060e2b34.01010105.04020502.04010000
              + LEAF + Qlty Quality Event + Information from the BWF <qlty> chunk describing each Quality event in the sound signal. One string is used for each event. + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.05000000
              + LEAF + Qlty End Of Modulation + End of modulation time of the original recording, in hours, minutes, seconds and tenths of a second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyEndOfModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.05010000
              + LEAF + Qlty End Of Modulation + End of modulation time of the original recording, in hours, minutes, seconds and tenths of a second + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityParameter +
                urn:smpte:ul:060e2b34.01010105.04020502.06000000
              + LEAF + Qlty Quality Parameter + String of Quality Parameters affecting the sound signal, from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyQualityParameter +
                urn:smpte:ul:060e2b34.01010105.04020502.06010000
              + LEAF + Qlty Quality Parameter + String of Quality Parameters affecting the sound signal, from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperatorComment +
                urn:smpte:ul:060e2b34.01010105.04020502.07000000
              + LEAF + Qlty Operator Comment + String of Operator comments concerning the capturing of the sound signal, from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyOperatorComment +
                urn:smpte:ul:060e2b34.01010105.04020502.07010000
              + LEAF + Qlty Operator Comment + String of Operator comments concerning the capturing of the sound signal, from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueSheet +
                urn:smpte:ul:060e2b34.01010105.04020502.08000000
              + LEAF + Qlty Cue Sheet + String of cue points, timestamps and descriptions from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyCueSheet +
                urn:smpte:ul:060e2b34.01010105.04020502.08010000
              + LEAF + Qlty Cue Sheet + String of cue points, timestamps and descriptions from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020700.00000000
              + NODE + General Processing Parameters + Parameters of a general nature required for processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DialNorm +
                urn:smpte:ul:060e2b34.01010105.04020701.00000000
              + LEAF + Dial Norm + Gain to be applied to normalise perceived loudness of the clip + AAF[1.1:] + ATSC A/53 (1db per step) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmSoundSource +
                urn:smpte:ul:060e2b34.01010101.04020800.00000000
              + NODE + Film Sound Source + Indicates the film sound source + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTrack_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020801.00000000
              + LEAF + Optical Track + The kind of optical track from which the sound was recovered + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticTrack_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020802.00000000
              + LEAF + Magnetic Track + The kind of magnetic track from which the sound was recovered + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioTestParameters +
                urn:smpte:ul:060e2b34.01010101.04021000.00000000
              + NODE + Audio Test Parameters + Audio test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalToNoiseRatio +
                urn:smpte:ul:060e2b34.01010101.04021001.00000000
              + LEAF + Signal-to-Noise Ratio + The measured signal to noise ratio of the original recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Weighting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04021002.00000000
              + LEAF + Weighting + The weighting used in measurements + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04030000.00000000
              + NODE + Data Essence Characteristics + Operating characteristics of the device creating the data essence. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalDataEssenceParameters +
                urn:smpte:ul:060e2b34.01010101.04030100.00000000
              + NODE + Fundamental Data Essence Parameters + Fundamental data essence characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.04030101.00000000
              + LEAF + Caption Kind + Specifies the kind of caption - e.g. teletext subtitles, closed captions subtitles, embedded sports scores, name captions etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionKind +
                urn:smpte:ul:060e2b34.01010104.04030101.01000000
              + LEAF + Caption Kind + Specifies the kind of caption - e.g. teletext subtitles, closed captions subtitles, embedded sports scores, name captions etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogDataEssenceCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04030200.00000000
              + NODE + Analog Data Essence Coding Parameters + Information about the analogue coding of the data essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogDataCodingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04030201.00000000
              + LEAF + Analog Data Coding Kind + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalDataEssenceCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04030300.00000000
              + NODE + Digital Data Essence Coding Parameters + Information about the data essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalEncodingBitRate +
                urn:smpte:ul:060e2b34.01010103.04030301.00000000
              + LEAF + Digital Encoding Bit Rate + The encoded bit rate of the subject digital video bitstream or file in Megabits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCoding +
                urn:smpte:ul:060e2b34.01010103.04030302.00000000
              + LEAF + Data Essence Coding ID + Specifies the data essence coding type + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceTestParameters +
                urn:smpte:ul:060e2b34.01010101.04031000.00000000
              + NODE + Data Essence Test Parameters + Data test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040000.00000000
              + NODE + Metadata Characteristics + Operating characteristics of the device creating the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalMetadataCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040100.00000000
              + NODE + Fundamental Metadata Characteristics + Fundamental Metadata characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040101.00000000
              + NODE + Timecode Characteristics + Characteristics of timecode metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040101.01000000
              + LEAF + Timecode Kind + eg. EBU, 309M, 12M etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeTimebase +
                urn:smpte:ul:060e2b34.01010101.04040101.02000000
              + LEAF + Timecode Timebase + eg. 24, 25, 30, 60, 48 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStreamSampleRate +
                urn:smpte:ul:060e2b34.01010102.04040101.02010000
              + LEAF + Timecode Timebase + eg. 24, 25, 30000/1001, 30, 48, 60 + AAF~SampleRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FramesPerSecond +
                urn:smpte:ul:060e2b34.01010102.04040101.02060000
              + LEAF + Rounded Timecode Timebase + eg. 24, 25, 30, 48, 60 + AAF~FPS + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeUserBitsFlag +
                urn:smpte:ul:060e2b34.01010101.04040101.03000000
              + LEAF + Timecode User Bits Flag + User bits active = True + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IncludeSync +
                urn:smpte:ul:060e2b34.01010101.04040101.04000000
              + LEAF + Include Sync + Specifies whether synchronization data is included in SMPTE 12M Timecode + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DropFrame +
                urn:smpte:ul:060e2b34.01010101.04040101.05000000
              + LEAF + Drop Frame + Specifies whether timecode is drop frame (Non-drop Frame = 0) + AAF~Drop + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDateTimeCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04040102.00000000
              + NODE + General Date-Time Coding Characteristics + Coding Characteristics of time and date metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeRate +
                urn:smpte:ul:060e2b34.01010105.04040102.01000000
              + LEAF + Date-Time Rate + Defines the Date/Time rate where this differs from the essence rate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeDropFrame +
                urn:smpte:ul:060e2b34.01010105.04040102.02000000
              + LEAF + Date-Time Drop Frame Flag + TRUE if drop-frame is active + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeEmbedded +
                urn:smpte:ul:060e2b34.01010105.04040102.03000000
              + LEAF + Date-Time Embedded Flag + TRUE if embedded in other data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeKind +
                urn:smpte:ul:060e2b34.01010105.04040102.04000000
              + LEAF + Date-Time Kind + Date/Time format kind (examples may include, but are not restricted to, SMPTE timecodes). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040200.00000000
              + NODE + Analog Metadata Coding Characteristics + Information about the analogue coding of the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeSource +
                urn:smpte:ul:060e2b34.01010101.04040201.00000000
              + LEAF + Timecode Source Kind + Specifies whether timecode is LTC or VITC + AAF~SourceType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010109.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMetadataCarrier_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040202.00000000
              + LEAF + Analog Metadata Carrier + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040300.00000000
              + NODE + Digital Metadata Coding Characteristics + Information about the metadata digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMetadataCarrier_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040301.00000000
              + LEAF + Digital Metadata Carrier + The metadata coding type - eg. Digital VBI, AES-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexingMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04040400.00000000
              + NODE + Indexing Metadata Coding Characteristics + Information about the indexing metadata coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntraEditUnitIndexing +
                urn:smpte:ul:060e2b34.01010104.04040401.00000000
              + NODE + Intra Edit Unit Indexing + Information about indexing essence elements within an edit unit. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SliceCount +
                urn:smpte:ul:060e2b34.01010104.04040401.01000000
              + LEAF + Slice Count + Number of sections indexed, per edit unit, minus one + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Slice +
                urn:smpte:ul:060e2b34.01010104.04040401.02000000
              + LEAF + Slice Number + The number of the indexed section in the edit unit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementDelta +
                urn:smpte:ul:060e2b34.01010104.04040401.03000000
              + LEAF + Element Delta + The number of bytes from the start of the section to this element. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTableIndex +
                urn:smpte:ul:060e2b34.01010104.04040401.04000000
              + LEAF + Position Table Indexing + Value identifying that the element indexed is subject to temporal reordering or offsetting of edit units A "Reorder" flag when negative and an Index into a table when positive + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SliceOffset +
                urn:smpte:ul:060e2b34.01010104.04040401.05000000
              + LEAF + Slice Offset List + List of 'n' offsets within the edit unit of each indexed section (except the first) + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + n*4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeltaEntryArray +
                urn:smpte:ul:060e2b34.01010105.04040401.06000000
              + LEAF + Delta Entry Array + Array of values used to identify elements of Essence within an edit unit + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTableCount +
                urn:smpte:ul:060e2b34.01010105.04040401.07000000
              + LEAF + Position Table Count + Number of temporal position offsets indexed, per edit unit, minus one + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTable +
                urn:smpte:ul:060e2b34.01010105.04040401.08000000
              + LEAF + Position Table + List of 'n' fractional temporal offsets of indexed elements relative to the indexed position + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + n*8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterEditUnitIndexing +
                urn:smpte:ul:060e2b34.01010104.04040402.00000000
              + NODE + Inter Edit Unit Indexing + Information about indexing edit units within a container. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.01000000
              + LEAF + Stream Offset + The offset of the edit unit within the container stream relative to the start of that container stream + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Flags +
                urn:smpte:ul:060e2b34.01010104.04040402.02000000
              + LEAF + Edit Unit Flags + Flags to indicate coding of elements in this edit unit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.03000000
              + LEAF + Temporal Offset + The number of edit units by which this edit unit has been moved in the bitstream for the purpose of temporal reordering (e.g. MPEG) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrameOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.04000000
              + LEAF + Anchor Offset + The offset in edit units from this edit unit to the previous anchor edit unit (e.g. previous I-frame in MPEG-2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexEntryArray +
                urn:smpte:ul:060e2b34.01010105.04040402.05000000
              + LEAF + Index Entry Array + Array of values used to index elements from edit unit to edit unit + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentPackageIndexArray +
                urn:smpte:ul:060e2b34.01010107.04040402.06000000
              + LEAF + Content Package Index Array + An ordered array of index entries for each frame in this Content Package + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoIndexParameters +
                urn:smpte:ul:060e2b34.01010107.04040403.00000000
              + NODE + Video Index Parameters + Information derived from Video Index RP186 + RP186 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoIndexArray +
                urn:smpte:ul:060e2b34.01010107.04040403.01000000
              + LEAF + Video Index Array + An ordered array of Video Indexes. Each Video Index is a concatenation of classes 1.1, 1.2, 1.3, 2.1 and 2.2 as defined in SMPTE 168M where each class is 3 bytes long. The CRCC bytes are not present in this data item + RP186 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 15*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexLocations +
                urn:smpte:ul:060e2b34.0101010e.04040500.00000000
              + NODE + Index Locations + Index Locations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleIndexLocation +
                urn:smpte:ul:060e2b34.0101010e.04040501.00000000
              + LEAF + Single Index Location + Specifies whether the Index Table Segments are in one partition or multiple partitions. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ForwardIndexDirection +
                urn:smpte:ul:060e2b34.0101010e.04040502.00000000
              + LEAF + Forward Index Direction + Specifies whether the Index Table Segments are pointing forward or backward. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsRIPPresent +
                urn:smpte:ul:060e2b34.0101010e.04040503.00000000
              + LEAF + Is RIP Present + Specifies whether the file includes a Random Index Pack. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrecedingIndexTable +
                urn:smpte:ul:060e2b34.0101010e.04040504.00000000
              + LEAF + Preceding Index Table + Specifies whether a Complete Index Table is in a partition preceding all Essence that it indexes. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FollowingIndexTable +
                urn:smpte:ul:060e2b34.0101010e.04040505.00000000
              + LEAF + Following Index Table + Specifies whether a Complete Index Table is in a partition following all Essence that it indexes. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSparse +
                urn:smpte:ul:060e2b34.0101010e.04040506.00000000
              + LEAF + Is Sparse + Specifies whether a sparse Index Table is in the essence container. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataTestParameters +
                urn:smpte:ul:060e2b34.01010101.04041000.00000000
              + NODE + Metadata Test Parameters + Data test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonitoringAndControlCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050000.00000000
              + NODE + Monitoring and Control Characteristics + Operating characteristics of the device creating the system and control information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalMonitoringAndControlCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050100.00000000
              + NODE + Fundamental Monitoring and Control Characteristics + Fundamental Monitoring and Control characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalStandard +
                urn:smpte:ul:060e2b34.01010105.04050113.00000000
              + LEAF + Signal Standard + Underlying Signal Standard + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010127.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMonitoringAndControlCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050200.00000000
              + NODE + Analog Monitoring and Control Coding Characteristics + Information about the original analog coding of the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMonitoringAndControlCodingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04050201.00000000
              + LEAF + Analog Monitoring and Control Coding Kind + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMonitoringAndControlCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04050300.00000000
              + NODE + Digital Monitoring and Control Coding Parameters + Information about the original digital coding of the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMonitoringAndControlSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04050301.00000000
              + NODE + Digital Monitoring and Control Sampling Parameters + Information about the Monitoring and Control metadata digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonitoringAndControlTestParameters +
                urn:smpte:ul:060e2b34.01010101.04051000.00000000
              + NODE + Monitoring and Control Test Parameters + Monitoring and Control metadata test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04060000.00000000
              + NODE + General Coding Characteristics + Characteristics that apply to more than one type of essence or metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04060100.00000000
              + NODE + General Essence Coding Characteristics + Characteristics that apply to more than one type of essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampleRate +
                urn:smpte:ul:060e2b34.01010101.04060101.00000000
              + LEAF + Sample Rate + Specifies the number of addressable elements of essence data per second + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceLength +
                urn:smpte:ul:060e2b34.01010101.04060102.00000000
              + LEAF + Essence Length + Specifies the number of addressable elements of essence data + AAF~Length mxflib[:1.19]~ContainerDuration + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceContainerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060200.00000000
              + NODE + General Essence Container Characteristics + Characteristics that apply to Essence Containers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditUnitByteCount +
                urn:smpte:ul:060e2b34.01010104.04060201.00000000
              + LEAF + Edit Unit Byte Count + Defines the byte count of each and every Edit Unit of stored Essence indexed by this Index Table Segment + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApproxImageContainerSize +
                urn:smpte:ul:060e2b34.01010107.04060202.00000000
              + LEAF + Approximate Image Container Size + Identifies, to an order of magnitude, the size of the image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010109.04060203.00000000
              + LEAF + Product Format + Identifies the name of the image file format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 30 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductFormat +
                urn:smpte:ul:060e2b34.01010109.04060203.01000000
              + LEAF + Product Format + Identifies the name of the image file format + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 30 Unicode chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtStartOffset +
                urn:smpte:ul:060e2b34.0101010a.04060204.00000000
              + LEAF + Ext Start Offset + The byte offset to the first essence data in an external Essence file + MXF[2007:] + SMPTE ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBEByteCount +
                urn:smpte:ul:060e2b34.0101010a.04060205.00000000
              + LEAF + VBE Byte Count + The count of bytes of the last essence element in the last Edit Unit indexed by the Index Table Segment + MXF[2007:] + SMPTE ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleEssenceLocation +
                urn:smpte:ul:060e2b34.0101010e.04060206.00000000
              + LEAF + Single Essence Location + Specifies whether the Essence Containers are in one partition or multiple partitions. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingularPartitionUsage +
                urn:smpte:ul:060e2b34.0101010e.04060207.00000000
              + LEAF + Singular Partition Usage + Specifies whether the Partition is Singular. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060800.00000000
              + NODE + General Metadata Coding Characteristics + Characteristics that apply to more than one type of metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataEncodingSchemeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04060801.00000000
              + LEAF + Metadata Encoding Scheme Code + The code that indicates the manner in which the metadata for the motion imagery was encoded. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 20 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkID +
                urn:smpte:ul:060e2b34.01010108.04060802.00000000
              + LEAF + RIFF Chunk ID + The code that identifies the data contained in a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationScheme +
                urn:smpte:ul:060e2b34.0101010c.04060803.00000000
              + LEAF + Application Scheme + Contains the Universal Label of the Application Metadata scheme contained in this Plug-In Object. + SMPTE 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.0101010c.04060804.00000000
              + LEAF + Descriptive Metadata Scheme + The Universal Label of the Descriptive Metadata scheme that is referenced by the DM Framework property + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UDAMSetIdentifier +
                urn:smpte:ul:060e2b34.0101010d.04060805.00000000
              + LEAF + UDAM Set Identifier + The immutable ID of the instance of this user-defined acquisition metadata set + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedMetadataPayloadSchemeID +
                urn:smpte:ul:060e2b34.0101010d.04060806.00000000
              + LEAF + Text-Based Metadata Payload Scheme Identifier + Unique identifier for text-based payload scheme. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralMetadataContainerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060900.00000000
              + NODE + General Metadata Container Characteristics + Characteristics that apply to metadata Containers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HeaderByteCount +
                urn:smpte:ul:060e2b34.01010104.04060901.00000000
              + LEAF + Header Byte Count + Count of bytes used for the metadata in a file Header + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexByteCount +
                urn:smpte:ul:060e2b34.01010104.04060902.00000000
              + LEAF + Index Byte Count + Count of bytes used for index table segments + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkLength +
                urn:smpte:ul:060e2b34.01010108.04060903.00000000
              + LEAF + RIFF Chunk Length + Count of bytes in a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04061000.00000000
              + NODE + General Data Coding Characteristics + Characteristics that apply to any type of data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackLength +
                urn:smpte:ul:060e2b34.01010104.04061001.00000000
              + LEAF + Pack Length + Big-endian overall length of set or pack + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceLength +
                urn:smpte:ul:060e2b34.01010109.04061002.00000000
              + LEAF + Source Length + Length of the unencrypted value (V) in a KLV triplet + DCP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceAndDataParameters +
                urn:smpte:ul:060e2b34.01010102.04070000.00000000
              + NODE + General Essence and Data Parameters + Specifies information relating to the essence and data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentDataDefinition +
                urn:smpte:ul:060e2b34.01010102.04070100.00000000
              + LEAF + Component Data Definition + Specifies the basic essence type of a component + AAF~DataDefinition mxflib[:1.19]~DataDefinition + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDefinition +
                urn:smpte:ul:060e2b34.01010105.04070101.00000000
              + LEAF + Data Definition + The value defines the kind of data or metadata to which it refers + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceStream +
                urn:smpte:ul:060e2b34.01010102.04070200.00000000
              + LEAF + Essence Stream + Specifies the stream of data as essence + AAF~Data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStreamData +
                urn:smpte:ul:060e2b34.01010102.04070300.00000000
              + LEAF + Timecode Stream Data + Specifies the Timecode stream contains essence + AAF~Source + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkData +
                urn:smpte:ul:060e2b34.01010108.04070400.00000000
              + LEAF + RIFF Chunk Data + The data bytes of a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04080000.00000000
              + NODE + Object Characteristics + Object Characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04090000.00000000
              + NODE + Format Characteristics + Specifies formatting used in laying down the essence onto physical media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010105.04090100.00000000
              + LEAF + Recorded Format + Specifies the recording format as laid down on the media; e.g. D5, Betacam etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedFormat +
                urn:smpte:ul:060e2b34.01010102.04090101.00000000
              + LEAF + Recorded Format + Specifies the recording format as laid down on the media; e.g. D5, Betacam etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEMediaType_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04090200.00000000
              + LEAF + MIME Media Type + Specifies the MIME media type as defined by IETF + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEType +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + LEAF + MIME Media Type + Specifies the MIME media type as defined by IETF + AAF[1.1:]~MimeType MXF + RFC 2048 + AAF Object Specification, SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextMIMEMediaType +
                urn:smpte:ul:060e2b34.0101010d.04090202.00000000
              + LEAF + Text MIME Media Type + Specifies the MIME media type as defined by IETF. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CharSet +
                urn:smpte:ul:060e2b34.01010108.04090300.00000000
              + LEAF + MIME Char Set + Specifies the registered character set used by both the internal and external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + AAF[1.1:] + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMECharSet_ISO7 +
                urn:smpte:ul:060e2b34.01010108.04090301.00000000
              + LEAF + MIME Char Set + Specifies the registered character set used by both the internal and external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEEncoding_ISO7 +
                urn:smpte:ul:060e2b34.01010108.04090400.00000000
              + LEAF + MIME Encoding + Specifies the registered character set used by the external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEEncoding +
                urn:smpte:ul:060e2b34.01010108.04090401.00000000
              + LEAF + MIME Encoding + Specifies the registered character set used by the external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + AAF[1.3:] ASPA[:0.8] + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UCSEncoding +
                urn:smpte:ul:060e2b34.0101010c.04090500.00000000
              + LEAF + UCS Encoding + A text string giving the ISO/IEC 10646-1 encoding of the essence data. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageCharacteristics +
                urn:smpte:ul:060e2b34.01010103.040f0000.00000000
              + NODE + Storage Characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.040f0100.00000000
              + LEAF + Storage Kind + The kind of storage expressed as a name - e.g. C.D.; D.V.D.; Betas SP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKind +
                urn:smpte:ul:060e2b34.01010103.040f0101.00000000
              + LEAF + Storage Kind + The kind of storage expressed as a name - e.g. C.D.; D.V.D.; Betas SP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKindCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.040f0102.00000000
              + LEAF + Storage Kind Code + The kind of storage expressed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediumCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04100000.00000000
              + NODE + Medium Characteristics + Characteristics describing the medium containing the essence for transport or storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100100.00000000
              + NODE + Storage Medium Parameters + Characteristics that describe the physical medium such as cartridge size + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100101.00000000
              + NODE + Tape Medium Parameters + Characteristics of Tape medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeShellKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.01000000
              + LEAF + Tape Shell Kind + Specifies the cassette etc. shell - eg 1 inch B, 1 inch C, 90 minute Betacam, DAT, 1/4 inch. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormFactor +
                urn:smpte:ul:060e2b34.01010102.04100101.01010000
              + LEAF + Tape Shell Kind + Specifies the cassette etc. shell - eg 1 inch B, 1 inch C, 90 minute Betacam, DAT, 1/4 inch. + AAF~FormFactor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010104.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormulation_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.02000000
              + LEAF + Tape Formulation + Specifies the formulation of the tape - eg. Metal, oxide etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormulation +
                urn:smpte:ul:060e2b34.01010102.04100101.02010000
              + LEAF + Tape Formulation + Specifies the formulation of the tape - eg. Metal, oxide etc + AAF~Model + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeCapacity +
                urn:smpte:ul:060e2b34.01010102.04100101.03000000
              + LEAF + Tape Capacity + Specifies the tape capacity in minutes + AAF~Length + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeManufacturer_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.04000000
              + LEAF + Tape Manufacturer + Specifies the tape manufacturer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeManufacturer +
                urn:smpte:ul:060e2b34.01010102.04100101.04010000
              + LEAF + Tape Manufacturer + Specifies the tape manufacturer + AAF~ManufacturerID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeStock_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.05000000
              + LEAF + Tape Stock + Specifies the tape stock + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeStock +
                urn:smpte:ul:060e2b34.01010102.04100101.05010000
              + LEAF + Tape Stock + Specifies the tape stock + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 Unicode chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeBatchNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.06000000
              + LEAF + Tape Batch Number + Specifies the batch number of the tape + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeBatchNumber +
                urn:smpte:ul:060e2b34.01010102.04100101.06010000
              + LEAF + Tape Batch Number + Specifies the batch number of the tape + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeMediumFundamentalParameters +
                urn:smpte:ul:060e2b34.01010103.04100101.10000000
              + NODE + Tape Medium Fundamental Parameters + Fundamental characteristics of Tape medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapePartitionCapacity +
                urn:smpte:ul:060e2b34.01010103.04100101.10010000
              + LEAF + Tape Partition Capacity + The capacity of a tape partition in terms of the maximum number of megabytes which can be stored. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100102.00000000
              + NODE + Disc Medium Parameters + Characteristics of Disc medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscMediumFundamentalParameters +
                urn:smpte:ul:060e2b34.01010103.04100102.01000000
              + NODE + Disc Medium Fundamental Parameters + Fundamental characteristics of Disc medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscPartitionCapacity +
                urn:smpte:ul:060e2b34.01010103.04100102.02000000
              + LEAF + Disc Partition Capacity + The capacity of the disc partition in terms of the maximum number of Megabytes which can be stored. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.00000000
              + NODE + Film Medium Parameters + Information about the physical film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericFilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.01000000
              + NODE + Generic Film Medium Parameters + Generic Information about the film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmColorProcess_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01010000
              + LEAF + Film Color Process + The film coloring process used. Eg Pathe Color, Hand Coloring, Berthon Keller Dorian Lenticular Process + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeFormat +
                urn:smpte:ul:060e2b34.01010101.04100103.01020000
              + LEAF + Edge Code Format + Specifies the edge code format + AAF~CodeFormat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010c.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerforationsPerFrame +
                urn:smpte:ul:060e2b34.01010102.04100103.01030000
              + LEAF + Perforations Per Frame + Specifies number of perforations per frame [e.g. 2, 3, 4, 5, 8, 10, 12, 15] + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerforationsPerFrame_Rational +
                urn:smpte:ul:060e2b34.01010102.04100103.01030100
              + LEAF + Perforations Per Frame + Specifies number of perforations per frame [e.g. 2, 3, 4, 5, 8, 10, 12, 15] or non-integer values + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01040000
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName +
                urn:smpte:ul:060e2b34.01010102.04100103.01040100
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + AAF~FilmGaugeFormat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName_FilmType +
                urn:smpte:ul:060e2b34.01010102.04100103.01040200
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01050000
              + LEAF + Film Stock Kind + Example: 5247 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockKind +
                urn:smpte:ul:060e2b34.01010102.04100103.01050100
              + LEAF + Film Stock Kind + Example: 5247 + AAF~Model + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockManufacturerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01060000
              + LEAF + Film Stock Manufacturer Name + Example: Kodak, Ilford + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockManufacturer +
                urn:smpte:ul:060e2b34.01010102.04100103.01060100
              + LEAF + Film Stock Manufacturer Name + Example: Kodak, Ilford + AAF~Manufacturer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmBatchNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100103.01070000
              + LEAF + Film Batch Number + Specifies the batch of film stock + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmBatchNumber +
                urn:smpte:ul:060e2b34.01010102.04100103.01070100
              + LEAF + Film Batch Number + Specifies the batch of film stock + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormat +
                urn:smpte:ul:060e2b34.01010102.04100103.01080000
              + LEAF + Film Gauge + Specifies gauge of film stock in mm. Examples: 70mm, 48mm, 16mm, etc. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeFilmFormat +
                urn:smpte:ul:060e2b34.01010102.04100103.01090000
              + LEAF + Edge Code Film Gauge + Specifies the gauge of film stock associated with the edge code. + AAF~FilmKind + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpecificFilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.02000000
              + NODE + Specific Film Medium Parameters + Specific Information about the film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalMediaLength +
                urn:smpte:ul:060e2b34.01010101.04100103.02010000
              + LEAF + Physical Media Length + The physical length of the medium on which the essence was captured + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmCaptureAperture_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.02020000
              + LEAF + Film Capture Aperture + Examples: Super 16, Academy etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmAspectRatio +
                urn:smpte:ul:060e2b34.01010102.04100103.02030000
              + LEAF + Exposed Aspect Ratio + Aspect ratio of the exposed physical frame + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemoryStorageCharacteristics +
                urn:smpte:ul:060e2b34.01010102.04180000.00000000
              + NODE + Memory Storage Characteristics + Information about persistent and transient memory parameters + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemoryStorageAlignmentCharacteristics +
                urn:smpte:ul:060e2b34.01010102.04180100.00000000
              + NODE + Memory Storage Alignment Characteristics + Information about aligning data with defined memory boundaries + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageAlignmentFactor +
                urn:smpte:ul:060e2b34.01010102.04180101.00000000
              + LEAF + Image Alignment Offset + Specifies number of bytes to align the start of an image with a defined memory boundary + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageStartOffset +
                urn:smpte:ul:060e2b34.01010102.04180102.00000000
              + LEAF + Image Start Offset + Specifies bytes of fill before start of field + AAF~FieldStartOffset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageEndOffset +
                urn:smpte:ul:060e2b34.01010102.04180103.00000000
              + LEAF + Image End Offset + Specifies bytes of fill after end of field + AAF~FieldEndOffset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaddingBits +
                urn:smpte:ul:060e2b34.01010102.04180104.00000000
              + LEAF + Padding Bits + Specifies the number of bits to pad each pixel so that the next pixel starts on a defined boundary + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200000.00000000
              + NODE + Device Characteristics + Information about the devices used + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200100.00000000
              + NODE + Camera Characteristics + Information about camera devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200101.00000000
              + NODE + Image Characteristics + The specific category of imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200101.01000000
              + LEAF + Image Category + Identifies the specific category of imagery (often revealing the nature of the collector or intended use). Format is as defined in NITF v2.0 in addition to those defined here. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImagerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04200102.00000000
              + NODE + Imager Characteristics + The specific category of imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageDevices +
                urn:smpte:ul:060e2b34.01010101.04200102.01000000
              + NODE + Image Devices + Information about the image device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200102.01010000
              + LEAF + Image Source Device Kind + Indicates the type of the image source device + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceDeviceKind +
                urn:smpte:ul:060e2b34.01010109.04200102.01010100
              + LEAF + Image Source Device Kind + Indicates the type of the image source device + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AcquisitionCharacteristics +
                urn:smpte:ul:060e2b34.0101010d.04200103.00000000
              + NODE + Acquisition Characteristics + The specific category of Acquisition + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraOperation +
                urn:smpte:ul:060e2b34.0101010d.04200103.01000000
              + NODE + CameraOperation + Includes items for camera operators to operate the camera. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoExposureMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.01010000
              + LEAF + Auto Exposure Mode + Auto Exposure setup Mode + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020107.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoFocusSensingAreaSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01020000
              + LEAF + Auto Focus Sensing Area Setting + Auto Focus Sensing Area setting defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010132.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorCorrectionFilterWheelSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01030000
              + LEAF + Color Correction Filter Wheel Setting + Color Compensation Filter Wheel setting defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012f.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NeutralDensityFilterWheelSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01040000
              + LEAF + Neutral Density Filter Wheel Setting + Neutral Density Filter Wheel setting as an integer value where the value 1 means a clear filter. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorDimensionEffectiveWidth +
                urn:smpte:ul:060e2b34.0101010d.04200103.01050000
              + LEAF + Image Sensor Dimension Effective Width + Width of effective image area in micro meters + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorDimensionEffectiveHeight +
                urn:smpte:ul:060e2b34.0101010d.04200103.01060000
              + LEAF + Image Sensor Dimension Effective Height + Height of effective image area in micro meters + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorReadoutMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.01070000
              + LEAF + Image Sensor Readout Mode + Image Readout mode defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010130.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeedAngle +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080000
              + LEAF + Shutter Speed (Angle) + Shutter speed as an angle defining the shutter speed (angle) in minutes relative to a completely open shutter angle of 360 degrees. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeedTime +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080100
              + LEAF + Shutter Speed (Time) + Shutter speed as a time defining the shutter speed (time) in seconds + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraMasterGainAdjustment +
                urn:smpte:ul:060e2b34.0101010d.04200103.01090000
              + LEAF + Camera Master Gain Adjustment + Master Gain Control setting in 0.01 decibel units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISOSensitivity +
                urn:smpte:ul:060e2b34.0101010d.04200103.010a0000
              + LEAF + ISO Sensitivity + Sensitivity to light + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectricalExtenderMagnification +
                urn:smpte:ul:060e2b34.0101010d.04200103.010b0000
              + LEAF + Electrical Extender Magnification + Expresses the magnification setup of the picture size in percent where 100% (64h) represents the original picture size + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExposureIndexOfPhotoMeter +
                urn:smpte:ul:060e2b34.0101010e.04200103.010c0000
              + LEAF + Exposure Index of Photo Meter + Setting of the photo meter in ISO number. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorMatrix +
                urn:smpte:ul:060e2b34.0101010e.04200103.010d0000
              + LEAF + Color Matrix + Specifies the setting of the color balance of the camera with the ordered elements (R to R, G to R, B to R, R to G, G to G, B to G, R to B, G to B, B to B). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 8 + 9 x 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Adjustment +
                urn:smpte:ul:060e2b34.0101010d.04200103.02000000
              + NODE + Adjustment + Includes items for making detailed image adjustments. + RDD 18 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoWhiteBalanceMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.02010000
              + LEAF + Auto White Balance Mode + Auto White Balance Mode defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010131.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WhiteBalance +
                urn:smpte:ul:060e2b34.0101010d.04200103.02020000
              + LEAF + White Balance + White Balance value defined by the temperature in Kelvin + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraMasterBlackLevel +
                urn:smpte:ul:060e2b34.0101010d.04200103.02030000
              + LEAF + Camera Master Black Level + Level of the master black level of the camera expressed as a percentage defined in 0.1 % units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraKneePoint +
                urn:smpte:ul:060e2b34.0101010d.04200103.02040000
              + LEAF + Camera Knee Point + Level of the knee point in the camera transfer characteristic expressed as a percentage defined in 0.1 % units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraKneeSlope +
                urn:smpte:ul:060e2b34.0101010d.04200103.02050000
              + LEAF + Camera Knee Slope + Slope of the transfer characteristic starting at the knee point. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraLuminanceDynamicRange +
                urn:smpte:ul:060e2b34.0101010d.04200103.02060000
              + LEAF + Camera Luminance Dynamic Range + Luminance Dynamic Range expressed as a percentage defined in 0.1 % units. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GammaForCDL +
                urn:smpte:ul:060e2b34.0101010e.04200103.02070000
              + LEAF + Gamma for CDL + Enumerated code that represents the gamma characteristic applied at the input to the ASC CDL. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASCCDLV12 +
                urn:smpte:ul:060e2b34.0101010e.04200103.02080000
              + LEAF + ASC CDL V1.2 + 10 parameters of ASC Color Decision List V1.2. + RDD 18 + false + UnknownContext + array of 10 items +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200200.00000000
              + NODE + Optical Characteristics + Information about optics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestParameters +
                urn:smpte:ul:060e2b34.01010101.04200201.00000000
              + NODE + Optical Test Parameters + Optical test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDeviceParameters +
                urn:smpte:ul:060e2b34.01010101.04200201.01000000
              + NODE + Optical Device Parameters + Information about the optical device used (examples: lens, ice block) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200201.01010000
              + LEAF + Optical Test Parameter Name + The specific parameter under test, (example: Flare) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestResult_Float +
                urn:smpte:ul:060e2b34.01010101.04200201.01020000
              + LEAF + Optical Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestResult +
                urn:smpte:ul:060e2b34.01010101.04200201.01030000
              + LEAF + Optical Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocalLength_Float +
                urn:smpte:ul:060e2b34.01010102.04200201.01040000
              + LEAF + Focal Length + Focal length of the lens at time of capture + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocalLength +
                urn:smpte:ul:060e2b34.01010103.04200201.01040100
              + LEAF + Focal Length + Focal length of the lens in millimeters at time of collection. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + Focal length in millimeters shall be expressed as DDDDDDDd where DDDDDDD is in millimeters and d is tenths of a millimeter. +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorSize_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01050000
              + LEAF + Sensor Size + The size of the sensor, for example: 1/2 inch, 2/3 inch, etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensAperture +
                urn:smpte:ul:060e2b34.01010102.04200201.01060000
              + LEAF + Lens Aperture + Aperture of the lens at the time of collection + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorTypeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01070000
              + LEAF + Sensor Type Code + Code indicating type of sensor that produced the original video content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVHorizontal +
                urn:smpte:ul:060e2b34.01010102.04200201.01080000
              + LEAF + Field of View (FOV-Horizontal) + Sensor horizontal field of view. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVHorizontalFP4 +
                urn:smpte:ul:060e2b34.01010103.04200201.01080100
              + LEAF + Field of View (FOV-Horizontal) + Sensor horizontal field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + FOV format is DDDd where DDD is in degrees and d is tenth of a degree +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnamorphicLensCharacteristic_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01090000
              + LEAF + Anamorphic Lens Characteristic + Examples: Flat, anamorphic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVVertical +
                urn:smpte:ul:060e2b34.01010103.04200201.010a0000
              + LEAF + Field of View (FOV-Vertical) + Sensor vertical field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + FOV format is DDDd where DDD is in degrees and d is tenth of a degree +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVVerticalFP4 +
                urn:smpte:ul:060e2b34.01010107.04200201.010a0100
              + LEAF + Field of View (FOV-Vertical FP-4) + Sensor vertical field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalShootingParameters +
                urn:smpte:ul:060e2b34.0101010d.04200202.00000000
              + NODE + Optical Shooting Parameters + Optical shooting/setting parameters during acquisition + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisFNumber +
                urn:smpte:ul:060e2b34.0101010d.04200202.01000000
              + LEAF + Iris F-Number + Lens aperture setting in EV/1000h based on 8000h for F16 + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusPositionFromImagePlane +
                urn:smpte:ul:060e2b34.0101010d.04200202.02000000
              + LEAF + Focus Position From Image Plane + Distance in meters between the image plane and the object in focus + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusPositionFromFrontLensVertex +
                urn:smpte:ul:060e2b34.0101010d.04200202.03000000
              + LEAF + Focus Position From Front Lens Vertex + Distance in meters between the front of the lens and the object in focus + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MacroSetting +
                urn:smpte:ul:060e2b34.0101010d.04200202.04000000
              + LEAF + Macro Setting + Indicates the capability of the lens macro function for close-up work with a limited focal range. True = On, False = Off + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 bytes + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensZoom35mmStillCameraEquivalent +
                urn:smpte:ul:060e2b34.0101010d.04200202.05000000
              + LEAF + Lens Zoom 35mm Still Camera Equivalent + Focal length in meters. + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensZoomActualFocalLength +
                urn:smpte:ul:060e2b34.0101010d.04200202.06000000
              + LEAF + Lens Zoom Actual Focal Length + Focal length in meters. + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalExtenderMagnification +
                urn:smpte:ul:060e2b34.0101010d.04200202.07000000
              + LEAF + Optical Extender Magnification + Magnification factor setup of an optical extender or conversion lens where present + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisTNumber +
                urn:smpte:ul:060e2b34.0101010e.04200202.08000000
              + LEAF + Iris T-Number + Iris position value calculated from the "T-number" that is a measure of the amount of light transmitted through the lens in practice + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.09000000
              + LEAF + Iris Ring Position + Iris ring rotation angle in unsigned integer. 0 is for full open, and FFFFh for close + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.0a000000
              + LEAF + Focus Ring Position + Focus ring rotation angle in unsigned integer. 0 is for near-end, FFFFh for infinity + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ZoomRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.0b000000
              + LEAF + Zoom Ring Position + Zooming ring rotation angle in unsigned integer. 0 is for wide-end, and FFFFh is for tele-end + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MicrophoneCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200300.00000000
              + NODE + Microphone Characteristics + Information about microphones used + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorType_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200301.00000000
              + LEAF + Sensor Type + transducer principle + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PolarCharacteristic_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200302.00000000
              + LEAF + Polar Characteristic + polar patterns + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayCharacteristics +
                urn:smpte:ul:060e2b34.0101010e.04200400.00000000
              + NODE + Display Characteristics + Information about display devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayCharacteristics +
                urn:smpte:ul:060e2b34.0101010e.04200401.00000000
              + NODE + Mastering Display Characteristics + Information about mastering display devices as configured for the mastering process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayColorVolume +
                urn:smpte:ul:060e2b34.0101010e.04200401.01000000
              + NODE + Mastering Display Color Volume + Information about the color volume of a mastering display device as configured for the mastering process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.04200401.01010000
              + LEAF + Mastering Display Primaries + Display Primaries metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020a00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.04200401.01020000
              + LEAF + Mastering Display White Point Chromaticity + Chromaticity of White Point metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.04200401.01030000
              + LEAF + Mastering Display Maximum Luminance + Maximum Display Mastering Luminance metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.04200401.01040000
              + LEAF + Mastering Display Minimum Luminance + Minimum Display Mastering Luminance metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemCharacteristics +
                urn:smpte:ul:060e2b34.01010103.04300000.00000000
              + NODE + System Characteristics + Information about the integrated system used to acquire information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemNameOrNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04300100.00000000
              + LEAF + System Name or Number + A text string with the name or number of the integrated system of sensors or devices that acquired the data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PROCESS +
                urn:smpte:ul:060e2b34.01010101.05000000.00000000
              + NODE + PROCESS + Class 5 is reserved for information about the essence or metadata processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralProcessIndicators +
                urn:smpte:ul:060e2b34.01010101.05010000.00000000
              + NODE + General Process Indicators + Flags etc indicating the process status of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessFundamentals +
                urn:smpte:ul:060e2b34.01010101.05010100.00000000
              + NODE + Process Fundamentals + Information about process fundementals + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntegrationIndication_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010101.00000000
              + LEAF + Integration Indication + A term that describes what the essence is as a unit status of the essence. Terms must be consistent with industry or organizational practices to be useful. Includes segment, clip, shot, item, program etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntegrationIndication +
                urn:smpte:ul:060e2b34.01010104.05010101.01000000
              + LEAF + Integration Indication + A term that describes what the essence is as a unit status of the essence. Terms must be consistent with industry or organizational practices to be useful. Includes segment, clip, shot, item, program etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventIndication_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010102.00000000
              + LEAF + Event Indication + A term that describes what the Event is as a part of the Process. Terms must be consistent with industry or organizational practices to be useful. Includes project, mission, scene, in-points, trigger points, license, option, publication, cataloguing etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventIndication +
                urn:smpte:ul:060e2b34.01010104.05010102.01000000
              + LEAF + Event Indication + A term that describes what the Event is as a part of the Process. Terms must be consistent with industry or organizational practices to be useful. Includes project, mission, scene, in-points, trigger points, license, option, publication, cataloguing etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityFlag +
                urn:smpte:ul:060e2b34.01010101.05010103.00000000
              + LEAF + Quality Flag + Quality of a specific recording/physical copy (good/no good) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h = NO GOOD +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LogoFlag +
                urn:smpte:ul:060e2b34.01010103.05010104.00000000
              + LEAF + Logo Flag + Flag indicates all instances of a shot (specifically) contain an on-screen logo. True=contains logo; False=no logo + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalInstanceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010105.00000000
              + LEAF + Physical Instance Kind + Category of physical copy (e.g., master copy, copy, broadcast copy) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.05010106.00000000
              + LEAF + Graphic Kind + The type of a graphic as a name - eg modified still, graphic image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicUsageKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.05010107.00000000
              + LEAF + Graphic Usage Kind + The type of usage for which a graphic is intended - e.g title sequence, overlay. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicUsage +
                urn:smpte:ul:060e2b34.01010104.05010107.01000000
              + LEAF + Graphic Usage Kind + The type of usage for which a graphic is intended - e.g title sequence, overlay. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageUsage +
                urn:smpte:ul:060e2b34.01010107.05010108.00000000
              + LEAF + Package Usage Kind + Indicates the role of a Package (also known as Mob) as a sub-clip, adjusted clip, template clip or other + AAF[1.1:]~UsageCode + Standard UsageType enumerated values defined in RP224 Labels Registry + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020104.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentCapture +
                urn:smpte:ul:060e2b34.01010101.05010200.00000000
              + NODE + Content Capture + Information about how content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalOrAnalogOrigination_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010201.00000000
              + LEAF + Digital or Analog Origination + The nature of the first capture of the material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010202.00000000
              + NODE + Video or Image Capture Process + Information about how video content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010203.00000000
              + NODE + Film Capture Process + Information about how film content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010204.00000000
              + NODE + Audio Capture Process + Information about how audio content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MicrophonePlacementTechniques_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010204.01000000
              + LEAF + Microphone Placement Techniques + spaced omnis, spaced cardioids, close miking + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010205.00000000
              + NODE + Data Capture Process + Information about how data content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Manipulation +
                urn:smpte:ul:060e2b34.01010101.05010300.00000000
              + NODE + Manipulation + Information about content manipulation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SimpleFlagging +
                urn:smpte:ul:060e2b34.01010101.05010301.00000000
              + LEAF + Simple Flagging Count + The number of alterations to the original file. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyCount +
                urn:smpte:ul:060e2b34.01010101.05010302.00000000
              + LEAF + Copy Count + The number of copies (i.e. not lossless clones) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationCopyNumber +
                urn:smpte:ul:060e2b34.01010105.05010302.01000000
              + LEAF + Generation Copy Number + A number that should be incremented by one for each numerically lossy generation from the source where the original source has a value of zero + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CloneCount +
                urn:smpte:ul:060e2b34.01010101.05010303.00000000
              + LEAF + Clone Count + The number of clones (i.e. digitally lossless copies) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationCloneNumber +
                urn:smpte:ul:060e2b34.01010105.05010303.01000000
              + LEAF + Generation Clone Number + A number that should be incremented by one for each numerically lossless generation from the source where the original source has a value of zero + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkInProgressFlag +
                urn:smpte:ul:060e2b34.01010101.05010304.00000000
              + LEAF + Work-in-Progress Flag + Is the essence a work in progress? Work-in-progress = True + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MusicFlags +
                urn:smpte:ul:060e2b34.01010105.05010400.00000000
              + NODE + Music Flags + Information about music used in the Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignatureTuneFlag +
                urn:smpte:ul:060e2b34.01010103.05010401.00000000
              + LEAF + Signature Tune Flag + Indicates that the usage of the piece of music is for a signature tune + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BackgroundMusicFlag +
                urn:smpte:ul:060e2b34.01010103.05010402.00000000
              + LEAF + Background Music Flag + Indicates that the usage of the music was either soley for the benefit of the audience or audible (or apparently audible) to performers. True = Backgound, False = audible to performers + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThemeMusicFlag +
                urn:smpte:ul:060e2b34.01010105.05010403.00000000
              + LEAF + Theme Music Flag + Indicates that the associated music is theme music + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h (FALSE) or FFh (TRUE) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InsertMusicFlag +
                urn:smpte:ul:060e2b34.01010105.05010404.00000000
              + LEAF + Insert Music Flag + Indicates that the associated music is a music insert + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h (FALSE) or FFh (TRUE) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompressionProcessing +
                urn:smpte:ul:060e2b34.01010101.05020000.00000000
              + NODE + Compression Processing + Information about payload compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCompression +
                urn:smpte:ul:060e2b34.01010101.05020100.00000000
              + NODE + Video or Image Compression + Information about video or image compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05020101.00000000
              + LEAF + Video or Image Compression Algorithm + Algorithm used to compress the video or image content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGProcessing +
                urn:smpte:ul:060e2b34.01010101.05020102.00000000
              + NODE + MPEG Processing + MPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG2Processing +
                urn:smpte:ul:060e2b34.01010101.05020102.01000000
              + NODE + MPEG-2 Processing + MPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SplicingMetadata +
                urn:smpte:ul:060e2b34.01010101.05020102.01010000
              + LEAF + Splicing Metadata + MPEG-2 splicing metadata as defined in SDTI-CP (E&M) and SMPTE 312M + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.00000000
              + NODE + JPEG Processing + JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFJPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.01000000
              + NODE + TIFF JPEG Processing + TIFF JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsUniform +
                urn:smpte:ul:060e2b34.01010102.05020103.01010000
              + LEAF + Uniform Data Flag + TRUE if the compressed data contains the same number of rows per strip throughout the data + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + UInt8 + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEGTableID +
                urn:smpte:ul:060e2b34.01010102.05020103.01020000
              + LEAF + JPEG Table ID + The code of a preapproved TIFF JPEG table ID + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012003.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFJPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.02000000
              + NODE + JFIF JPEG Processing + JFIF JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompression +
                urn:smpte:ul:060e2b34.01010101.05020200.00000000
              + NODE + Audio Compression + Information about audio compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05020201.00000000
              + LEAF + Audio Compression Algorithm + Algorithms used, bitrates used, modes used. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCompression +
                urn:smpte:ul:060e2b34.01010101.05020300.00000000
              + NODE + Data Essence Compression + Information about data essence compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCompression +
                urn:smpte:ul:060e2b34.01010101.05020400.00000000
              + NODE + Metadata Compression + Information about metadata compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NoiseReductionProcessing +
                urn:smpte:ul:060e2b34.01010101.05030000.00000000
              + NODE + Noise Reduction Processing + Information about any noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoNoiseReduction +
                urn:smpte:ul:060e2b34.01010101.05030100.00000000
              + NODE + Video Noise Reduction + Information about any video noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoNoiseReductionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05030101.00000000
              + LEAF + Video Noise Reduction Algorithm + Algorithm used in a noise reduction process + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioNoiseReduction +
                urn:smpte:ul:060e2b34.01010101.05030200.00000000
              + NODE + Audio Noise Reduction + Information about any video noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioNoiseReductionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05030201.00000000
              + LEAF + Audio Noise Reduction Algorithm + Algorithm used in a noise reduction process - eg Dolby SR, Telcom, other + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EnhancementOrModification +
                urn:smpte:ul:060e2b34.01010101.05200000.00000000
              + NODE + Enhancement or Modification + Enhamcement or modification to the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200100.00000000
              + NODE + Image Essence Processing + Enhamcement or modification to the image essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200101.00000000
              + LEAF + Enhancement or Modification Description + Description of how video content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaTransparency +
                urn:smpte:ul:060e2b34.01010102.05200102.00000000
              + LEAF + Alpha Transparency + Zero if the minimum value of an alpha sample specifies full transparency and the maximum value specifies full opacity, one if vice versa. + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010120.00000000 + 1 byte + 00h (Minimum value transparent) or 01h (Maximum value transparent) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200200.00000000
              + NODE + Video Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200201.00000000
              + LEAF + Video Device Kind + Specific description for a device - eg for the film camera, film grading, video camera, variable gain amplifier etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200202.00000000
              + LEAF + Video Device Parameter Name + Specific parameter for the specified device eg. Overall gain, Red lift, coring + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200203.00000000
              + LEAF + Video Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200300.00000000
              + NODE + Audio Essence Processing + Enhamcement or modification to the audio essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200301.00000000
              + LEAF + Audio Enhancement or Modification Description + Description of how audio content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFirstMixDownProcess_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200302.00000000
              + LEAF + Audio First Mix-Down Process + The way in which the first mix down was done + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200400.00000000
              + NODE + Audio Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200401.00000000
              + LEAF + Audio Device Kind + Specific description for a device - eg The Compressor, limiter, etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200402.00000000
              + LEAF + Audio Device Parameter + Specific parameter for the specified device eg. Attack, gating + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200403.00000000
              + LEAF + Audio Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200500.00000000
              + NODE + Data Essence Processing + Enhamcement or modification to the data essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200501.00000000
              + LEAF + Data Enhancement or Modification Description + Description of how data content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200600.00000000
              + NODE + Data Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200601.00000000
              + LEAF + Data Device Kind + Specific description for a device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200602.00000000
              + LEAF + Data Device Parameter Name + Specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200603.00000000
              + LEAF + Data Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataProcessing +
                urn:smpte:ul:060e2b34.01010101.05200700.00000000
              + NODE + Metadata Processing + Enhamcement or modification to the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ModificationInformation +
                urn:smpte:ul:060e2b34.01010102.05200701.00000000
              + NODE + Modification Information + Modification informaation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationID +
                urn:smpte:ul:060e2b34.01010102.05200701.01000000
              + LEAF + Generation ID + Specifies the reference to a particular modification. + AAF~GenerationAUID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSupplierName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.02000000
              + LEAF + Application Supplier Name + Specifies the name of the application provider + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSupplierName +
                urn:smpte:ul:060e2b34.01010102.05200701.02010000
              + LEAF + Application Supplier Name + Specifies the name of the application provider + AAF~CompanyName mxflib[:1.19]~CompanyName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.03000000
              + LEAF + Application Name + Specifies the name of the application product + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationName +
                urn:smpte:ul:060e2b34.01010102.05200701.03010000
              + LEAF + Application Name + Specifies the name of the application product + AAF~ProductName mxflib[:1.19]~ProductName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.04000000
              + LEAF + Application Version Number + Specifies version information for the application + AAF~ProductVersion mxflib[:1.19]~ProductVersion + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionString_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.05000000
              + LEAF + Application Version String + Specifies version information for the application in textual form + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionString +
                urn:smpte:ul:060e2b34.01010102.05200701.05010000
              + LEAF + Application Version String + Specifies version information for the application in textual form + AAF~ProductVersionString mxflib[:1.19]~VersionString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlatform_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.06000000
              + LEAF + Application Platform + Specifies the platform on which the application was run + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlatform +
                urn:smpte:ul:060e2b34.01010102.05200701.06010000
              + LEAF + Application Platform + Specifies the platform on which the application was run + AAF~Platform + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationProductID +
                urn:smpte:ul:060e2b34.01010102.05200701.07000000
              + LEAF + Application Product ID + Specifies a reference to the application product definition + AAF~ProductID mxflib[:1.19]~ProductUID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedGenerationID +
                urn:smpte:ul:060e2b34.01010102.05200701.08000000
              + LEAF + Linked Generation ID + Specifies the reference to an overall modification + AAF~Generation + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.09000000
              + LEAF + Container Version + Specifies the container version number + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToolkitVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.0a000000
              + LEAF + Toolkit Version + Specifies the SDK version number for a modification + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedApplicationPluginInstanceID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0b000000
              + LEAF + Linked Application Plug-In Instance ID + Weak Reference to the Application PlugIn Object that (directly or indirectly) strongly references this Application Metadata Referenced Object Set. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedDescriptiveFrameworkPluginID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0c000000
              + LEAF + Linked Descriptive Framework Plug-In ID + Weak Reference to the DM Segment that (directly or indirectly) strongly references this Description instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPluginInstanceID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0d000000
              + LEAF + Application Plug-In Instance ID + UUID of this application metadata plug-in. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataPlugInID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0e000000
              + LEAF + Descriptive Metadata Plug-In ID + UUID of this DM Plug-in instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationEnvironmentID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0f000000
              + LEAF + Application Environment ID + Identifies the application to which the information in this Plug-In Object applies. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataApplicationEnvironmentID +
                urn:smpte:ul:060e2b34.0101010c.05200701.10000000
              + LEAF + Descriptive Metadata Application Environment ID + Identifies the application to which the information in this DM plug-in applies + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedDescriptiveObjectPluginID +
                urn:smpte:ul:060e2b34.0101010c.05200701.11000000
              + LEAF + Linked Descriptive Object Plug-In ID + Weak Reference to the DM Segment that (directly or indirectly) strongly references this Description instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200800.00000000
              + NODE + Metadata Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodeProcessorSettings +
                urn:smpte:ul:060e2b34.01010102.05200900.00000000
              + NODE + Code Processor Settings + The settings of a effect or other plugin code object in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginCategory +
                urn:smpte:ul:060e2b34.01010102.05200901.00000000
              + LEAF + Plug-In Category ID + Identifies the general purpose of the plugin + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020103.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginPlatform +
                urn:smpte:ul:060e2b34.01010102.05200902.00000000
              + LEAF + Plug-In Platform ID + Identifies the hardware platform of the plugin + AAF~Platform + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinPlatformVersion +
                urn:smpte:ul:060e2b34.01010102.05200903.00000000
              + LEAF + Minimum Supported Platform Version + Earliest supported version of the platform + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxPlatformVersion +
                urn:smpte:ul:060e2b34.01010102.05200904.00000000
              + LEAF + Maximum Supported Platform Version + Most-recent tested version of the platform + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Engine +
                urn:smpte:ul:060e2b34.01010102.05200905.00000000
              + LEAF + Plug-In Engine ID + Identifies the software engine of the plugin + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinEngineVersion +
                urn:smpte:ul:060e2b34.01010102.05200906.00000000
              + LEAF + Minimum Supported Engine Version + Earliest supported version of the Engine + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxEngineVersion +
                urn:smpte:ul:060e2b34.01010102.05200907.00000000
              + LEAF + Maximum Supported Engine Version + Most-recent tested version of the Engine + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginAPI +
                urn:smpte:ul:060e2b34.01010102.05200908.00000000
              + LEAF + Plug-In API ID + Identifies the hardware platform of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinPluginAPI +
                urn:smpte:ul:060e2b34.01010102.05200909.00000000
              + LEAF + Minimum API Version + Earliest supported version of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxPluginAPI +
                urn:smpte:ul:060e2b34.01010102.0520090a.00000000
              + LEAF + Maximum API Version + Most-recent tested version of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoftwareOnly +
                urn:smpte:ul:060e2b34.01010102.0520090b.00000000
              + LEAF + Software-Only Support Flag + Plugin capable of running without hardware support + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Accelerator +
                urn:smpte:ul:060e2b34.01010102.0520090c.00000000
              + LEAF + Hardware Accelerator Flag + Plugin capable of using hardware accelerator + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginLocators +
                urn:smpte:ul:060e2b34.01010102.0520090d.00000000
              + LEAF + Plug-In Locator Set + Specifies vector of references to web locators + AAF~Locators + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Authentication +
                urn:smpte:ul:060e2b34.01010102.0520090e.00000000
              + LEAF + Authentication Flag + Plugin supports authentication mechanism + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImplementedClass +
                urn:smpte:ul:060e2b34.01010102.0520090f.00000000
              + LEAF + Associated Metadata Definition + Specifies the metadata definition implemented by the plugin + AAF~DefinitionObject + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingInformation +
                urn:smpte:ul:060e2b34.01010101.05300000.00000000
              + NODE + Editing Information + Information about alterations to the original image stream to produce new editorial material. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingVersionInformation +
                urn:smpte:ul:060e2b34.01010101.05300100.00000000
              + NODE + Editing Version Information + Information about the version of the edit + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingDecisionInformation +
                urn:smpte:ul:060e2b34.01010101.05300200.00000000
              + NODE + Editing Decision Information + Information about editing decisions. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeType +
                urn:smpte:ul:060e2b34.01010101.05300201.00000000
              + LEAF + Default Fade Type + Specifies the default fade type for audio soft cuts + AAF~DefFadeType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingMatteInformation +
                urn:smpte:ul:060e2b34.01010101.05300300.00000000
              + NODE + Editing Matte Information + Information about editing mattes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingEventInformation +
                urn:smpte:ul:060e2b34.01010101.05300400.00000000
              + NODE + Editing Event Information + Information about editing events + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveState +
                urn:smpte:ul:060e2b34.01010101.05300401.00000000
              + LEAF + Active State + Specifies whether the device is active or not as a result of the event (Inactive = False) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTrackEditRate +
                urn:smpte:ul:060e2b34.01010102.05300402.00000000
              + LEAF + Event Track Edit Rate + Specifies the time base for edit/event units in hertz. + AAF~EditRate mxflib[:1.19]~EventEditRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeEditUnit +
                urn:smpte:ul:060e2b34.01010102.05300403.00000000
              + LEAF + Default Fade Edit Rate + Specifies the default time base for fade edit event units in hertz. + AAF~DefFadeEditUnit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventComment_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300404.00000000
              + LEAF + Event Comment + User-provided Comment Text for an event + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventComment +
                urn:smpte:ul:060e2b34.01010102.05300404.01000000
              + LEAF + Event Comment + User-provided Comment Text for an event + AAF~Comment + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditRate +
                urn:smpte:ul:060e2b34.01010102.05300405.00000000
              + LEAF + Timeline Edit Rate + Specifies the timeline rate in hertz + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexEditRate +
                urn:smpte:ul:060e2b34.01010105.05300406.00000000
              + LEAF + Index Edit Rate + Specifies the indexing rate in hertz + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingEffectInformation +
                urn:smpte:ul:060e2b34.01010101.05300500.00000000
              + NODE + Editing Effect Information + Information about editing effects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeInType +
                urn:smpte:ul:060e2b34.01010101.05300501.00000000
              + LEAF + Fade-In Type + Specifies type of audio fade in + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeOutType +
                urn:smpte:ul:060e2b34.01010101.05300502.00000000
              + LEAF + Fade-Out Type + Specifies type of audio fade out + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsTimeWarp +
                urn:smpte:ul:060e2b34.01010101.05300503.00000000
              + LEAF + Speed Change Effect Flag + Specifies whether the effect changes the perceived speed of the essence (Slow-motion, fast-motion, and freeze effects = True) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationInputCount +
                urn:smpte:ul:060e2b34.01010101.05300504.00000000
              + LEAF + Input Segment Count + Specifies the number of input segments + AAF~NumberInputs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Bypass +
                urn:smpte:ul:060e2b34.01010101.05300505.00000000
              + LEAF + Bypass + Specifies default input to play + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Operation +
                urn:smpte:ul:060e2b34.01010102.05300506.00000000
              + LEAF + Operation + Specifies the Effect or Transition used in an operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Value +
                urn:smpte:ul:060e2b34.01010102.05300507.00000000
              + LEAF + Value + Effect or Transformation Constant Control Value + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditHint +
                urn:smpte:ul:060e2b34.01010102.05300508.00000000
              + LEAF + Edit Hint + Hint provided to an interpolator for the algorithm to be used + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010106.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationDataDefinition +
                urn:smpte:ul:060e2b34.01010102.05300509.00000000
              + LEAF + Operation Data Definition + Basic essence kind resulting from the defined Operation + AAF~DataDefinition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationCategory +
                urn:smpte:ul:060e2b34.01010102.0530050a.00000000
              + LEAF + Operation Category + Specifies the Category of the Effect or Transformation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020101.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayUnits_ISO7 +
                urn:smpte:ul:060e2b34.01010102.0530050b.00000000
              + LEAF + Display Units + Specifies the displayable name of the units of a parameter + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDisplayUnits +
                urn:smpte:ul:060e2b34.01010102.0530050b.01000000
              + LEAF + Display Units + Specifies the displayable name of the units of a parameter + AAF~DisplayUnits + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BypassOverride +
                urn:smpte:ul:060e2b34.01010102.0530050c.00000000
              + LEAF + Bypass Override + Specifies default input channel number to play in a specific instance e.g input 24 + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ControlPointValue +
                urn:smpte:ul:060e2b34.01010102.0530050d.00000000
              + LEAF + Control Point Value + Effect or Transformation Value at specific time + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingWebInformation +
                urn:smpte:ul:060e2b34.01010101.05300600.00000000
              + NODE + Editing Web Information + Information about editing for web output + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BeginAnchor_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300601.00000000
              + LEAF + Begin Anchor + Specifies the HTML Anchor at which this clip starts + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BeginAnchor +
                urn:smpte:ul:060e2b34.01010102.05300601.01000000
              + LEAF + Begin Anchor + Specifies the HTML Anchor at which this clip starts + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndAnchor_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300602.00000000
              + LEAF + End Anchor + Specifies the HTML Anchor at which this clip ends + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndAnchor +
                urn:smpte:ul:060e2b34.01010102.05300602.01000000
              + LEAF + End Anchor + Specifies the HTML Anchor at which this clip ends + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingUserNotes +
                urn:smpte:ul:060e2b34.01010101.05300700.00000000
              + NODE + Editing User Notes + Information about editing user notes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorTransformInformation +
                urn:smpte:ul:060e2b34.0101010e.05310000.00000000
              + NODE + Color Transform Information + Color Transform Information + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTEssenceItems +
                urn:smpte:ul:060e2b34.0101010e.05310100.00000000
              + NODE + DMCVT Essence Items + DMCVT Essence Items + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationIdentifier +
                urn:smpte:ul:060e2b34.0101010e.05310101.00000000
              + LEAF + Application Identifier + Identifying an application and its defining document in the SMPTE ST 2094 suite + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionNumber +
                urn:smpte:ul:060e2b34.0101010e.05310102.00000000
              + LEAF + Application Version Number + The Application Version of the identified SMPTE ST 2094 application + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BackwardsVersion +
                urn:smpte:ul:060e2b34.0101010e.05310103.00000000
              + LEAF + Backwards Version + The lowest Application Version for which this metadata set is valid + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeIntervalStart +
                urn:smpte:ul:060e2b34.0101010e.05310104.00000000
              + LEAF + Time Interval Start + Start point of the portion of image essence for which the metadata set is specified, as an index + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeIntervalDuration +
                urn:smpte:ul:060e2b34.0101010e.05310105.00000000
              + LEAF + Time Interval Duration + Duration of the portion of image essence for which the metadata set is specified, as a count of index positions + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UpperLeftCorner +
                urn:smpte:ul:060e2b34.0101010e.05310106.00000000
              + LEAF + Upper Left Corner + Coordinate of the top-left pixel of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LowerRightCorner +
                urn:smpte:ul:060e2b34.0101010e.05310107.00000000
              + LEAF + Lower Right Corner + Coordinate of the bottom-right pixel of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WindowNumber +
                urn:smpte:ul:060e2b34.0101010e.05310108.00000000
              + LEAF + Window Number + Identifier of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.05310109.00000000
              + LEAF + Targeted System Display Primaries + xy chromaticity coordinates of the three primaries of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 56 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.0531010a.00000000
              + LEAF + Targeted System Display White Point Chromaticity + xy chromaticity coordinate of the targeted system display's white point + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531010b.00000000
              + LEAF + Targeted System Display Maximum Luminance + Maximum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531010c.00000000
              + LEAF + Targeted System Display Minimum Luminance + Minimum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinimumPqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010d.00000000
              + LEAF + Minimum PQ-encoded maxRGB + The lowest PQ-encoded maxRGB value of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AveragePqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010e.00000000
              + LEAF + Average PQ-encoded maxRGB + The average of the PQ-encoded maxRGB values of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaximumPqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010f.00000000
              + LEAF + Maximum PQ-encoded maxRGB + The highest PQ-encoded maxRGB value of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinimumPqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310110.00000000
              + LEAF + Minimum PQ-encoded maxRGB Offset + Offset to be added to Minimum PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AveragePqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310111.00000000
              + LEAF + Average PQ-encoded maxRGB Offset + Offset to be added to Average PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaximumPqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310112.00000000
              + LEAF + Maximum PQ-encoded maxRGB Offset + Offset to be added to Maximum PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingOffset +
                urn:smpte:ul:060e2b34.0101010e.05310113.00000000
              + LEAF + Tone Mapping Offset + Tone Mapping Offset + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingGain +
                urn:smpte:ul:060e2b34.0101010e.05310114.00000000
              + LEAF + Tone Mapping Gain + Tone Mapping Gain + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingGamma +
                urn:smpte:ul:060e2b34.0101010e.05310115.00000000
              + LEAF + Tone Mapping Gamma + Tone Mapping Gamma + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaCompensationWeight +
                urn:smpte:ul:060e2b34.0101010e.05310116.00000000
              + LEAF + Chroma Compensation Weight + Amount of chroma adjustment + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SaturationGain +
                urn:smpte:ul:060e2b34.0101010e.05310117.00000000
              + LEAF + Saturation Gain + Amount of saturation adjustment + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneDetailFactor +
                urn:smpte:ul:060e2b34.0101010e.05310118.00000000
              + LEAF + Tone Detail Factor + Contribution of the detail management function + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceLowerBound +
                urn:smpte:ul:060e2b34.0101010e.05310119.00000000
              + LEAF + Luminance Lower Bound + Encoding of a lower bound of luminance + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceUpperBound +
                urn:smpte:ul:060e2b34.0101010e.0531011a.00000000
              + LEAF + Luminance Upper Bound + Encoding of an upper bound of luminance + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceRangeSelector +
                urn:smpte:ul:060e2b34.0101010e.0531011b.00000000
              + LEAF + Luminance Range Selector + True indicates inner luminance range + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityDiskCenter +
                urn:smpte:ul:060e2b34.0101010e.0531011c.00000000
              + LEAF + Chromaticity Disk Center + Center of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityDiskRadius +
                urn:smpte:ul:060e2b34.0101010e.0531011d.00000000
              + LEAF + Chromaticity Disk Radius + Radius of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityAreaSelector +
                urn:smpte:ul:060e2b34.0101010e.0531011e.00000000
              + LEAF + Chromaticity Area Selector + True indicates the area of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SaturationGainFunction +
                urn:smpte:ul:060e2b34.0101010e.0531011f.00000000
              + LEAF + Saturation Gain Function + Sampled function, mapping a luminance based input value to a saturation scaling factor + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalWeights +
                urn:smpte:ul:060e2b34.0101010e.05310120.00000000
              + LEAF + Tone Mapping Input Signal Weights + Weights of R, G, B, and Y components + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 40 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalBlackLevelOffset +
                urn:smpte:ul:060e2b34.0101010e.05310121.00000000
              + LEAF + Tone Mapping Input Signal Black Level Offset + Used to calculate the gain of the signal as a first step in the Tone Mapping process + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalWhiteLevelOffset +
                urn:smpte:ul:060e2b34.0101010e.05310122.00000000
              + LEAF + Tone Mapping Input Signal White Level Offset + Used to calculate the gain of the signal as a second step in the Tone Mapping process + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShadowGainControl +
                urn:smpte:ul:060e2b34.0101010e.05310123.00000000
              + LEAF + Shadow Gain Control + Control for the steepness of the curve in its shadow (darker) region + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HighlightGainControl +
                urn:smpte:ul:060e2b34.0101010e.05310124.00000000
              + LEAF + Highlight Gain Control + Control for the steepness of the curve in its highlight (brighter) region + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MidToneWidthAdjustmentFactor +
                urn:smpte:ul:060e2b34.0101010e.05310125.00000000
              + LEAF + Mid-Tone Width Adjustment Factor + Control for the width of the mid-tone region of the curve + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingOutputFineTuningFunction +
                urn:smpte:ul:060e2b34.0101010e.05310126.00000000
              + LEAF + Tone Mapping Output Fine Tuning Function + Sampled function, for tone mapping + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplaySignalFormat +
                urn:smpte:ul:060e2b34.0101010e.05310127.00000000
              + LEAF + Targeted System Display Signal Format + Enumerator of the signal format of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataColorCodingWorkspace +
                urn:smpte:ul:060e2b34.0101010e.05310128.00000000
              + LEAF + Metadata Color Coding Workspace + Enumerator of the color components and quantization range + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping1 +
                urn:smpte:ul:060e2b34.0101010e.05310129.00000000
              + LEAF + Pre-Matrix Tone Mapping 1 + Sampled function for first input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping2 +
                urn:smpte:ul:060e2b34.0101010e.0531012a.00000000
              + LEAF + Pre-Matrix Tone Mapping 2 + Sampled function for second input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping3 +
                urn:smpte:ul:060e2b34.0101010e.0531012b.00000000
              + LEAF + Pre-Matrix Tone Mapping 3 + Sampled function for third input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorRemappingMatrix +
                urn:smpte:ul:060e2b34.0101010e.0531012c.00000000
              + LEAF + Color Remapping Matrix + A 3x3 matrix between tone mapping stages + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 80 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping1 +
                urn:smpte:ul:060e2b34.0101010e.0531012d.00000000
              + LEAF + Post-Matrix Tone Mapping 1 + Sampled function for first post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping2 +
                urn:smpte:ul:060e2b34.0101010e.0531012e.00000000
              + LEAF + Post-Matrix Tone Mapping 2 + Sampled function for second post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping3 +
                urn:smpte:ul:060e2b34.0101010e.0531012f.00000000
              + LEAF + Post-Matrix Tone Mapping 3 + Sampled function for third post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CenterOfEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310130.00000000
              + LEAF + Center Of Ellipse + Center position of the ellipses + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RotationAngle +
                urn:smpte:ul:060e2b34.0101010e.05310131.00000000
              + LEAF + Rotation Angle + Clockwise rotation angle with respect to the positive direction of the x-axis of the ellipses + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMajorAxisInternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310132.00000000
              + LEAF + Semi-Major Axis Internal Ellipse + Semi-major axis value of the internal ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMajorAxisExternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310133.00000000
              + LEAF + Semi-Major Axis External Ellipse + Semi-major axis value of the external ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMinorAxisExternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310134.00000000
              + LEAF + Semi-Minor Axis External Ellipse + Semi-minor axis value of the external ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OverlapProcessOption +
                urn:smpte:ul:060e2b34.0101010e.05310135.00000000
              + LEAF + Overlap Process Option + Enumerator that indicates one of the two methods of combining rendered pixels + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310136.00000000
              + LEAF + Targeted System Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RowsInTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310137.00000000
              + LEAF + Rows In Targeted System Display Actual Peak Luminance + Number of rows (M) in the Targeted System Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310138.00000000
              + LEAF + Mastering Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the mastering display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RowsInMasteringDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310139.00000000
              + LEAF + Rows In Mastering Display Actual Peak Luminance + Number of rows (M) in the Mastering Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxSCL +
                urn:smpte:ul:060e2b34.0101010e.0531013a.00000000
              + LEAF + Maximum Scene Color Component Levels + Maximum of each component of linearized RGB values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AverageMaxRGB +
                urn:smpte:ul:060e2b34.0101010e.0531013b.00000000
              + LEAF + Average MaxRGB + Average of linearized maxRGB values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistributionMaxRGBPercentages +
                urn:smpte:ul:060e2b34.0101010e.0531013c.00000000
              + LEAF + Distribution MaxRGB Percentages + First vector of DistributionMaxRGB with Integer percentage values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistributionMaxRGBPercentiles +
                urn:smpte:ul:060e2b34.0101010e.0531013d.00000000
              + LEAF + Distribution MaxRGB Percentiles + Second vector of DistributionMaxRGB with Linearized maxRGB value at given percentile + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FractionBrightPixels +
                urn:smpte:ul:060e2b34.0101010e.0531013e.00000000
              + LEAF + Fraction Bright Pixels + Fraction of pixels that contains the brightest pixel + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KneePoint +
                urn:smpte:ul:060e2b34.0101010e.0531013f.00000000
              + LEAF + Knee Point + Separation point (K_S,K_F) between the linear part and the curved part of the tone mapping function, ordered K_S,K_F + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BezierCurveAnchors +
                urn:smpte:ul:060e2b34.0101010e.05310140.00000000
              + LEAF + Bezier Curve Anchors + Intermediate anchor parameters, ordered P1 to PN-1 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorSaturationWeight +
                urn:smpte:ul:060e2b34.0101010e.05310141.00000000
              + LEAF + Color Saturation Weight + Adjusts the color saturation gain + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTSubDescriptorItems +
                urn:smpte:ul:060e2b34.0101010e.05310200.00000000
              + NODE + DMCVT SubDescriptor Items + DMCVT SubDescriptor Items + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTApplicationIdentifier +
                urn:smpte:ul:060e2b34.0101010e.05310201.00000000
              + LEAF + DMCVT Application Identifier + Identifying an application and its defining document in the SMPTE ST 2094 suite + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTApplicationVersionNumber +
                urn:smpte:ul:060e2b34.0101010e.05310202.00000000
              + LEAF + DMCVT Application Version Number + The Application Version of the identified SMPTE ST 2094 application + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTBackwardsVersion +
                urn:smpte:ul:060e2b34.0101010e.05310203.00000000
              + LEAF + DMCVT Backwards Version + The lowest Application Version for which this metadata set is valid + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.05310209.00000000
              + LEAF + DMCVT Targeted System Display Primaries + xy chromaticity coordinates of the three primaries of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 56 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.0531020a.00000000
              + LEAF + DMCVT Targeted System Display White Point Chromaticity + xy chromaticity coordinate of the targeted system display's white point + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531020b.00000000
              + LEAF + DMCVT Targeted System Display Maximum Luminance + Maximum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531020c.00000000
              + LEAF + DMCVT Targeted System Display Minimum Luminance + Minimum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplaySignalFormat +
                urn:smpte:ul:060e2b34.0101010e.05310227.00000000
              + LEAF + DMCVT Targeted System Display Signal Format + Enumerator of the signal format of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310236.00000000
              + LEAF + DMCVT Targeted System Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTRowsInTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310237.00000000
              + LEAF + DMCVT Rows In Targeted System Display Actual Peak Luminance + Number of rows (M) in the DMCVT Targeted System Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessingHistory +
                urn:smpte:ul:060e2b34.01010101.05400000.00000000
              + NODE + Processing History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400100.00000000
              + NODE + Video Compression History + Audit history of compression for video payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05400101.00000000
              + LEAF + Video Compression Algorithm + Algorithm used to compress video content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGVideoRecodingDataset +
                urn:smpte:ul:060e2b34.01010101.05400102.00000000
              + LEAF + MPEG Video Recoding Dataset + Audit history of video coding - see SMPTE327. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400200.00000000
              + NODE + Audio Compression History + Audit history of compression for audio payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UpstreamAudioCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05400201.00000000
              + LEAF + Upstream Audio Compression Algorithm + Algorithms used, bitrates used, modes used. + BB: Flag change since v8. Upstream added as name prefix because under audit history node + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioRecodingDataset +
                urn:smpte:ul:060e2b34.01010101.05400202.00000000
              + LEAF + MPEG Audio Recoding Dataset + Audio coding history as per SMPTEXXXX + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400300.00000000
              + NODE + Data Compression History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400400.00000000
              + NODE + Metadata Compression History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferHistory +
                urn:smpte:ul:060e2b34.01010102.05401000.00000000
              + NODE + Transfer History + History of transfers occuring in the process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageTransferHistory +
                urn:smpte:ul:060e2b34.01010102.05401001.00000000
              + NODE + Image Transfer History + History of image transfers occuring in the process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownDirection +
                urn:smpte:ul:060e2b34.01010102.05401001.01000000
              + LEAF + Film-to-Video Transfer Direction + Specifies the history of the direction of transfer + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownKind +
                urn:smpte:ul:060e2b34.01010102.05401001.02000000
              + LEAF + Film-to-Video Transfer Kind + Specifies the history of the kind of pulldown (3 2 525-line, 625-line, etc.) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010b.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhaseFrame +
                urn:smpte:ul:060e2b34.01010102.05401001.03000000
              + LEAF + Film to Video Transfer Phase + Specifies the history of the position of the starting frame in the pulldown sequence (A is 0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Relational +
                urn:smpte:ul:060e2b34.01010101.06000000.00000000
              + NODE + RELATIONAL + Class 6 is reserved for information about the relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericRelationships +
                urn:smpte:ul:060e2b34.01010101.06010000.00000000
              + NODE + Generic Relationships + Specifies relationships which are generic between items + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceAndMetadataRelationships +
                urn:smpte:ul:060e2b34.01010101.06010100.00000000
              + NODE + Essence and Metadata Relationships + Type of relation (e.g., is part of, is an item of [program, series], remix, remake, ...) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceToEssenceRelationships +
                urn:smpte:ul:060e2b34.01010101.06010101.00000000
              + NODE + Essence to Essence Relationships + The relationship value in terms of Parent of; Child of; Item of; Excerpt of; Version of; Compilation of; etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TeletextSubtitlesFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.01000000
              + LEAF + Teletext Subtitles Flag + Flag indicating that teletext subtitles exist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubtitleDatafileFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.02000000
              + LEAF + Subtitle Datafile Flag + Flag indicating that a subtitle datfile exists. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClosedCaptionSubtitlesFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.03000000
              + LEAF + Closed Caption Subtitles Flag + Flag indicating that closed caption subtitles exist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToEssenceRelationships +
                urn:smpte:ul:060e2b34.01010101.06010102.00000000
              + NODE + Metadata to Essence Relationships + The relationship between metadata and essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampleIndex +
                urn:smpte:ul:060e2b34.01010102.06010102.01000000
              + LEAF + Sample Index + Stream of byte offsets to individual samples in the essence data + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceContainerFormat +
                urn:smpte:ul:060e2b34.01010109.06010102.02000000
              + LEAF + Source Container Format + Format of essence container prior to encryption as a UL + DMS-Crypto~SourceEssenceContainerLabel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceKey +
                urn:smpte:ul:060e2b34.01010109.06010102.03000000
              + LEAF + Source Key + Key of essence triplet prior to encryption + DCP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToMetadataRelationships +
                urn:smpte:ul:060e2b34.01010101.06010103.00000000
              + NODE + Metadata to Metadata Relationships + The relationship between metadata and metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourcePackageID +
                urn:smpte:ul:060e2b34.01010102.06010103.01000000
              + LEAF + Source Package ID + Specifies the reference to a precursor + AAF~SourceID mxflib~SourcePackageID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceTrackID +
                urn:smpte:ul:060e2b34.01010102.06010103.02000000
              + LEAF + Source Track ID + Specifies the track within the referenced precursor + AAF~SourceMobSlotID mxflib~SourceTrackID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeScope +
                urn:smpte:ul:060e2b34.01010102.06010103.03000000
              + LEAF + Relative Scope + Specifies the the number of nested scopes that must be passed through to find the reference metadata + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeTrack +
                urn:smpte:ul:060e2b34.01010102.06010103.04000000
              + LEAF + Relative Track + Specifies the number of preceeding slots that must be passed through to find the reference slot within the specified reletive scope. + AAF~RelativeSlot + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedTrackID +
                urn:smpte:ul:060e2b34.01010105.06010103.05000000
              + LEAF + Linked Track ID + Link to (i.e. value of) the Track ID of the Track in this Package to which the Essence Descriptor applies. + AAF[1.12:]~LinkedSlotID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelID +
                urn:smpte:ul:060e2b34.01010107.06010103.06000000
              + LEAF + Channel ID + Specifies the channel within the referenced precursor + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelIDs +
                urn:smpte:ul:060e2b34.01010107.06010103.07000000
              + LEAF + Channel IDs + Specifies an ordered array of channels within the referenced precursor + AAF[1.1:] + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonoSourceTrackIDs +
                urn:smpte:ul:060e2b34.01010108.06010103.08000000
              + LEAF + Mono Source Track IDs + Specifies an ordered array of Tracks within the referenced precursor + AAF[1.1:]~MonoSourceSlotIDs + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DynamicSourcePackageID +
                urn:smpte:ul:060e2b34.01010109.06010103.09000000
              + LEAF + Dynamic Source Package ID + Specifies the package containing an essence event + AAF[1.3:] ASPA + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DynamicSourceTrackIDs +
                urn:smpte:ul:060e2b34.01010109.06010103.0a000000
              + LEAF + Dynamic Source Track IDs + Specifies one or more tracks within the referenced precursor containing an essence event + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceIndex +
                urn:smpte:ul:060e2b34.01010109.06010103.0b000000
              + LEAF + Source Index + Specifies a position or location within the referenced precursor + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceSpecies +
                urn:smpte:ul:060e2b34.01010109.06010103.0c000000
              + LEAF + Source Species + Specifies one or more metadata types to be extracted from the referenced precursor + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceValue +
                urn:smpte:ul:060e2b34.01010109.06010103.0d000000
              + LEAF + Source Value + Container for actual data of the referenced precursor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimebaseReferenceTrackID +
                urn:smpte:ul:060e2b34.0101010c.06010103.0e000000
              + LEAF + Timebase Reference Track ID + Specifies the value of the Track ID of the target Track in the Material Package that provides the Edit Rate. + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventIDBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.0f000000
              + LEAF + ASM Event ID Batch + An unordered batch of ASM event identifiers. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 8+4n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.10000000
              + LEAF + ASM Link Encryption Key Batch + An unordered batch of link encryption key ID, encryption key, expiration time, and attribute data. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030400.00000000 + 8+(32*n) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyIDBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.11000000
              + LEAF + ASM Link Encryption Key ID Batch + An unordered batch of ASM encryption key identifiers. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 8+4n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectToObjectRelationships +
                urn:smpte:ul:060e2b34.01010101.06010104.00000000
              + NODE + Object to Object Relationships + The relationship value in terms of Parent of; Child of; Item of; + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferences +
                urn:smpte:ul:060e2b34.01010102.06010104.01000000
              + NODE + Weak References + References to Uniquely Identified Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectClass +
                urn:smpte:ul:060e2b34.01010102.06010104.01010000
              + LEAF + Object Class + Specifies a reference to the definition of a class of object + AAF~ObjClass + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerFormat +
                urn:smpte:ul:060e2b34.01010102.06010104.01020000
              + LEAF + Essence Container Format + Specifies a reference to the format of Container of Essence Data + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainerFormat +
                urn:smpte:ul:060e2b34.01010105.06010104.01020100
              + LEAF + Essence Container Format + Specifies a reference to the format of Container of Essence Data + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Codec +
                urn:smpte:ul:060e2b34.01010102.06010104.01030000
              + LEAF + Codec Definition + Specifies a reference to the codec used to create Essence Data. Listed in SMPTE RP224 + AAF~CodecDefinition + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010b00.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDefinition +
                urn:smpte:ul:060e2b34.01010105.06010104.01030100
              + LEAF + Codec Definition + UL to identify a codec compatible with this Essence Container. Listed in SMPTE RP224 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDefinitionReference +
                urn:smpte:ul:060e2b34.01010102.06010104.01040000
              + LEAF + Parameter Definition + Specifies a reference to the definition of a Parameter + AAF~Definition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Interpolation +
                urn:smpte:ul:060e2b34.01010102.06010104.01050000
              + LEAF + Interpolation + Specifies a reference to the definition of the interpolation to be used + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010500.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterType +
                urn:smpte:ul:060e2b34.01010102.06010104.01060000
              + LEAF + Parameter Data Type + Specifies a reference to the definition of the type of a parameter + AAF~Type + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileDescriptorClass +
                urn:smpte:ul:060e2b34.01010102.06010104.01070000
              + LEAF + Codec Essence Descriptor + Specifies a reference to the file essence descriptor used by the codec + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryPackage +
                urn:smpte:ul:060e2b34.01010104.06010104.01080000
              + LEAF + Primary Package + Specifies a reference to the primary package in this file + AAF[1.2:]~PrimaryMob ASPA[:0.8]~PrimaryMob + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataType +
                urn:smpte:ul:060e2b34.01010107.06010104.01090000
              + LEAF + KLV Data Type + Specifies a reference to the definition of the type of a KLV packet + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompositionRendering +
                urn:smpte:ul:060e2b34.01010108.06010104.010a0000
              + LEAF + Composition Rendering + Specifies a reference to a rendering of a composition + AAF[1.1:]~Rendering + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BaseClass +
                urn:smpte:ul:060e2b34.0101010c.06010104.010b0000
              + LEAF + Base Class + Class identifier of the immediate superclass defined in an MXF specification that this object extends. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferences +
                urn:smpte:ul:060e2b34.01010102.06010104.02000000
              + NODE + Strong References + References to a Contained Object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentStorageObject +
                urn:smpte:ul:060e2b34.01010102.06010104.02010000
              + LEAF + Content + Specifes a reference to the packages and essence in a file + ASPA[0.8]~Content AAF~Content mxflib[:1.19]~ContentStorage + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dictionary +
                urn:smpte:ul:060e2b34.01010102.06010104.02020000
              + LEAF + Dictionary + Specifies a reference to the Dictionary of Definitions Used in Container + ASPA[0.8]~Dictionary AAF~Dictionary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceDescription +
                urn:smpte:ul:060e2b34.01010102.06010104.02030000
              + LEAF + Essence Description + Specifies a reference to a format descriptor for the essence + AAF~EssenceDescription mxflib[:1.19]~Descriptor + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02040000
              + LEAF + Segment + Specifies a reference to a segment of a track + AAF~Segment mxflib[:1.19]~Sequence + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransitionOperation +
                urn:smpte:ul:060e2b34.01010102.06010104.02050000
              + LEAF + Transition Effect + Specifies a reference to the effect used in a transition + AAF~OperationGroup + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020500.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rendering +
                urn:smpte:ul:060e2b34.01010102.06010104.02060000
              + LEAF + Effect Rendering + Specifies a reference to pre-rendered results of an operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InputSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02070000
              + LEAF + Input Segment + Specifies the input essence whose timebase is to be converted + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StillFrame +
                urn:smpte:ul:060e2b34.01010102.06010104.02080000
              + LEAF + Still Frame + Specifies a reference to a thumbnail representation of the essence + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SelectedSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02090000
              + LEAF + Selected + Specifies the segment selected by the editor + AAF~Selected + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSource +
                urn:smpte:ul:060e2b34.01010102.06010104.020a0000
              + LEAF + Annotation + Specifies a reference to an annotation which is stored as essence + AAF~Annotation + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerInfo +
                urn:smpte:ul:060e2b34.01010102.06010104.020b0000
              + LEAF + Manufacturer Information Object + Specifies a reference to an object that provides information about the manufacturer + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveFrameworkObject +
                urn:smpte:ul:060e2b34.01010105.06010104.020c0000
              + LEAF + Descriptive Metadata Framework + Strong Reference to the Descriptive Metadata Framework + AAF[1.1:]~Description ASPA[:0.8]~DMFramework mxflib[:1.19]~DMFramework + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05021f00.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextObject +
                urn:smpte:ul:060e2b34.01010109.06010104.020d0000
              + LEAF + Cryptographic Context Object + A strong reference to the cryptographic context + DMS-Crypto~ContextSR + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlugInObjects +
                urn:smpte:ul:060e2b34.0101010c.06010104.020e0000
              + LEAF + Application Plug-In Batch + A batch of strong references to Application Plug-In Objects + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkerObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.020f0000
              + LEAF + Package Marker Object + A strong reference to a Package Marker object + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022e00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageTimelineMarkerObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02100000
              + LEAF + Package Timeline Marker Object + A strong reference to a Package Marker object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022e00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02110000
              + LEAF + Register Administration Object + A strong reference to one concrete class of the Register Administration object base class. + SMPTE ST 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryAdministrationObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02120000
              + LEAF + Register Entry Administration Object + A strong reference to one concrete subclass of the EntryAdministration base class object. + SMPTE ST 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022d00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencingToDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010104.06010104.02400000
              + NODE + Strong Referencing to Descriptive Metadata Sets + References to a Contained Object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSet +
                urn:smpte:ul:060e2b34.01010105.06010104.02400500
              + LEAF + Group Set + A strong reference to a Group set + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BankDetailsSet +
                urn:smpte:ul:060e2b34.01010105.06010104.02401c00
              + LEAF + Bank Details Set + A strong reference to a Bank Details set + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureFormatObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02401d00
              + LEAF + Image Format Set + A strong reference to the Image Format set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessingObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402000
              + LEAF + Processing Set + A strong reference to the Processing set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402100
              + LEAF + Project Set + A strong reference to the Project set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactsListObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402200
              + LEAF + Contacts List Set + A strong reference to the Contacts List set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueWordsSets +
                urn:smpte:ul:060e2b34.01010105.06010104.02402300
              + NODE + Cue Words Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationCueWordsObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402301
              + LEAF + Annotation Cue Words Set + A strong reference to a Cue Words set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCueWordsObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402302
              + LEAF + Shot Cue Words Set + A strong reference to a Cue Words set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencesBatches +
                urn:smpte:ul:060e2b34.01010102.06010104.03000000
              + NODE + Weak References Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDataDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.03010000
              + LEAF + Codec Essence Kinds + Specifies references to the basic essence kinds supported by the codec + AAF~DataDefinitions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationParametersDefined +
                urn:smpte:ul:060e2b34.01010102.06010104.03020000
              + LEAF + Operation Parameters + Specifies references to the paramater definitions that may be used with the effect + AAF~ParametersDefined + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05030e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010104.06010104.03030000
              + LEAF + Descriptive Metadata Sets + Specifies unordered references to descriptive metadata sets + SMPTE 377M + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataParentProperties +
                urn:smpte:ul:060e2b34.01010107.06010104.03040000
              + LEAF + KLV Data Parent Properties + Specifies an unordered set of references to the definitions of properties which may contain this KLVData + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TaggedValueParentProperties +
                urn:smpte:ul:060e2b34.01010107.06010104.03050000
              + LEAF + Tagged Value Parent Properties + Specifies an unordered set of references to the definitions of properties which may contain this Tagged Value + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericPayloads +
                urn:smpte:ul:060e2b34.0101010c.06010104.03060000
              + LEAF + Generic Payloads + A Batch of Universal Labels of all the Generic Payloads used in this file. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencingToDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03400000
              + NODE + Weak Referencing to Descriptive Metadata Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantRoleSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03401300
              + NODE + Participant Role Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardParticipants +
                urn:smpte:ul:060e2b34.01010105.06010104.03401301
              + LEAF + Award Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Awards + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractParticipants +
                urn:smpte:ul:060e2b34.01010105.06010104.03401302
              + LEAF + Contract Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Contract + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationParticipants +
                urn:smpte:ul:060e2b34.01010107.06010104.03401303
              + LEAF + Annotation Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Annotation + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionsDescriptionParticipantSets +
                urn:smpte:ul:060e2b34.01010108.06010104.03401304
              + LEAF + Captions Description Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Captions Description + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Persons +
                urn:smpte:ul:060e2b34.01010105.06010104.03401400
              + LEAF + Person Sets + An unordered list of generalized weak (global) references to Person sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03401500
              + NODE + Organization Sets + An unordered list of generalized weak (global) references to Organization sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantOrganizations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401501
              + LEAF + Participant Organization Sets + An unordered list of generalized weak (global) references to Organization sets for Participant Roles + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonOrganizations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401502
              + LEAF + Person Organization Sets + An unordered list of generalized weak (global) references to Organization sets for Persons + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401600
              + LEAF + Location Sets + An unordered list of generalized weak (global) references to Location sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencesArrays +
                urn:smpte:ul:060e2b34.01010102.06010104.04000000
              + NODE + Weak References Arrays + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DegradeTo +
                urn:smpte:ul:060e2b34.01010102.06010104.04010000
              + LEAF + Degraded Effects + Specifies a vector of references to the effect definitions that may be substituted if the specified effect is not available + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataSetReferences +
                urn:smpte:ul:060e2b34.01010104.06010104.04020000
              + LEAF + Descriptive Metadata Set References + Specifies ordered weak references to descriptive metadata sets + SMPTE 377M + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesBatches +
                urn:smpte:ul:060e2b34.01010102.06010104.05000000
              + NODE + Strong References Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Packages +
                urn:smpte:ul:060e2b34.01010102.06010104.05010000
              + LEAF + Packages + Specifies a unordered set of references to Packages + AAF~Mobs mxflib~Packages + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceDataObjects +
                urn:smpte:ul:060e2b34.01010102.06010104.05020000
              + LEAF + Essence Data + Specifies a unordered set of references to Essence Data + AAF~EssenceData mxflib[:1.19]~EssenceContainerData + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05030000
              + LEAF + Operation Definitions + Specifies a unordered set of references to Operation Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05040000
              + LEAF + Parameter Definitions + Specifies a unordered set of references to Parameter Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05050000
              + LEAF + Data Definitions + Specifies a unordered set of references to Data Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05060000
              + LEAF + Plug-In Definitions + Specifies a unordered set of references to Plugin Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050a00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05070000
              + LEAF + Codec Definitions + Specifies a unordered set of references to Codec Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05080000
              + LEAF + Container Definitions + Specifies a unordered set of references to Container Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterpolationDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05090000
              + LEAF + Interpolation Definitions + Specifies a unordered set of references to Interpolation Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataDefinitions +
                urn:smpte:ul:060e2b34.01010107.06010104.050a0000
              + LEAF + KLV Data Definitions + Specifies a unordered set of references to KLV Data Definitions + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050d00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TaggedValueDefinitions +
                urn:smpte:ul:060e2b34.01010107.06010104.050b0000
              + LEAF + Tagged Value Definitions + Specifies a unordered set of references to Tagged Value Definitions + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesToDescriptiveMetadataBatches +
                urn:smpte:ul:060e2b34.01010104.06010104.05400000
              + NODE + Strong References to Descriptive Metadata Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitlesObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400400
              + LEAF + Titles Sets + An unordered list of strong references to Titles sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupRelationshipObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400500
              + LEAF + Group Sets + An unordered list of strong references to Group sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400600
              + LEAF + Identification Sets + An unordered list of strong references to Identification sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicItemSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05400700
              + LEAF + Episodic Item Sets + An unordered list of strong references to Episodic Item sets + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandingObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400800
              + LEAF + Branding Sets + An unordered list of strong references to Branding sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400900
              + LEAF + Event Sets + An unordered list of strong references to Event sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublicationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400a00
              + LEAF + Publication Sets + An unordered list of strong references to Publication sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400b00
              + LEAF + Award Sets + An unordered list of strong references to Award sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionsDescriptionObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400c00
              + LEAF + Caption Description Sets + An unordered list of strong references to Caption Description sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400d00
              + LEAF + Annotation Sets + An unordered list of strong references to Annotation sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAnnotationObjects +
                urn:smpte:ul:060e2b34.01010108.06010104.05400d01
              + LEAF + Event Annotation Sets + An unordered list of strong references to Annotation sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e00
              + NODE + Setting Period Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionSettingPeriodObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e01
              + LEAF + Production Setting Period Sets + An unordered list of strong references to Setting Period sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneSettingPeriodObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e02
              + LEAF + Scene Setting Period Sets + An unordered list of strong references to Setting Period sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400f00
              + LEAF + Scripting Sets + An unordered list of strong references to Scripting Metadata sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401000
              + LEAF + Classification Sets + An unordered list of strong references to Classification sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401100
              + NODE + Shot Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneShotObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401101
              + LEAF + Scene Shot Sets + An unordered list of strong references to Shot sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipShotObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401102
              + LEAF + Clip Shot Sets + An unordered list of strong references to Shot sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyPointObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401200
              + LEAF + Key Point Sets + An unordered list of strong references to Key Point sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401300
              + LEAF + Shot Participant Role Sets + An unordered list of strong references to ParticipantRole sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401400
              + LEAF + Shot Person Sets + An unordered list of one or more strong references to Person sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401500
              + LEAF + Organization Sets + An unordered list of one or more strong references to Organization sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401600
              + LEAF + Shot Location Sets + An unordered list of strong references to Location sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401700
              + LEAF + Address Sets + An unordered list of strong references to Address sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CommunicationsObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401800
              + LEAF + Communication Sets + An unordered list of strong references to Communications sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401900
              + LEAF + Contract Sets + An unordered list of strong references to Contract sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401a00
              + LEAF + Rights Sets + An unordered list of strong references to Rights sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentsSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401b00
              + LEAF + Payments Sets + An unordered list of strong references to Payments sets + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceParametersObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401e00
              + LEAF + Device Parameters Sets + An unordered list of strong references to Device Parameters sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameValueSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f00
              + NODE + Name-Value Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f01
              + LEAF + Classification Name-Value Sets + An unordered list of strong references to Name-Value sets (for categorising) + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f02
              + LEAF + Contact Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceParametersNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f03
              + LEAF + Device Parameter Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressNameValueObjects +
                urn:smpte:ul:060e2b34.01010107.06010104.05401f04
              + LEAF + Address Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410000
              + NODE + Text-Based Descriptive Metadata Sets + Text-Based Descriptive Metadata Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedObject +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410100
              + LEAF + Text-Based Object + Instance UID of the instance of a Text-based Object. This may be a Generic Stream Text-based Set, a UTF-8 Text-based Set or a UTF-16 Text-based Set. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022a00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesArrays +
                urn:smpte:ul:060e2b34.01010102.06010104.06000000
              + NODE + Strong References Arrays + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Choices +
                urn:smpte:ul:060e2b34.01010102.06010104.06010000
              + LEAF + Available Representations + Specifies a vector of references to available representations of the same original essence + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InputSegments +
                urn:smpte:ul:060e2b34.01010102.06010104.06020000
              + LEAF + Input Segments + Specifies a vector of references to the input segments used of produce the effect or operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locators +
                urn:smpte:ul:060e2b34.01010102.06010104.06030000
              + LEAF + Essence Locators + Specifies a vector of references to essence locators + AAF~Locator mxflib[:1.19]~Locators + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationList +
                urn:smpte:ul:060e2b34.01010102.06010104.06040000
              + LEAF + Identification List + Specifies a vector of references to modification identifiers + ASPA[0.8] AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageTracks +
                urn:smpte:ul:060e2b34.01010102.06010104.06050000
              + LEAF + Package Tracks + Specifies a vector of references to tracks + AAF~Slots mxflib[:1.19]~Tracks + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PointList +
                urn:smpte:ul:060e2b34.01010102.06010104.06060000
              + LEAF + Control Point List + Specifies a vector of references to time-specific operation control values + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NestedScopeTracks +
                urn:smpte:ul:060e2b34.01010102.06010104.06070000
              + LEAF + Nested Scope Tracks + Specifies a vector of references to segments + AAF~Slots + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateSegments +
                urn:smpte:ul:060e2b34.01010102.06010104.06080000
              + LEAF + Alternates + Specifies a vector of references to alternate segments available to the editor + AAF~Alternates + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentObjects +
                urn:smpte:ul:060e2b34.01010102.06010104.06090000
              + LEAF + Components + Specifies a vector of references to the clips and transitions in the sequence + AAF~Components mxflib[:1.19]~StructuralComponents + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Parameters +
                urn:smpte:ul:060e2b34.01010102.06010104.060a0000
              + LEAF + Parameters + Specifies a vector of an unordered set of references to the effect or operation parameters + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060a00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileDescriptors +
                urn:smpte:ul:060e2b34.01010104.06010104.060b0000
              + LEAF + File Descriptors + Specifies a vector of an ordered set of references to File Descriptor sets + AAF[1.12:] ASPA[:0.8] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060b00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataServerLocators +
                urn:smpte:ul:060e2b34.01010105.06010104.060c0000
              + LEAF + Metadata Server Locators + Specifies a vector of an ordered set of references to Locators for metadata servers + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialLocators +
                urn:smpte:ul:060e2b34.01010105.06010104.060d0000
              + LEAF + Related Material Locators + Specifies a vector of an ordered set of references to Locators for related material of any kind + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingLocators +
                urn:smpte:ul:060e2b34.01010108.06010104.060e0000
              + LEAF + Scripting Locators + Specifies a vector of an ordered set of references to Locators for scripting material of any kind + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UnknownBWFChunks +
                urn:smpte:ul:060e2b34.01010108.06010104.060f0000
              + LEAF + Unknown BWF Chunks + Specifies an ordered vector of references to RIFF chunks containing data extracted from a BWF file + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060c00.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubDescriptors +
                urn:smpte:ul:060e2b34.01010109.06010104.06100000
              + LEAF + Sub-descriptors + Specifies a vector of an ordered set of references to SubDescriptor sets + AAF[1.2:] AAF[:1.13] ASPA + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06110000
              + LEAF + Register Entry Array + Array of strong references to Entry objects. The sequence of entries shall be according to ascending order of their UL Item Designator values. For the ordering, the most significant byte shall be byte 9 of the Universal Label, the least significant byte shall be byte 16 of the Universal Label. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06120000
              + LEAF + Register Administration Array + Strong reference to one concrete class of Register Administration object base class. + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationInformationArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06130000
              + LEAF + Application Information Array + This field is an informative listing of some known applications that use a particular data element. + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterChildEntryArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06140000
              + LEAF + Register Child Entry Array + Array of strong references to Entry objects. The sequence of entries shall be according to ascending order of their UL Item Designator values. For the ordering, the most significant byte shall be byte 9 of the Universal Label, the least significant byte shall be byte 16 of the Universal Label. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToObjectRelationships +
                urn:smpte:ul:060e2b34.01010101.06010105.00000000
              + NODE + Metadata to Object Relationships + The relationship between metadata and an object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceToObjectRelationships +
                urn:smpte:ul:060e2b34.01010102.06010106.00000000
              + NODE + Essence to Object Relationships + The relationship between metadata and an object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedPackageID +
                urn:smpte:ul:060e2b34.01010102.06010106.01000000
              + LEAF + Linked Package ID + Specifes a reference to a package associated with Essence Data + AAF~MobID mxflib[:1.19]~LinkedPackageUID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncryptedTrackFileID +
                urn:smpte:ul:060e2b34.01010109.06010106.02000000
              + LEAF + Encrypted Track File ID + The identifier of the AS-DCP track file containing this triplet + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextLink +
                urn:smpte:ul:060e2b34.01010109.06010106.03000000
              + LEAF + Cryptographic Context Link + Links to the cryptographic context used for data encryption + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDictionaryToMetadataRelationships +
                urn:smpte:ul:060e2b34.01010102.06010107.00000000
              + NODE + Object Dictionary to Metadata Relationships + The relationship between dictionary definitions and the structure of the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParentClass +
                urn:smpte:ul:060e2b34.01010102.06010107.01000000
              + LEAF + Parent Class + Specifies a reference to the class definition of the parent + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Properties +
                urn:smpte:ul:060e2b34.01010102.06010107.02000000
              + LEAF + Properties + Specifies an unordered set of references to properties that are defined by the class + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050b00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsConcrete +
                urn:smpte:ul:060e2b34.01010102.06010107.03000000
              + LEAF + Is Concrete + Specifies that the class definition may be used to create a concrete instance (May be used = true) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyType +
                urn:smpte:ul:060e2b34.01010102.06010107.04000000
              + LEAF + Property Type + Specifies the data type defined for the key + AAF~Type + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalIdentification +
                urn:smpte:ul:060e2b34.01010102.06010107.05000000
              + LEAF + Local ID + Specifies a local identifier used by the container format to identity a property + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsUniqueIdentifier +
                urn:smpte:ul:060e2b34.01010102.06010107.06000000
              + LEAF + Is Unique Identifier + Specifies that the property defined by this item contains a unique identifier (contains Identifier = true) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010107.07000000
              + LEAF + Class Definitions + Specifies a set of unordered references to the Class Definition objects that define the objects that are used in the container + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TypeDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010107.08000000
              + LEAF + Type Definitions + Specifies a set of unordered references to the Type Definition objects that define the data types that are used in the container + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050c00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferencedType +
                urn:smpte:ul:060e2b34.01010102.06010107.09000000
              + LEAF + Target Class of Strong Reference + Specifies a reference to the target class of a Strong Reference type + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencedType +
                urn:smpte:ul:060e2b34.01010102.06010107.0a000000
              + LEAF + Target Class of Weak Reference + Specifies a reference to the target class of a Weak Reference type + AAF~ReferencedType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0b000000
              + LEAF + Enumeration Underlying Integer Type + Specifies the underlying type of an integer enumeration type + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedArrayElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0c000000
              + LEAF + Fixed Array Element Type + Specifies a reference to the underlying type used in the fixed array type + AAF~ElementType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VariableArrayElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0d000000
              + LEAF + Variable Array Element Type + Specifies a reference to the underlying type used in the variable array type + AAF~ElementType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SetElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0e000000
              + LEAF + Set Element Type + Specifies a reference to the underlying type used in an unordered set type + AAF~ElementType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StringElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0f000000
              + LEAF + String Element Type + Specifies a reference to the underlying character or integer type used in a string type + AAF~ElementType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.10000000
              + LEAF + Stream Element Type + Specifies a reference to the underlying character or integer type used in a stream type + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberTypes +
                urn:smpte:ul:060e2b34.01010102.06010107.11000000
              + LEAF + Member Types + Specifies a vector to an ordered array of references to the types of the members in the record type + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RenamedType +
                urn:smpte:ul:060e2b34.01010102.06010107.12000000
              + LEAF + Renamed Type + Specifies a reference to the underlying type of a renamed type + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionIdentification +
                urn:smpte:ul:060e2b34.01010102.06010107.13000000
              + LEAF + MetaDefinition Identification + Specifies the unique identifier for the item being defined + AAF~Identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DictionaryDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010102.06010107.14000000
              + LEAF + Dictionary Description + Specifies a readable description of a dictionary definition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionDescription +
                urn:smpte:ul:060e2b34.01010102.06010107.14010000
              + LEAF + MetaDefinition Description + Provides an explanation of the use of the item being defined + AAF~Description + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTagEntries +
                urn:smpte:ul:060e2b34.01010105.06010107.15000000
              + LEAF + Local Tag Entries + Specifies an unordered batch of local tag/UID pairs used to map UIDs to the local tags of a local set. + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootMetaDictionary +
                urn:smpte:ul:060e2b34.0101010a.06010107.16000000
              + LEAF + Root Meta Dictionary + Specifies a reference to a collection of class, type and property definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022700.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootPreface +
                urn:smpte:ul:060e2b34.0101010a.06010107.17000000
              + LEAF + Root Preface + Specifies a reference to the Preface object + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootObjectDirectory +
                urn:smpte:ul:060e2b34.0101010a.06010107.18000000
              + LEAF + Root Object Directory + Specifies a reference to a directory of Object locations + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootFormatVersion +
                urn:smpte:ul:060e2b34.0101010a.06010107.19000000
              + LEAF + Root Format Version + Specifies the underlying reference structure of the Root Object + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootExtensions +
                urn:smpte:ul:060e2b34.0101010d.06010107.1a000000
              + LEAF + Root Extensions + References the Extension Schemes that are used in the file + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtensionSchemeID +
                urn:smpte:ul:060e2b34.0101010d.06010107.1b000000
              + LEAF + Extension Scheme ID + Globally unique identification of the ExtensionScheme + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SymbolSpaceURI +
                urn:smpte:ul:060e2b34.0101010d.06010107.1c000000
              + LEAF + Symbol Space URI + Namespace URI for the Extension Scheme + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreferredPrefix +
                urn:smpte:ul:060e2b34.0101010d.06010107.1d000000
              + LEAF + Preferred Prefix + Preferred namespace tag when SMPTE ST 2001-1 Reg-XML encoding is used + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtensionDescription +
                urn:smpte:ul:060e2b34.0101010d.06010107.1e000000
              + LEAF + Extension Description + Description of the Extension Scheme + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitions +
                urn:smpte:ul:060e2b34.0101010d.06010107.1f000000
              + LEAF + Meta-Definitions + References all the MetaDefinitions in this Extension Scheme when they are contained in the MXF file + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProperty +
                urn:smpte:ul:060e2b34.0101010d.06010107.20000000
              + LEAF + Original Property + Specifies the original definition of the reused Property + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementOf +
                urn:smpte:ul:060e2b34.0101010d.06010107.21000000
              + LEAF + Element Of + References the ExtendibleEnumerations in which this element is known to be used + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberOf +
                urn:smpte:ul:060e2b34.0101010d.06010107.22000000
              + LEAF + Member Of + Specified the class in which this property may be present + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedProductionMaterial +
                urn:smpte:ul:060e2b34.01010101.06020000.00000000
              + NODE + Related Production Material + Related production material + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramSupportMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020100.00000000
              + LEAF + Program Support Material Reference + eg printed educational material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdvertisingMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020200.00000000
              + LEAF + Advertising Material Reference + eg printed advertising material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramCommercialMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020300.00000000
              + LEAF + Program Commercial Material Reference + eg. Mugs, T-shirts, recordings + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedProductionContent +
                urn:smpte:ul:060e2b34.01010103.06030000.00000000
              + NODE + Related Production Content + Related content from the Production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedTextualContent +
                urn:smpte:ul:060e2b34.01010103.06030500.00000000
              + NODE + Related Textual Content + Related contetn of a textual nature - e.g. scripts and transcripts. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionScriptReference_ISO7 +
                urn:smpte:ul:060e2b34.01010103.06030501.00000000
              + LEAF + Production Script Reference + A descriptive reference to the production script used in making the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionScriptReference +
                urn:smpte:ul:060e2b34.01010103.06030501.01000000
              + LEAF + Production Script Reference + A descriptive reference to the production script used in making the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TranscriptReference_ISO7 +
                urn:smpte:ul:060e2b34.01010103.06030502.00000000
              + LEAF + Transcript Reference + A descriptive reference to a transcript of speech in the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TranscriptReference +
                urn:smpte:ul:060e2b34.01010103.06030502.01000000
              + LEAF + Transcript Reference + A descriptive reference to a transcript of speech in the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamAndStorageRelationships +
                urn:smpte:ul:060e2b34.01010101.06080000.00000000
              + NODE + Stream and Storage Relationships + Relationships between data in streams and persistent storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamRelationships +
                urn:smpte:ul:060e2b34.01010101.06080100.00000000
              + NODE + Stream Relationships + Relationships between data in streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContinuityCounts +
                urn:smpte:ul:060e2b34.01010102.06080101.00000000
              + NODE + Continuity Counts + Defines packet etc. sequences + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockContinuityCount +
                urn:smpte:ul:060e2b34.01010102.06080101.01000000
              + LEAF + Block Continuity Count + Modulo 65536 count + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionalRelationships +
                urn:smpte:ul:060e2b34.01010102.06080102.00000000
              + NODE + Stream Positional Relationships + Information to indicate the position of a packet in a stream of packets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt8 +
                urn:smpte:ul:060e2b34.01010102.06080102.01000000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt16 +
                urn:smpte:ul:060e2b34.01010104.06080102.01010000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt32 +
                urn:smpte:ul:060e2b34.01010104.06080102.01020000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BodyOffset +
                urn:smpte:ul:060e2b34.01010104.06080102.01030000
              + LEAF + Body Offset + Byte offset of the start of the Essence Container segment in the Partition, relative to the start of the Essence Container + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageRelationships +
                urn:smpte:ul:060e2b34.01010101.06080200.00000000
              + NODE + Storage Relationships + Relationships between data in persistent storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsContiguous +
                urn:smpte:ul:060e2b34.01010101.06080201.00000000
              + LEAF + Contiguous Data Flag + Specifies if the data is stored in contiguous bytes (False=0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageOffsets +
                urn:smpte:ul:060e2b34.01010102.06080202.00000000
              + NODE + Storage Offsets + Memory offset between current location and desired location + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToMetadata_Int32 +
                urn:smpte:ul:060e2b34.01010104.06080202.01000000
              + LEAF + Offset to Metadata + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToMetadata +
                urn:smpte:ul:060e2b34.01010104.06080202.01010000
              + LEAF + Offset to Metadata + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToIndexTable_Int32 +
                urn:smpte:ul:060e2b34.01010104.06080202.02000000
              + LEAF + Offset to Index Table + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToIndexTable +
                urn:smpte:ul:060e2b34.01010104.06080202.02010000
              + LEAF + Offset to Index Table + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataRelationships +
                urn:smpte:ul:060e2b34.01010104.06090000.00000000
              + NODE + Data Relationships + Generic Relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDataRelationships +
                urn:smpte:ul:060e2b34.01010104.06090200.00000000
              + NODE + Local Data Relationships + Generic Relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataOffsets +
                urn:smpte:ul:060e2b34.01010104.06090201.00000000
              + NODE + Data Offsets + Generic Data Offsets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ByteOffset +
                urn:smpte:ul:060e2b34.01010104.06090201.01000000
              + LEAF + Byte Offset + Byte offset from start of file (byte 0)to 1st byte of partition pack key + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReversePlay +
                urn:smpte:ul:060e2b34.01010104.06090201.02000000
              + LEAF + Reverse Play + The value as defined in SMPTE 389M. This value shall only be used in the First Content Package Element and, where present, should be the first item. + SMPTE394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaintextOffset +
                urn:smpte:ul:060e2b34.01010109.06090201.03000000
              + LEAF + Plaintext Offset + The position within an encrypted value at which plaintext ends and ciphertext begins + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NumericalSequence +
                urn:smpte:ul:060e2b34.01010101.06100000.00000000
              + NODE + Numerical Sequence + information about numerical sequences + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionInSequence +
                urn:smpte:ul:060e2b34.01010101.06100100.00000000
              + LEAF + Position in Sequence + 1, 2, 3 etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePositionInSequenceOffset +
                urn:smpte:ul:060e2b34.01010101.06100200.00000000
              + LEAF + Relative Position in Sequence Offset + Numerical offset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePositionInSequenceName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06100300.00000000
              + LEAF + Relative Position in Sequence Name + Specifies relative Position in Sequence (previous, next etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalNumberInSequence +
                urn:smpte:ul:060e2b34.01010105.06100400.00000000
              + LEAF + Total Number in Sequence + Total number of groups, items, series etc in a sequence + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TripletSequenceNumber +
                urn:smpte:ul:060e2b34.01010109.06100500.00000000
              + LEAF + Triplet Sequence Number + Ordinal number of an encrypted triplet in a sequence + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeNumericalSequences +
                urn:smpte:ul:060e2b34.01010104.06101000.00000000
              + NODE + Relative Numerical Sequences + Sequence numbers of related items + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstNumberInSequence_UInt32 +
                urn:smpte:ul:060e2b34.01010104.06101001.00000000
              + LEAF + First Number in Sequence + The first number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101001.01000000
              + LEAF + First Number in Sequence + The first number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101002.00000000
              + LEAF + Previous Number in Sequence + The previous number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousPartition +
                urn:smpte:ul:060e2b34.01010104.06101002.01000000
              + LEAF + Previous Partition + The number of the previous Partition in the sequence of Partitions (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrentNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101003.00000000
              + LEAF + Current Number in Sequence + The current number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThisPartition +
                urn:smpte:ul:060e2b34.01010104.06101003.01000000
              + LEAF + This Partition + The number of this Partition in the sequence of Partitions (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NextNumberInSequence_Int32 +
                urn:smpte:ul:060e2b34.01010104.06101004.00000000
              + LEAF + Next Number in Sequence + The next number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NextNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101004.01000000
              + LEAF + Next Number in Sequence + The next number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LastNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101005.00000000
              + LEAF + Last Number in Sequence + The last number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FooterPartition +
                urn:smpte:ul:060e2b34.01010104.06101005.01000000
              + LEAF + Footer Partition + The number of the Footer Partition (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpatioTemporal +
                urn:smpte:ul:060e2b34.01010101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + Class 7 is reserved for information about space and time + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionAndSpaceVectors +
                urn:smpte:ul:060e2b34.01010101.07010000.00000000
              + NODE + Position and Space Vectors + Information about position in space and associated vectors (if any) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionalSystemInformation +
                urn:smpte:ul:060e2b34.01010101.07010100.00000000
              + NODE + Positional System Information + Information about absolute system in use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCoordinateSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07010101.00000000
              + LEAF + Image Coordinate System + Identifies the Digital Geographic Information Exchange Standard (DIGEST) geo-referenced coordinate system used at image capture. + DIGEST V2.1 (Part3 Section 6.4) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MapDatumUsed_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07010102.00000000
              + LEAF + Map Datum Used + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalDatum_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010103.00000000
              + LEAF + Horizontal Datum + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalDatum_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010104.00000000
              + LEAF + Vertical Datum + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionalInformation +
                urn:smpte:ul:060e2b34.01010101.07010200.00000000
              + NODE + Positional Information + Information about absolute and relative position in space + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.00000000
              + NODE + Absolute Position + Absolute positional information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.01000000
              + NODE + Local Datum Absolute Position + The absolute position of a local datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumAbsolutePositionAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.01010000
              + LEAF + Local Datum Absolute Position Accuracy + The accuracy with which the measurement of absolute position of the local datum is made, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.02000000
              + NODE + Device Absolute Position + The absolute position of the essence-capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsolutePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.02010000
              + LEAF + Device Absolute Positional Accuracy + Accuracy of frame center coordinates as a Circular Error Probable (CEP) (50%), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAltitude +
                urn:smpte:ul:060e2b34.01010101.07010201.02020000
              + LEAF + Device Altitude + Altitude of sensor as measured from Mean Sea Level (MSL), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAltitudeConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02020100
              + LEAF + Device Altitude (Concise) + Altitude of sensor as measured from Mean Sea Level (MSL), (default metres) + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitude_Float +
                urn:smpte:ul:060e2b34.01010101.07010201.02040000
              + LEAF + Device Latitude + Specifies a sensor's geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02040100
              + LEAF + Device Latitude (Degrees, Concise) + Specifies a sensor's geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitude +
                urn:smpte:ul:060e2b34.01010103.07010201.02040200
              + LEAF + Device Latitude + Specifies a sensor's geographic location in decimal degrees of latitude. + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitude_Float +
                urn:smpte:ul:060e2b34.01010101.07010201.02060000
              + LEAF + Device Longitude + Specifies a sensor's geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere, negative values indicate western hemisphere. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02060100
              + LEAF + Device Longitude (Degrees, Concise) + Specifies a sensor's geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere, negative values indicate western hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitude +
                urn:smpte:ul:060e2b34.01010103.07010201.02060200
              + LEAF + Device Longitude + Specifies a sensor's geographic location in decimal degrees of longitude. + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceXDimension +
                urn:smpte:ul:060e2b34.01010101.07010201.02100000
              + LEAF + Device X Dimension + Specifies the sensor location along the x-axis in Earth Centered, Earth Fixed (ECEF) Cartesian coordinates, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceYDimension +
                urn:smpte:ul:060e2b34.01010101.07010201.02110000
              + LEAF + Device Y Dimension + Specifies the sensor location along the y-axis in Earth Centered, Earth Fixed (ECEF) Cartesian coordinates, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NMEA0183GPSDocumentText_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07010201.02300000
              + LEAF + NMEA-0183 GPS Document Text + National Marine Electronics Association (NMEA) text document complying with the NMEA-0183 Interface Standard when used to describe GPS positional information. + National Marine Electronics Association Standard NMEA-0183 + NMEA-0183 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.03000000
              + NODE + Subject Absolute Position + The absolute position of the subject depicted in the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FramePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.03010000
              + LEAF + Frame Positional Accuracy + Accuracy of frame center coordinates as a Circular Error Probable (CEP) (50%), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitude +
                urn:smpte:ul:060e2b34.01010101.07010201.03020000
              + LEAF + Frame Center Latitude + Specifies the video frame center point geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitude02 +
                urn:smpte:ul:060e2b34.01010103.07010201.03020200
              + LEAF + Frame Center Latitude + Specifies the video frame center point geographic location in decimal degrees of latitude. + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.03030000
              + LEAF + Frame Center Latitude (Degrees, Concise) + Specifies the video frame center point geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitude +
                urn:smpte:ul:060e2b34.01010101.07010201.03040000
              + LEAF + Frame Center Longitude + Specifies the video frame center point geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere; negative values indicate western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitude02 +
                urn:smpte:ul:060e2b34.01010103.07010201.03040200
              + LEAF + Frame Center Longitude + Specifies the video frame center point geographic location in decimal degrees of longitude. + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.03050000
              + LEAF + Frame Center Longitude (Degrees, Concise) + Specifies the video frame center point geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere; negative values indicate western hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatLong +
                urn:smpte:ul:060e2b34.01010101.07010201.03060000
              + LEAF + Frame Center Latitude-Longitude + Specifies a video frame center point geographic location Latitude and Longitude. + Format is ddmmssXddmmssY, where 'dd' is degrees latitude or longitude, 'mm' is minutes, 'ss' is seconds, 'X' is either N for north or S for south, 'Y' is either E for east or W for west + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint1_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03070000
              + LEAF + Corner Latitude Point 1 + Latitude coordinate of corner 1 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint1DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03070100
              + LEAF + Corner Latitude Point 1 (Decimal Degrees) + Latitude coordinate of corner 1 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint2_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03080000
              + LEAF + Corner Latitude Point 2 + Latitude coordinate of corner 2 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint2DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03080100
              + LEAF + Corner Latitude Point 2 (Decimal Degrees) + Latitude coordinate of corner 2 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint3_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03090000
              + LEAF + Corner Latitude Point 3 + Latitude coordinate of corner 3 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint3DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03090100
              + LEAF + Corner Latitude Point 3 (Decimal Degrees) + Latitude coordinate of corner 3 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint4_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030a0000
              + LEAF + Corner Latitude Point 4 + Latitude coordinate of corner 4 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint4DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030a0100
              + LEAF + Corner Latitude Point 4 (Decimal Degrees) + Latitude coordinate of corner 4 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint1_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030b0000
              + LEAF + Corner Longitude Point 1 + Longitude coordinate of corner 1 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint1DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030b0100
              + LEAF + Corner Longitude Point 1 (Decimal Degrees) + Longitude coordinate of corner 1 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint2_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030c0000
              + LEAF + Corner Longitude Point 2 + Longitude coordinate of corner 2 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint2DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030c0100
              + LEAF + Corner Longitude Point 2 (Decimal Degrees) + Longitude coordinate of corner 2 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint3_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030d0000
              + LEAF + Corner Longitude Point 3 + Longitude coordinate of corner 3 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint3DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030d0100
              + LEAF + Corner Longitude Point 3 (Decimal Degrees) + Longitude coordinate of corner 3 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint4_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030e0000
              + LEAF + Corner Longitude Point 4 + Longitude coordinate of corner 4 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint4DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030e0100
              + LEAF + Corner Longitude Point 4 (Decimal Degrees) + Longitude coordinate of corner 4 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Bounding_Rectangle +
                urn:smpte:ul:060e2b34.01010109.07010201.030f0000
              + LEAF + Bounding Rectangle + Geographic rectangle specified by four corner points, coordinate system and datum + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Geographic_Location +
                urn:smpte:ul:060e2b34.01010109.07010201.03100000
              + LEAF + Geographic Location + Geographic rectangle specified by at least 3 corner points, coordinate system and datum + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022500.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicPolygon_Coords +
                urn:smpte:ul:060e2b34.01010109.07010201.03110000
              + LEAF + Geographic Polygon Coordinates + A vector of geographic coordinates (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020300.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_NorthWest +
                urn:smpte:ul:060e2b34.01010109.07010201.03120000
              + LEAF + Geographic Area Northwest + The geographic coordinate of the NorthWest corner of a rectangle (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_SouthEast +
                urn:smpte:ul:060e2b34.01010109.07010201.03130000
              + LEAF + Geographic Area Southeast + The geographic coordinate of the SouthEast corner of a rectangle (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_SourceDatum +
                urn:smpte:ul:060e2b34.01010109.07010201.03140000
              + LEAF + Geographic Area Source Datum + The code for the datum point for a Geographic Area + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicPolygon_SourceDatum +
                urn:smpte:ul:060e2b34.01010109.07010201.03150000
              + LEAF + Geographic Polygon Source Datum + The code for the datum point for a Geographic Polygon + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterElevation +
                urn:smpte:ul:060e2b34.0101010a.07010201.03160000
              + LEAF + Frame Center Elevation + The elevation of field of view frame center, measured in meters above WGS-84 spheroid + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.00000000
              + NODE + Relative Position + Relative positional information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.01000000
              + NODE + Local Datum Relative Position + The relative position of a local datum to another specified datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumRelativePositionAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.01010000
              + LEAF + Local Datum Relative Position Accuracy + The accuracy with which the measurement of relative position of the local datum is made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.02000000
              + NODE + Device Relative Position + The relative position of the essence-capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.02010000
              + LEAF + Device Relative Positional Accuracy + Accuracy of frame center coordinates + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionX +
                urn:smpte:ul:060e2b34.01010101.07010202.02020000
              + LEAF + Device Relative Position X + Defined by the X translational position of the camera from a local Datum Absolute Position. Positive values indicate translations in which the camera has physically moved from left to right, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionY +
                urn:smpte:ul:060e2b34.01010101.07010202.02030000
              + LEAF + Device Relative Position Y + Defined by the Y translational position of the camera from a local Datum Absolute Position. Positive values indicate translations in which the camera has physically moved to a higher elevation, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionZ +
                urn:smpte:ul:060e2b34.01010101.07010202.02040000
              + LEAF + Device Relative Position Z + Defined by the Z translational position of the camera from a local Datum Absolute Position. Positive values shall indicate translations in which the camera has physically moved towards the target, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.03000000
              + NODE + Subject Relative Position + The position of the subject depicted in the essence relative to another specified datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.03010000
              + LEAF + Subject Relative Positional Accuracy + The accuracy with which the measurement of relative position of the subject is made, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImagePositionalInformation +
                urn:smpte:ul:060e2b34.01010101.07010203.00000000
              + NODE + Image Positional Information + Positional information relating to a subset of the whole image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionWithinViewportImageXCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.01000000
              + LEAF + Position Within Viewport Image X Coordinate (Pixels) + The position of a point (or object) within the viewed image expressed as x/y coordinates of the viewed image. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionWithinViewportImageYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.02000000
              + LEAF + Position Within Viewport Image Y Coordinate (Pixels) + The position of a point (or object) within the viewed image expressed as x/y coordinates of the viewed image. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceImageCenterXCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.03000000
              + LEAF + Source Image Center X Coordinate (Pixels) + The x position of the centre of the captured (source) image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceImageCenterYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.04000000
              + LEAF + Source Image Center Y Coordinate (Pixels) + The y position of the centre of the captured (source) image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportImageCenterCCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.05000000
              + LEAF + Viewport Image Center C Coordinate (Pixels) + The x position of the centre of the viewed image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportImageCenterYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.06000000
              + LEAF + Viewport Image Center Y Coordinate (Pixels) + The y position of the centre of the viewed image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010300.00000000
              + NODE + Rate and Direction of Positional Change + Information about rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.00000000
              + NODE + Absolute Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.01000000
              + NODE + Device Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change of the capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsoluteSpeed +
                urn:smpte:ul:060e2b34.01010101.07010301.01010000
              + LEAF + Device Absolute Speed + Defined by the relative speed of the sensor along the heading. Expressed in metres/second . Speed values shall indicate translations in which the capturing device has physically moved. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsoluteHeading +
                urn:smpte:ul:060e2b34.01010101.07010301.01020000
              + LEAF + Device Absolute Heading + Defined by the absolute heading of the sensor. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.02000000
              + NODE + Subject Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsoluteSpeed +
                urn:smpte:ul:060e2b34.01010101.07010301.02010000
              + LEAF + Subject Absolute Speed + Defined by the absolute speed of the subject along the heading, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsoluteHeading +
                urn:smpte:ul:060e2b34.01010101.07010301.02020000
              + LEAF + Subject Absolute Heading + Defined by the absolute heading of the subject. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.00000000
              + NODE + Relative Rate and Direction of Positional Change + Information about the relative rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.01000000
              + NODE + Device Relative Rate and Direction of Positional Change + Information about relative rate and direction of positional change of the capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeSpeed +
                urn:smpte:ul:060e2b34.01010101.07010302.01010000
              + LEAF + Device Relative Speed + Defined by the relative speed of the sensor along the heading. Speed values shall indicate translations in which the camera has physically moved, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeHeading +
                urn:smpte:ul:060e2b34.01010101.07010302.01020000
              + LEAF + Device Relative Heading + Defined by the relative heading of the sensor. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.02000000
              + NODE + Subject Relative Rate and Direction of Positional Change + Relative information about rate and direction of positional change of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeSpeed +
                urn:smpte:ul:060e2b34.01010101.07010302.02010000
              + LEAF + Subject Relative Speed + Defined by the relative speed of the subject along the heading, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeHeading +
                urn:smpte:ul:060e2b34.01010101.07010302.02020000
              + LEAF + Subject Relative Heading + Defined by the relative heading of the subject. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistanceMeasurements +
                urn:smpte:ul:060e2b34.01010101.07010800.00000000
              + NODE + Distance Measurements + Length measurements relating to distance + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceToSubjectDistance +
                urn:smpte:ul:060e2b34.01010101.07010801.00000000
              + NODE + Device to Subject Distance + Length measurements relating to distance between capturing device and the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SlantRange +
                urn:smpte:ul:060e2b34.01010101.07010801.01000000
              + LEAF + Slant Range + Distance from the sensor to the center point on ground of the framed subject (image) depicted in the captured essence, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectDistance +
                urn:smpte:ul:060e2b34.01010103.07010801.02000000
              + LEAF + Subject Distance + Distance from the sensor to the center of interest on the framed subject depicted in the captured essence, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dimensions +
                urn:smpte:ul:060e2b34.01010101.07010900.00000000
              + NODE + Dimensions + Length measurements relating to size + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDimensions +
                urn:smpte:ul:060e2b34.01010101.07010901.00000000
              + NODE + Device Dimensions + Physical measurements relating to the size of the device used for the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectDimensions +
                urn:smpte:ul:060e2b34.01010101.07010902.00000000
              + NODE + Subject Dimensions + Physical measurements relating to the size of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetWidth +
                urn:smpte:ul:060e2b34.01010101.07010902.01000000
              + LEAF + Target Width + Horizontal half width of the target frame image; used to compute the four corner points of the frame, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDimensions +
                urn:smpte:ul:060e2b34.01010101.07010903.00000000
              + NODE + Location Dimensions + Length measurements relating to the size of the location or studio in which the essence was catured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediaDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.00000000
              + NODE + Media Dimensions + Length measurements relating to the physical size of the image formed in a capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.01000000
              + NODE + Image Dimensions + Length measurements relating to the physical size of the image formed in a capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PanAndScanImageDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.01010000
              + NODE + Pan-and-Scan Image Dimensions + Length measurements relating to pan and scan subsetting of a captured image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportHeight +
                urn:smpte:ul:060e2b34.01010101.07010904.01010100
              + LEAF + Viewport Height + The height of the viewed area within a captured image (in pixels) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportWidth +
                urn:smpte:ul:060e2b34.01010101.07010904.01010200
              + LEAF + Viewport Width + The width of the viewed area within a captured image (in pixels) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngularSpecifications +
                urn:smpte:ul:060e2b34.01010101.07011000.00000000
              + NODE + Angular Specifications + Information regarding angles related to positioning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAngles +
                urn:smpte:ul:060e2b34.01010101.07011001.00000000
              + NODE + Device Angles + Device information regarding angles related to positioning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorRollAngle +
                urn:smpte:ul:060e2b34.01010101.07011001.01000000
              + LEAF + Sensor Roll Angle + Specifies the roll angle of the sensor. Expressed in degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngleToNorth +
                urn:smpte:ul:060e2b34.01010101.07011001.02000000
              + LEAF + Angle to North + Angle in degrees from the first row of the image to true north. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObliquityAngle +
                urn:smpte:ul:060e2b34.01010101.07011001.03000000
              + LEAF + Obliquity Angle + Obliquity angle of image expressed in degrees. The inverse of sensor depression angle. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformRollAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.04000000
              + LEAF + Platform Roll Angle + Roll angle of platform expressed in degrees. The Roll of an airborne platform is rotation about its longitudinal (front-to-back) axis; wings level is zero degrees, positive (negative) angles describe a platform orientation with the right wing down(up). Range of values is -180 to +180 degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformPitchAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.05000000
              + LEAF + Platform Pitch Angle + Pitch angle of platform expressed in degrees.The Pitch of an airborne platform describes the angle of its longitudinal (front-to-back) axis makes with the horizontal (i.e., equi-potential gravitational surface); positive (negative) angles describe a nose up (down) orientation. Range of values is -90 to +90 degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformHeadingAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.06000000
              + LEAF + Platform Heading Angle + Heading angle of platform expressed in degrees. The Heading of an airborne platform is the angle from True North of its longitudinal axis projected onto the horizontal plane. Range of values is 000 to almost 360 degrees; North is 000, East is 090; South is 180, and West is 270. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAngles +
                urn:smpte:ul:060e2b34.01010101.07011002.00000000
              + NODE + Subject Angles + Angles relating to the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbstractLocations +
                urn:smpte:ul:060e2b34.01010101.07012000.00000000
              + NODE + Abstract Locations + Abstract information about position + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceNames +
                urn:smpte:ul:060e2b34.01010101.07012001.00000000
              + NODE + Place Names + Place information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbstractNames +
                urn:smpte:ul:060e2b34.01010101.07012001.01000000
              + NODE + Abstract Names + Abstract place information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceKeyword_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.01010000
              + LEAF + Place Keyword + The geographic name(s) of location(s) covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceKeyword +
                urn:smpte:ul:060e2b34.01010103.07012001.01010100
              + LEAF + Place Keyword + The geographic name(s) of location(s) covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryCodes +
                urn:smpte:ul:060e2b34.01010101.07012001.02000000
              + NODE + Country Codes + Country code information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02010000
              + LEAF + Object Country Code + The ISO code that represents the country depicted in the essence. + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCode +
                urn:smpte:ul:060e2b34.01010103.07012001.02010100
              + LEAF + Object Country Code + The country code or text that represents the country depicted in the essence. + ASPA MISB_RP_0102 + ISO 3166 or other coding system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02020000
              + LEAF + Shooting Country Code + The ISO code that represents the country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02030000
              + LEAF + Setting Country Code + The ISO code that represents the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02040000
              + LEAF + Copyright License Country Code + The ISO code that represents a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyLicenseCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02050000
              + LEAF + Intellectual Property License Country Code + The ISO code that represents a country where IP rights are licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCodeMethod_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07012001.02060000
              + LEAF + Object Country Code Method + The coding method used to identify the object country code + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NonUSClassifyingCountryAndReleasingInstructionsCountryCodeMethod +
                urn:smpte:ul:060e2b34.01010103.07012001.02070000
              + LEAF + Country Code Method + The coding method used to identify the Non-US classifying country and countries in the releasing instructions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryCodeMethod +
                urn:smpte:ul:060e2b34.01010109.07012001.02070100
              + LEAF + Country Code Method + The coding method used to identify the Non-US classifying country and countries in the releasing instructions + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NonUSClassifyingCountry +
                urn:smpte:ul:060e2b34.01010103.07012001.02080000
              + LEAF + Non-US Classifying Country Code + ISO 3166 code of non-US country setting the security classification + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 6 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassifyingCountryCode +
                urn:smpte:ul:060e2b34.01010109.07012001.02080100
              + LEAF + Classifying Country Code + ISO 3166 code of non-US country setting the security classification + MISB_RP_0102 + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReleaseInstructions +
                urn:smpte:ul:060e2b34.01010103.07012001.02090000
              + LEAF + Releasable Country Code + ISO 3166 codes of countries to which classified information is releasable + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReleasableCountryCode +
                urn:smpte:ul:060e2b34.01010109.07012001.02090100
              + LEAF + Releasable Country Code + ISO 3166 codes of countries to which classified information is releasable + MISB_RP_0102 + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Regions +
                urn:smpte:ul:060e2b34.01010101.07012001.03000000
              + NODE + Regions + Information about Regions within a country + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03010000
              + LEAF + Object Region Code + The ISO code that represents the region in a country where object is depicted + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03010100
              + LEAF + Object Region Name + Region in a country where object is depicted + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03020000
              + LEAF + Shooting Region Code + The ISO code that represents the region within a country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03020100
              + LEAF + Shooting Region Name + Region within a country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03030000
              + LEAF + Setting Region Code + The ISO code that represents the region of the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03030100
              + LEAF + Setting Region Name + The region of the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03040000
              + LEAF + Copyright License Region Code + The ISO code that represents a region of a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03040100
              + LEAF + Copyright License Region Name + The region of a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyLicenseRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03050000
              + LEAF + Intellectual Property License Region Code + The ISO code that represents a region of a country where IP rights are licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionAreaOfIPLicense +
                urn:smpte:ul:060e2b34.01010103.07012001.03050100
              + LEAF + Intellectual Property License Region Name + The region of a country where IP rights are licensed + DMS-1 + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Addresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04000000
              + NODE + Addresses + Information about Addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalAddresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04010000
              + NODE + Postal Addresses + Information about Postal Addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010100
              + LEAF + Room Number + The aphanumeric room, suite or apartment number of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04010101
              + LEAF + Room Number + The aphanumeric room, suite or apartment number of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010200
              + LEAF + Street Number + The alphanumeric street number of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04010201
              + LEAF + Street Number + The alphanumeric street number of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010300
              + LEAF + Street Name + The street or thoroughfare name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetName +
                urn:smpte:ul:060e2b34.01010103.07012001.04010301
              + LEAF + Street Name + The street or thoroughfare name + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalTown_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010400
              + LEAF + Postal Town + The postal town name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalTown +
                urn:smpte:ul:060e2b34.01010103.07012001.04010401
              + LEAF + Postal Town + The postal town name + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CityName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010500
              + LEAF + City Name + The city of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + City +
                urn:smpte:ul:060e2b34.01010103.07012001.04010501
              + LEAF + City Name + The city of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StateProvinceCounty_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010600
              + LEAF + State or Province or County Name + The state, province or county of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StateProvinceCounty +
                urn:smpte:ul:060e2b34.01010103.07012001.04010601
              + LEAF + State or Province or County Name + The state, province or county of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010700
              + LEAF + Postal Code + The ZIP or other postal code of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalCode +
                urn:smpte:ul:060e2b34.01010103.07012001.04010701
              + LEAF + Postal Code + The ZIP or other postal code of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Country_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010800
              + LEAF + Country Name + The country of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Country +
                urn:smpte:ul:060e2b34.01010103.07012001.04010801
              + LEAF + Country Name + The country of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07012001.04011100
              + LEAF + Room or Suite Name + The room, suite or apartment name of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteName +
                urn:smpte:ul:060e2b34.01010105.07012001.04011101
              + LEAF + Room or Suite Name + The room, suite or apartment name of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BuildingName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07012001.04011200
              + LEAF + Building Name + The building name of an address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BuildingName +
                urn:smpte:ul:060e2b34.01010105.07012001.04011201
              + LEAF + Building Name + The building name of an address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressLine_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011300
              + LEAF + Address Line + The address line as a single string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 128 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressLine +
                urn:smpte:ul:060e2b34.01010107.07012001.04011301
              + LEAF + Address Line + The address line as a single string + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceName_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011400
              + LEAF + Place Name + The place name of an address as string (e.g., "The Post Office") + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceName +
                urn:smpte:ul:060e2b34.01010107.07012001.04011401
              + LEAF + Place Name + The place name of an address as string (e.g., "The Post Office") + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicalCoordinates +
                urn:smpte:ul:060e2b34.01010107.07012001.04011500
              + LEAF + Geographical Coordinates + Geographic coordinates of an address as a 12-byte spatial coordinate component as defined in SMPTE 330M-2003 + DMS-1 + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010f00.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AstronomicalBodyName_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011600
              + LEAF + Astronomical Body Name + The name of the astronomical body as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AstronomicalBodyName +
                urn:smpte:ul:060e2b34.01010107.07012001.04011601
              + LEAF + Astronomical Body Name + The name of the astronomical body as a string + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingAddresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04020000
              + NODE + Setting Addresses + Information about address depicted in the setting of a production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRoomNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020100
              + LEAF + Setting Room Number + The room number of a depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRoomNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04020101
              + LEAF + Setting Room Number + The room number of a depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetNumberOrBuildingName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020200
              + LEAF + Setting Street Number or Building Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetNumberOrBuildingName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020201
              + LEAF + Setting Street Number or Building Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020300
              + LEAF + Setting Street Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020301
              + LEAF + Setting Street Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingTownName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020400
              + LEAF + Setting Town Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingTownName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020401
              + LEAF + Setting Town Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCityName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020500
              + LEAF + Setting City Name + The city of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCityName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020501
              + LEAF + Setting City Name + The city of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStateOrProvinceOrCountyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020600
              + LEAF + Setting State or Province or County Name + The state, province or county of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStateOrProvinceOrCountyName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020601
              + LEAF + Setting State or Province or County Name + The state, province or county of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPostalCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020700
              + LEAF + Setting Postal Code + The ZIP or other postal code of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPostalCode +
                urn:smpte:ul:060e2b34.01010103.07012001.04020701
              + LEAF + Setting Postal Code + The ZIP or other postal code of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020800
              + LEAF + Setting Country Name + The country of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020801
              + LEAF + Setting Country Name + The country of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectronicAddressVarieties +
                urn:smpte:ul:060e2b34.01010104.07012001.10000000
              + NODE + Electronic Address Varieties + Information about electronic addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectronicAddressInformation +
                urn:smpte:ul:060e2b34.01010101.07012001.10030000
              + NODE + Electronic Address Information + Information about electronic addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TelephoneNumber +
                urn:smpte:ul:060e2b34.01010101.07012001.10030100
              + LEAF + Telephone Number + Telephone number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TelephoneNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.07012001.10030101
              + LEAF + Telephone Number + Telephone number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FaxNumber +
                urn:smpte:ul:060e2b34.01010101.07012001.10030200
              + LEAF + Fax Number + Fax number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FaxNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.07012001.10030201
              + LEAF + Fax Number + Fax number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EmailAddress_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.10030300
              + LEAF + E-Mail Address + e-mail address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EmailAddress +
                urn:smpte:ul:060e2b34.01010103.07012001.10030301
              + LEAF + E-Mail Address + e-mail address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CentralTelephoneNumber +
                urn:smpte:ul:060e2b34.01010104.07012001.10030400
              + LEAF + Central Telephone Number + Telephone number of organization switchboard + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MobileTelephoneNumber +
                urn:smpte:ul:060e2b34.01010104.07012001.10030500
              + LEAF + Mobile Telephone Number + Mobile telephone number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactWebPage_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012001.10030600
              + LEAF + URL + Web home page URL + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactWebPage +
                urn:smpte:ul:060e2b34.01010105.07012001.10030601
              + LEAF + URL + The contact's web home page address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceDescriptions +
                urn:smpte:ul:060e2b34.01010101.07012002.00000000
              + NODE + Place Descriptions + Place descriptions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012002.01000000
              + LEAF + Setting Description + eg. 'A clearing in a wood' or 'Falstaffs living room' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDescription +
                urn:smpte:ul:060e2b34.01010103.07012002.01010000
              + LEAF + Setting Description + eg. 'A clearing in a wood' or 'Falstaffs living room' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012002.02000000
              + LEAF + Location Description + The description of a location covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDescription +
                urn:smpte:ul:060e2b34.01010104.07012002.02010000
              + LEAF + Location Description + The description of a location covered by a data set. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012002.03000000
              + LEAF + Location Kind + The kind of location - e.g. the location of the camera, the location of the action etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationKind +
                urn:smpte:ul:060e2b34.01010104.07012002.03010000
              + LEAF + Location Kind + The kind of location - e.g. the location of the camera, the location of the action etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Temporal +
                urn:smpte:ul:060e2b34.01010101.07020000.00000000
              + NODE + Temporal + Information about temporal information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020100.00000000
              + NODE + Dates and Times + All information about dates and times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020101.00000000
              + NODE + General Dates and Times + General information about dates and times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01000000
              + NODE + User Date-Time + Time stamp application defined by user application + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCUserDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020101.01010000
              + LEAF + UTC User Date-Time + Time stamp application defined by user application + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalUserDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020101.01020000
              + LEAF + Local User Date-Time + Time stamp application defined by user application + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTE309MUserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01030000
              + LEAF + SMPTE 309M User Date-Time + Time stamp application defined by user application + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTE12MUserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01040000
              + LEAF + SMPTE 12M User Date-Time + Time stamp application defined by user application + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012006.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + POSIXMicroseconds +
                urn:smpte:ul:060e2b34.01010103.07020101.01050000
              + LEAF + POSIX Microseconds + Time stamp application defined by user + 64 bit integer which represents the number of microseconds since Jan 1, 1970 UTC derived from the POSIX (IEEE 1003.1) standard. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterReleaseDateTime +
                urn:smpte:ul:060e2b34.0101010c.07020101.01060000
              + LEAF + Register Release Date-Time + The publication date of the register. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemStatusChangeDateTime +
                urn:smpte:ul:060e2b34.0101010c.07020101.01070000
              + LEAF + Register Item Status Change Date-Time + The timestamp that indicates the last change of status of a register or entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMCurrentTime +
                urn:smpte:ul:060e2b34.0101010d.07020101.01080000
              + LEAF + ASM Current Time + The current UTC time expressed as a 64-bit integer representing the number of seconds elapsed since midnight, January 1, 1970. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteDatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020102.00000000
              + NODE + Absolute Dates and Times + Absolute date and time information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.01000000
              + NODE + Material Start True Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.01010000
              + LEAF + UTC Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCStartDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.01010100
              + LEAF + UTC Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.01020000
              + LEAF + Local Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCInstantDateTime_UTCmilliseconds +
                urn:smpte:ul:060e2b34.01010109.07020102.01030000
              + LEAF + UTC Instant Date-Time + Absolute time at instant of creating the segment, shot, clip, item etc. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200600.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCInstantDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.01030100
              + LEAF + UTC Instant Date-Time + Absolute time at instant of creating the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.02000000
              + NODE + Material Start Time Address + Media time at start of segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.02010000
              + LEAF + Timecode Start Date-Time + Media time at start of segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + STLReferencePointTimecode +
                urn:smpte:ul:060e2b34.0101010e.07020102.02020000
              + LEAF + STL Reference Point Timecode + Specifies the Reference Point Timecode of the STL essence. + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.03000000
              + NODE + Material End True Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.03010000
              + LEAF + UTC End Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.03020000
              + LEAF + Local End Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.04000000
              + NODE + Material End Time Address + Media time at end of segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.04010000
              + LEAF + Timecode End Date-Time + Media time at end of segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOccurrenceTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.05000000
              + NODE + Material Occurrence True Date-Time + Absolute time of an occurance to the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCLastModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.05010000
              + LEAF + UTC Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCLastModificationDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.05010100
              + LEAF + UTC Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalLastModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.05020000
              + LEAF + Local Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOccurrenceTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.06000000
              + NODE + Material Occurrence Time Address + Media time of the last modification of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeLastModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.06010000
              + LEAF + Timecode Last Modification Date-Time + Media time of the last modification of the segment, shot, clip, item etc. + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.07000000
              + NODE + Event Start True Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.07010000
              + LEAF + UTC Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.07010100
              + LEAF + UTC Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.07020000
              + LEAF + Local Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEventStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.07020100
              + LEAF + Local Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventListStartTime +
                urn:smpte:ul:060e2b34.0101010d.07020102.07030000
              + LEAF + ASM Event List Start Time + Start of the event list period. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedEventStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010105.07020102.07100000
              + NODE + Defined Event Start True Date-Time + The absolute beginning date and time of a defined event + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalDateTime +
                urn:smpte:ul:060e2b34.01010105.07020102.07100100
              + LEAF + Local Festival Date-Time + The beginning date and time of the festival (local time) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.08000000
              + NODE + Event Start Time Address + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEventStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.08010000
              + LEAF + Timecode Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeArray +
                urn:smpte:ul:060e2b34.01010107.07020102.08020000
              + LEAF + Timecode Array + An ordered array of Timecodes with individual timecode packets as specified in SMPTE 331M, section 8.2. + SMPTE394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020400.00000000 + 8n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.09000000
              + NODE + Event End True Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.09010000
              + LEAF + UTC Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventEndDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.09010100
              + LEAF + UTC Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.09020000
              + LEAF + Local Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEventEndDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.09020100
              + LEAF + Local Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.0a000000
              + NODE + Event End Time Address + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEventEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.0a010000
              + LEAF + Timecode Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventListStopTime +
                urn:smpte:ul:060e2b34.0101010d.07020102.0a020000
              + LEAF + ASM Event List Stop Time + Stop of the event list period. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.00000000
              + NODE + Relative Times + Relative time information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.01000000
              + NODE + Material Start Relative Times + The relative start time of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimeRelativeToReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.01010000
              + LEAF + Start Time Relative to Reference + The relative start time of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimecodeRelativeToReference +
                urn:smpte:ul:060e2b34.01010101.07020103.01020000
              + LEAF + Start Timecode Relative to Reference + The relative start time of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Origin +
                urn:smpte:ul:060e2b34.01010102.07020103.01030000
              + LEAF + Origin + Specifies the point, in edit units, in a track from which relative times are measured. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartPosition +
                urn:smpte:ul:060e2b34.01010102.07020103.01040000
              + LEAF + Start Time Relative to Reference + The relative start time from an origin within the track of a clip, expressed in edit units + AAF~StartTime mxflib~StartPosition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimecode +
                urn:smpte:ul:060e2b34.01010102.07020103.01050000
              + LEAF + Start Timecode + The timecode within a track at the starting point of the essence + AAF~Start + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CutPoint +
                urn:smpte:ul:060e2b34.01010102.07020103.01060000
              + LEAF + Cut Point + Specifies the point, in edit units, in a track at which a cut occurs. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointPosition +
                urn:smpte:ul:060e2b34.01010104.07020103.01070000
              + LEAF + Key Time Point + Specifies the point at which a key event occurs + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotStartPosition +
                urn:smpte:ul:060e2b34.01010105.07020103.01090000
              + LEAF + Shot Start Position + Defines the first edit unit to which this shot applies + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexStartPosition +
                urn:smpte:ul:060e2b34.01010105.07020103.010a0000
              + LEAF + Indexing Start Position + Specifies the position reletive to start of essence, in edit units, where indexing starts + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTrackOrigin +
                urn:smpte:ul:060e2b34.01010105.07020103.010b0000
              + LEAF + Event Origin + Specifies the point, in edit units, in an event track from which relative times are measured. + AAF~EventSlotOrigin mxflib[:1.19]~EventOrigin + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MarkIn +
                urn:smpte:ul:060e2b34.01010107.07020103.010c0000
              + LEAF + Mark In + Specifies an optional IN point mark. The position is measured relative to the origin, in edit units, and applies to the track of material in which it is specified. + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserPosition +
                urn:smpte:ul:060e2b34.01010107.07020103.010d0000
              + LEAF + User Position + Specifies a position relative to the origin, in edit units, where material was previously positioned for viewing + AAF[1.1:]~UserPos + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkInPosition +
                urn:smpte:ul:060e2b34.0101010a.07020103.010e0000
              + LEAF + Package Mark In Position + Specifies an optional start of playback position. The position is measured relative to the origin, in edit units, and applies to all tracks of the material. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.02000000
              + NODE + Material End Relative Times + The relative end time of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.02010000
              + LEAF + Material End Time Offset + The relative end time of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.02020000
              + LEAF + Material End Timecode Offset + The relative end time of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MarkOut +
                urn:smpte:ul:060e2b34.01010107.07020103.02030000
              + LEAF + Mark Out + Specifies an optional OUT point mark. The position is measured relative to the origin, in edit units, and applies to the track of material in which it is specified. + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkOutPosition +
                urn:smpte:ul:060e2b34.0101010a.07020103.02040000
              + LEAF + Package Mark Out Position + Specifies an optional end of playback position. The position is measured relative to the origin, in edit units, and applies to all tracks of the material. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.03000000
              + NODE + Event Start Relative Times + The relative start time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.03010000
              + LEAF + Event Start Time Offset + The relative start time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.03020000
              + LEAF + Event Start Timecode Offset + The relative start time of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventPosition +
                urn:smpte:ul:060e2b34.01010102.07020103.03030000
              + LEAF + Event Start + Specifies the Starting Time of an Event in edit units, relative to the origin + AAF~Position + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.04000000
              + NODE + Event End Relative Times + The relative end time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.04010000
              + LEAF + Event End Time Offset + The relative end time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.04020000
              + LEAF + Event End Timecode Offset + The relative end time of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Offsets +
                urn:smpte:ul:060e2b34.01010101.07020103.10000000
              + NODE + Offsets + Information about offset times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOffsets +
                urn:smpte:ul:060e2b34.01010101.07020103.10010000
              + NODE + Material Offsets + Information about material offset timing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCountOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.10010100
              + LEAF + Frame Count Offset + Offset of the content from a given timecode in timecode frames. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditOffsets +
                urn:smpte:ul:060e2b34.01010102.07020103.10020000
              + NODE + Edit Offsets + Information about editing offsets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ControlPointTime +
                urn:smpte:ul:060e2b34.01010102.07020103.10020100
              + LEAF + Control Point Time + Control Point Time Offset - expressed as proportion of the duration of the effect + AAF~Time + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventOffsets +
                urn:smpte:ul:060e2b34.01010103.07020103.10030000
              + NODE + Event Offsets + Information about events offset from the beginning of material - ie, an event occuring after a given time interval from the start of a segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventElapsedTimeToStart_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07020103.10030100
              + LEAF + Event Elapsed Time to Start + The elapsed time into the segment, shot, clip, item etc. when an event begins (Days, Hours, minutes, seconds, fractions of seconds) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventElapsedTimeToEnd_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07020103.10030200
              + LEAF + Event Elapsed Time to End + The elapsed time into the segment, shot, clip, item etc. when an event finishes (Days, Hours, minutes, seconds, fractions of seconds) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDateAndTime +
                urn:smpte:ul:060e2b34.01010101.07020108.00000000
              + NODE + Setting Date and Time + Time period(s) characterized by the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimePeriodKeyword_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020108.01000000
              + LEAF + Time Period Name + The name of a time period covered by a data set. Eg Cretaceous + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimePeriodKeyword +
                urn:smpte:ul:060e2b34.01010104.07020108.01010000
              + LEAF + Time Period Name + The name of a time period covered by a data set. Eg Cretaceous + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDateTime +
                urn:smpte:ul:060e2b34.01010104.07020108.02000000
              + LEAF + Setting Date-Time + The date (and time if appropriate) of the setting as a timestamp + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07020108.03000000
              + LEAF + Setting Period Description + Free-form text description of the setting period + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodDescription +
                urn:smpte:ul:060e2b34.01010105.07020108.03010000
              + LEAF + Setting Period Description + Free-form text description of the setting period + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.00000000
              + NODE + Process Date-Time + Date and Time information relating to Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CreationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.01000000
              + NODE + Creation Date-Time + Identifies date and time at the point of creation. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalCreationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020110.01010000
              + LEAF + Local Creation Date-Time + Identifies date and time at the point of creation. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeCreationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.01020000
              + LEAF + Timecode Creation Date-Time + Identifies date and time at the point of creation. + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CreationTime +
                urn:smpte:ul:060e2b34.01010102.07020110.01030000
              + LEAF + Creation Date-Time + Identifies date and time at the point of creation. + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipCreationDateTime +
                urn:smpte:ul:060e2b34.01010107.07020110.01040000
              + LEAF + Clip Creation Date-Time + Identifies date and time of creation of a clip + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.02000000
              + NODE + Modification Date-Time + Identifies date and time at the point of modification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020110.02010000
              + LEAF + Local Modification Date-Time + Identifies date and time at the point of modification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.02020000
              + LEAF + Timecode Modification Date-Time + Identifies date and time at the point of modification + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileModificationDate +
                urn:smpte:ul:060e2b34.01010102.07020110.02030000
              + LEAF + Modification Date-Time + Identifies date and time at the point of modification + AAF~Date + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileLastModified +
                urn:smpte:ul:060e2b34.01010102.07020110.02040000
              + LEAF + Container Last Modification Date-Time + Identifies date and time at the point of most recent modification of any item in the container + ASPA[0.8]~LastModified AAF~LastModified + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageLastModified +
                urn:smpte:ul:060e2b34.01010102.07020110.02050000
              + LEAF + Package Last Modification Date-Time + Identifies date and time at the point of most recent modification of the package + AAF~LastModified + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdministrativeDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.00000000
              + NODE + Administrative Date-Time + Date and Time information relating to Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.01000000
              + LEAF + Contract Date-Time + Date and time of a contract. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.02000000
              + LEAF + Rights Start Date-Time + Date and time of the start of a rights contract + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsStopDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.03000000
              + LEAF + Rights Stop Date-Time + Date and time of the completion of a rights contract + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentDueDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.04000000
              + LEAF + Payment Due Date-Time + The due Date and time of a payment + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Durations +
                urn:smpte:ul:060e2b34.01010101.07020200.00000000
              + NODE + Durations + Information about time durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.00000000
              + NODE + Absolute Durations + Absolute time duration information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditTimelineDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01000000
              + NODE + Edit Timeline Durations + Time duration information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCount +
                urn:smpte:ul:060e2b34.01010101.07020201.01010000
              + LEAF + Frame Count + Length of the segment, shot, clip, item etc in frames. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexDuration +
                urn:smpte:ul:060e2b34.01010105.07020201.01020000
              + LEAF + Index Duration + Specifies the duration of an Index table in content units + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01030000
              + LEAF + Component Length + The absolute duration of a compositional component - eg clip, effect, sequence etc in units of edit rate + AAF~Length mxflib[:1.19]~Duration + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01040000
              + NODE + Video Durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01050000
              + NODE + Audio Durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050100
              + LEAF + Default Fade Duration + Specifies the default length of an audio fade-in or fade-out to be applied, in units of edit rate + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeInLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050200
              + LEAF + Fade-In Duration + Specifies the length of an audio fade-in to be applied, in units of edit rate + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeOutLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050300
              + LEAF + Fade-Out Duration + Specifies the length of an audio fade-out to be applied, in units of edit rate + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.02000000
              + NODE + Material Absolute Durations + The absolute duration of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDuration_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020201.02010000
              + LEAF + Material Absolute Duration + The absolute duration of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.02020000
              + LEAF + Material Absolute Duration + The absolute duration of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextlessBlackDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.02030000
              + LEAF + Textless Black Duration + eg. 1 minutes after end of program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDuration +
                urn:smpte:ul:060e2b34.01010105.07020201.02040000
              + LEAF + Shot Duration + Defines the duration of this shot in edit units. A value of 1 defines a single edit unit length + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoClipDuration +
                urn:smpte:ul:060e2b34.01010107.07020201.02050000
              + LEAF + Video Clip Duration + The amount of time elapsed between the start of capture and the end of capture of the video clip. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes + Seconds +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.03000000
              + NODE + Event Absolute Durations + The absolute duration of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDurationFrameCount +
                urn:smpte:ul:060e2b34.01010101.07020201.03010000
              + LEAF + Event Absolute Duration Frame Count + The absolute duration of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDuration_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020201.03020000
              + LEAF + Event Absolute Duration + The absolute duration of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.03030000
              + LEAF + Event Absolute Duration + The absolute duration of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeScalingDurations +
                urn:smpte:ul:060e2b34.01010101.07020202.00000000
              + NODE + Relative Scaling Durations + Relative time duration information (twice as long, slow speed etc.) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Delay +
                urn:smpte:ul:060e2b34.01010101.07020300.00000000
              + NODE + Delay + Information about Delay durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncodingAndDecoding +
                urn:smpte:ul:060e2b34.01010101.07020301.00000000
              + NODE + Encoding and Decoding + Information about delay durations in encoding and decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.01000000
              + NODE + Codec Delay + Information about combined delay in encoding & decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncodingDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.02000000
              + NODE + Encoding Delay + Information about delay durations in encoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DecodingDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.03000000
              + NODE + Decoding Delay + Information about delay durations in decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BufferDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.03010000
              + LEAF + Buffer Delay + Buffer delay per definition in SDTI-CP (E&M) + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Latency +
                urn:smpte:ul:060e2b34.01010101.07020500.00000000
              + NODE + Latency + Information about response times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceMode +
                urn:smpte:ul:060e2b34.01010109.07020501.00000000
              + LEAF + Tolerance Mode + Enumerated mode of sampling or interpolation affecting the precision of an observation + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010129.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceWindow +
                urn:smpte:ul:060e2b34.01010109.07020502.00000000
              + LEAF + Tolerance Window + The duration of an observation or interpolation window. + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceInterpolationMethod +
                urn:smpte:ul:060e2b34.01010109.07020503.00000000
              + LEAF + Tolerance Interpolation Method + The reference to a interpolation method used to interpolate values to the reference time + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalCharacteristics +
                urn:smpte:ul:060e2b34.01010101.07020600.00000000
              + NODE + Temporal Characteristics + Information about temporal characteristics of processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterCharacteristics +
                urn:smpte:ul:060e2b34.01010101.07020601.00000000
              + NODE + Shutter Characteristics + Shutter characteristics. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeed +
                urn:smpte:ul:060e2b34.01010101.07020601.01000000
              + NODE + Shutter Speed + Shutter speed + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterGating +
                urn:smpte:ul:060e2b34.01010101.07020601.02000000
              + NODE + Shutter Gating + Shutter Gating characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.01010101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.01010101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010100.00000000
              + NODE + AAF Attributes + AAF Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFInformationAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010101.00000000
              + NODE + AAF Information Attributes + AAF Information Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFInformationAttributesVersion1X +
                urn:smpte:ul:060e2b34.01010101.0d010101.01000000
              + NODE + AAF Information Attributes Version 1.x + AAF Information Attributes Version 1.x + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + EnumeratedAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010101.01010000
              + NODE + Enumerated Attributes + Enumerated Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + TapeFormat +
                urn:smpte:ul:060e2b34.01010102.0d010101.01010100
              + LEAF + Tape Format + Physical tape format from an enumerated list + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010102.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + MXFDescriptiveMetadataSchemes +
                urn:smpte:ul:060e2b34.01010101.0d010400.00000000
              + NODE + MXF Descriptive Metadata Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + MXFDMSStructureVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010401.00000000
              + NODE + MXF-DMS Structure Version-1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.01010101.0d010401.03000000
              + NODE + DMS AS-03 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + DMS_AS_03_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010000
              + NODE + DMS AS-03 Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_IdentifierKind +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010100
              + LEAF + AS-03 Identifier Kind + A controlled-vocabulary string value indicating the kind of program identifier, e.g. PBS PackageID + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_Identifier +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010200
              + LEAF + AS-03 Identifier + The program identifier as a text string, e.g. P900000HD + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_ShimName +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010300
              + LEAF + AS-03 Shim Name + A controlled-vocabulary string value indicating the AS-03 Shim Name, e.g. PBS NGIS HD Playout + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_SignalStandard +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010400
              + LEAF + AS-03 Signal Standard + A controlled-vocabulary string value indicating the signal standard of video contained in this AS-03 file + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_IntendedAFD +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010500
              + LEAF + AS-03 Intended AFD + A string value indicating the intended display format for the program, per SMPTE 2016-1 table 1 a3 a2 a1 a0 with optional informative appended text e.g. 1001 Pillarbox, 0100 Letterbox, 1000 FullHD + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_SlateTitle +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010600
              + LEAF + AS-03 Slate Title + A string that specifies a program title to be displayed to traffic and master control operators, e.g. Sesame Street + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_NOLACode +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010700
              + LEAF + AS-03 NOLA Code + A string that specifies the program series code and episode number, e.g. SESA 4187 + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_Rating +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010800
              + LEAF + AS-03 Rating + A controlled-vocabulary string that specifies the V-Chip rating of the program, e.g. TV-G + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_NielsenStreamIdentifier +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010900
              + LEAF + AS-03 Nielsen Stream Identifier + A string that specifies Nielsen stream identifier for the program + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.01010101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010000
              + NODE + DMS AS-10 Core + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + DMS_AS_10_Core_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010100
              + NODE + DMS AS-10 Core Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Shim_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010101
              + LEAF + AS-10 Shim Name + The name of the AS_10 shim + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Type +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010102
              + LEAF + AS-10 Type + Type that describes the production category of clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Main_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010103
              + LEAF + AS-10 Main Title + Main title associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Sub_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010104
              + LEAF + AS-10 Sub Title + Sub title associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Title_Description +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010105
              + LEAF + AS-10 Title Description + Title description associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Organization_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010106
              + LEAF + AS-10 Organization Name + The name of a Organization + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Person_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010107
              + LEAF + AS-10 Person Name + The name of a Person + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Location_Description +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010108
              + LEAF + AS-10 Location Description + The text description of a location + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Common_Spanning_ID +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010109
              + LEAF + AS-10 Common Spanning ID + UMID for the total spanning clips + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Spanning_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010a
              + LEAF + AS-10 Spanning Number + Identifier for the spanning number (1st clip: 00 01) + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Cumulative_Duration +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010b
              + LEAF + AS-10 Cumulative Duration + Cumulative Duration of preceding spanning clips in this set (spanning number 0 up to this-1), in Edit Units + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Core_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010100
              + NODE + AS-11 Core Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Series_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010101
              + LEAF + Series Title + The final name of a "group" of episodes to which the programme belongs. These episodes have a shared identification and branding and are linked by common characters, subject matter, style or story. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Programme_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010102
              + LEAF + Programme Title + The final name of the programme used to identify it as a version of an episode. This name indicates the specific purpose for which the version was created. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Episode_Title_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010103
              + LEAF + Episode Title/Episode No. + The final name of the programme used to identify it as an editorially distinct member of a series i.e. an episode. This name may include a number (or consist only of a number) indicating the position of the episode within the series. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Shim_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010104
              + LEAF + Shim Name + The name of the AS-11 shim specification to which the MXF file conforms. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Audio_Track_Layout +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010105
              + LEAF + Audio Track Layout + A code to identify the scheme that describes the usage of the audio channels encoded in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010200 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Primary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010106
              + LEAF + Primary Audio Language + A code to identify the main language used on primary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Closed_Captions_Present +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010107
              + LEAF + Closed Captions Present + A flag to indicate whether the programme contains embedded (out of vision) subtitling information. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Closed_Captions_Type +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010108
              + LEAF + Closed Captions Type + A code to identify the editorial description of the closed captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Caption_Language +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010109
              + LEAF + Closed Captions Language + A code to identify the main language used in the closed captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Shim_Version +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b01010a
              + LEAF + Shim Version + The version of the AS-11 shim specification to which the MXF file conforms. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020000
              + NODE + AS-11 Segmentation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Segmentation_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020100
              + NODE + AS-11 Segmentation Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Part_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020101
              + LEAF + Part Number + A number that both: uniquely identifies the part / segment within the programme; and identifies the position of the part / segment within the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Part_Total +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020102
              + LEAF + Part Total + The count of parts / segments in the entire programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + DMS_AS_12_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010100
              + NODE + DMS_AS_12_Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12_ShimName +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010101
              + LEAF + AS_12_ShimName + An informative shim name that identifies the specification for provider dependent metadata that may be shimmed into this file. E.g. "Ad-ID Digital Identification". Note, this string is informative therefore should not be considered to be a definitive indication that additional, shimmed, metadata is present in the file. The definitive indication is the presence of a shim's concrete subclass of "AS_12_DescriptiveObject". + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12_Slate +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010102
              + LEAF + AS_12_Slate + A Strong Reference to the provider dependent metadata contained in a Descriptive Object as defined by the provider dependent shim + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0c010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.01010101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + Specification_Identification +
                urn:smpte:ul:060e2b34.01010101.0d010801.01000000
              + NODE + Specification Identification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + Specification_Identifiers +
                urn:smpte:ul:060e2b34.01010101.0d010801.01010000
              + LEAF + Specification Identifiers + A set of AUIDs where each AUID identifies a "file format" "Block" to which the MXF file conforms. A "file format" "Block" is a "Block" (a Rules Framework Component) that is usually at (or close to) the root of a Rules-based Specification. + AMWA Rules-based Specification component + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/smpte/class13/element + EBU_UER +
                urn:smpte:ul:060e2b34.01010105.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ebucore +
                urn:smpte:ul:060e2b34.01010101.0d020100.00000000
              + NODE + ebucore + The EBUCore schema + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + EBUCoreMainFramework +
                urn:smpte:ul:060e2b34.01010101.0d020101.00000000
              + NODE + EBU Core Main Framework + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + documentLocator +
                urn:smpte:ul:060e2b34.01010101.0d020101.01000000
              + LEAF + Document Locator + the location where an instance of the metadata document can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + documentId +
                urn:smpte:ul:060e2b34.01010101.0d020101.02000000
              + LEAF + Document ID + An identifier associated with the metadata instance / document + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coreMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d020101.03000000
              + LEAF + Core Metadata Set + A strong reference to EBUCore's core set of descriptive and technical metadata + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaInformationObject +
                urn:smpte:ul:060e2b34.01010101.0d020101.04000000
              + LEAF + Metadata Schema Information Set + A strong reference to information about the EBUCore schema (version...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01020000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coreMetadata +
                urn:smpte:ul:060e2b34.01010101.0d020102.00000000
              + NODE + Core Metadata + EBUCore's core set of descriptive and technical metadata + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.01000000
              + LEAF + Identifier Sets + A batch of strong references to one or more identifiers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.02000000
              + LEAF + Title Sets + A batch of strong references to one or more titles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03020000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.03000000
              + LEAF + Alternative Title Sets + A batch of strong references to one or more alternative titles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03030000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + creatorEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.04000000
              + LEAF + Creator Entity Sets + A batch of strong references to one or more creators + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.05000000
              + LEAF + Subject Sets + A batch of strong references to one or more subjects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03050000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.06000000
              + LEAF + Description Sets + A batch of strong references to one or more descriptions + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publisherEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.07000000
              + LEAF + Publisher Entity Sets + A batch of strong references to one or more publishers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contributorEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.08000000
              + LEAF + Contributor Entity Sets + A batch of strong references to one or more contributors with varying roles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.09000000
              + LEAF + Date Sets + A batch of strong references to one or more dates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0a000000
              + LEAF + Type Sets + A batch of strong references to one or more types (object type, genre, target audience or audience level...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03080000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0b000000
              + LEAF + Language Sets + A batch of strong references to one or more languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03090000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0c000000
              + LEAF + Coverage Sets + A batch of strong references to one or more coverages (temporal, spatial) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0d000000
              + LEAF + Rights Sets + A batch of strong references to one or more expressions of rights + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0e000000
              + LEAF + Rating Sets + A batch of strong references to one or more ratings (user or audience rating) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.0f000000
              + LEAF + Version Set + A strong reference to a set of version information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01030000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistoryObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.10000000
              + LEAF + Publication History Set + A strong reference to a set of publication history information (published where, when, how) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.11000000
              + LEAF + Planning Set + A strong reference to a set of planning information (planned where, when, how) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01050000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.12000000
              + LEAF + Custom Relation Sets + A batch of strong references to one or more custom relations to other resources + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicRelationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.13000000
              + LEAF + Basic Relation Sets + A batch of strong references to one or more basic relations to other resources + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.14000000
              + LEAF + Format Sets + A batch of strong references to one or more formats in which the resource exists + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.15000000
              + LEAF + Part Sets + A batch of strong references to one or more parts/segments (editorial, technical parameter timeline...) within the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03100000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceRatingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.16000000
              + LEAF + Audience Rating Sets + The audience rating for a media resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.17000000
              + LEAF + Event Sets + Events related to the media resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaInformation +
                urn:smpte:ul:060e2b34.01010101.0d020103.00000000
              + NODE + Metadata Schema Information + A set of schema related properties + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchema +
                urn:smpte:ul:060e2b34.01010101.0d020103.01000000
              + LEAF + Metadata Schema + The name of the reference schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaVersion +
                urn:smpte:ul:060e2b34.01010101.0d020103.02000000
              + LEAF + Metadata Schema Version + The version of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFrameworkTextLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020103.03000000
              + LEAF + Metadata Framework Text Language + Codes assigned by ISO 639-1 for the identification of languages. The (main) language of the metadata + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataNamespacePrefix +
                urn:smpte:ul:060e2b34.01010101.0d020103.04000000
              + LEAF + Metadata Namespace Prefix + The prefix associated with EBUCore metadata namespace in the xml domain + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataNamespace +
                urn:smpte:ul:060e2b34.01010101.0d020103.05000000
              + LEAF + Metadata Namespace + The namespace of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataProviderEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020103.06000000
              + LEAF + Metadata Provider Entity Set + A strong reference to ane entity identified as the provider of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataDateLastModified +
                urn:smpte:ul:060e2b34.01010101.0d020103.07000000
              + LEAF + Metadata Date Last Modified + The date when the schema was last modified/updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTimeLastModified +
                urn:smpte:ul:060e2b34.01010101.0d020103.08000000
              + LEAF + Metadata Time Last Modified + The time when the schema was last modified/updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifier +
                urn:smpte:ul:060e2b34.01010101.0d020104.00000000
              + NODE + Identifier + A set of attributes to qualify an identifier associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierValue +
                urn:smpte:ul:060e2b34.01010101.0d020104.01000000
              + LEAF + Identifier Value + The value of the identifier attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierNote +
                urn:smpte:ul:060e2b34.01010101.0d020104.02000000
              + LEAF + Identifier Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.03000000
              + LEAF + Identifier Type Group Set + A strong reference to an attribute type group to specify the type of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.04000000
              + LEAF + Identifier Format Group Set + A strong reference to an attribute format group to specify the format of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.05000000
              + LEAF + Identifier Attributor Entity Set + A strong reference to an entity object to specify the authority attributing of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + title +
                urn:smpte:ul:060e2b34.01010101.0d020105.00000000
              + NODE + Title + A set of attributes to qualify a title by which a resource is known + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020105.01000000
              + LEAF + Title Attribution Date + The date when the title was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleNote +
                urn:smpte:ul:060e2b34.01010101.0d020105.02000000
              + LEAF + Title Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020105.03000000
              + LEAF + Title Value Sets + A set of main titles of a resource e.g. in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleLength +
                urn:smpte:ul:060e2b34.01010101.0d020105.04000000
              + LEAF + Title Length + The length of the title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020105.05000000
              + LEAF + Title Geographical Scope + The geographical scope within which the title applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020105.06000000
              + LEAF + Title Geographical Exclusion Scope + The geographical scope within which the title does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020105.07000000
              + LEAF + Title Type Group Set + To specify a custom kind of title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitle +
                urn:smpte:ul:060e2b34.01010101.0d020106.00000000
              + NODE + Alternative Title + A set of attributes to qualify an alternative title by which a resource is known + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020106.01000000
              + LEAF + Alternative Title Attribution Date + The date when the alternative title was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleNote +
                urn:smpte:ul:060e2b34.01010101.0d020106.02000000
              + LEAF + Alternative Title Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020106.03000000
              + LEAF + Alternative Title Value Sets + A set of alternative titles of a resource e.g. in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020106.04000000
              + LEAF + Alternative Title Type Group Set + A strong reference to an attribute type group to specify the type of the alternative title (e.g. "secondary") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleStatusGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020106.05000000
              + LEAF + Alternative Title Status Group Set + A strong reference to an attribute type group to specify the status of the alternative title (e.g. "working") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01080000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleLength +
                urn:smpte:ul:060e2b34.01010101.0d020106.06000000
              + LEAF + Alternative Title Length + The length of the alternative title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020106.07000000
              + LEAF + Alternative Title Geographical Scope + The geographical scope within which the alternative title applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020106.08000000
              + LEAF + Alternative Title Geographical Exclusion Scope + The geographical scope within which the alternative title does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + creator +
                urn:smpte:ul:060e2b34.01010101.0d020107.00000000
              + NODE + Creator + A creator of the resource e.g. personla behind the camera + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subject +
                urn:smpte:ul:060e2b34.01010101.0d020108.00000000
              + NODE + Subject + A subject associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectCode +
                urn:smpte:ul:060e2b34.01010101.0d020108.01000000
              + LEAF + Subject Code + A code to express the subject associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectNote +
                urn:smpte:ul:060e2b34.01010101.0d020108.02000000
              + LEAF + Subject Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020108.03000000
              + LEAF + Subject Value Sets + A batch of strong references to textual values of the subject associated to the media resource optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectDefinitionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020108.04000000
              + LEAF + Subject Definition Sets + A definition of the subject + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020108.05000000
              + LEAF + Subject Type Group Set + A strong reference to an attribute type group to specify the type of subject being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020108.06000000
              + LEAF + Subject Attributor Entity Set + A strong reference to an entity object to specify the authority attributing the subject + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + description +
                urn:smpte:ul:060e2b34.01010101.0d020109.00000000
              + NODE + Description + A description of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionNote +
                urn:smpte:ul:060e2b34.01010101.0d020109.01000000
              + LEAF + Description Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020109.02000000
              + LEAF + Description Value Sets + The description text optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020109.03000000
              + LEAF + Description Type Group Set + A strong reference to an attribute type group defining the type of description (e.g. "summary" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020109.04000000
              + LEAF + DescriptionAttributorEntity Set + A strong reference to an entity object to specify the authority attributing the description + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionLength +
                urn:smpte:ul:060e2b34.01010101.0d020109.05000000
              + LEAF + DescriptionLength + The length of the description + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020109.06000000
              + LEAF + DescriptionGeographicalScope + The geographical scope within which the description applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020109.07000000
              + LEAF + DescriptionGeographicalExclusionScope + The geographical scope within which the description does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020109.08000000
              + LEAF + DescriptionAttributionDate + The date when the description was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionCastFlag +
                urn:smpte:ul:060e2b34.01010101.0d020109.09000000
              + LEAF + DescriptionCastFlag + A flag to indicate if the description contains information about the cast or crew + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publisher +
                urn:smpte:ul:060e2b34.01010101.0d02010a.00000000
              + NODE + Publisher + A publisher of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contributor +
                urn:smpte:ul:060e2b34.01010101.0d02010b.00000000
              + NODE + Contributor + A contributor to the resource optionally associated with a specific role + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + date +
                urn:smpte:ul:060e2b34.01010101.0d02010c.00000000
              + NODE + Date + Definitions of key dates associated with a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateCreated +
                urn:smpte:ul:060e2b34.01010101.0d02010c.01000000
              + LEAF + Date Created + The date YYYY:MM:DD when the resource was created + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearCreated +
                urn:smpte:ul:060e2b34.01010101.0d02010c.02000000
              + LEAF + Year Created + The year YYYY when the resource was created + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateIssued +
                urn:smpte:ul:060e2b34.01010101.0d02010c.03000000
              + LEAF + Date Issued + The date YYYY:MM:DD when the resource was issued + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearIssued +
                urn:smpte:ul:060e2b34.01010101.0d02010c.04000000
              + LEAF + Year Issued + The year YYYY when the resource was issued + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateModified +
                urn:smpte:ul:060e2b34.01010101.0d02010c.05000000
              + LEAF + Date Modified + The date YYYY:MM:DD when the resource was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearModified +
                urn:smpte:ul:060e2b34.01010101.0d02010c.06000000
              + LEAF + Year Modified + The year YYYY when the resource was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateDigitized +
                urn:smpte:ul:060e2b34.01010101.0d02010c.07000000
              + LEAF + Date Digitized + The date YYYY:MM:DD when the resource was digitized + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearDigitized +
                urn:smpte:ul:060e2b34.01010101.0d02010c.08000000
              + LEAF + Year Digitized + The year YYYY when the resource was digitized + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateReleased +
                urn:smpte:ul:060e2b34.01010101.0d02010c.09000000
              + LEAF + Date Released + The date YYYY:MM:DD when the resource was released + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearReleased +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0a000000
              + LEAF + Year Released + The year YYYY when the resource was released + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateCopyrighted +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0b000000
              + LEAF + Date Copyrighted + The date YYYY:MM:DD when the resource was copyrighted + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearCopyrighted +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0c000000
              + LEAF + Year Copyrighted + The year YYYY when the resource was copyrighted + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateNote +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0d000000
              + LEAF + Date Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0e000000
              + LEAF + Alternative Date Sets + A batch of strong references to custom dates which purpose/type is indicated using a type group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + precision +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0f000000
              + LEAF + Precision + Additional information on the accuracy of the date provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateType +
                urn:smpte:ul:060e2b34.01010101.0d02010d.00000000
              + NODE + Date Type + Definition of a generic date type for the definition of custom dates + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateValue +
                urn:smpte:ul:060e2b34.01010101.0d02010d.01000000
              + LEAF + Date Value + A date YYYY:MM:DD + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textualDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010d.02000000
              + LEAF + Textual Date Sets + A batch of strong references to dates in free text e.g. "April 18th, 2014" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010d.03000000
              + LEAF + Date Type Group Set + A strong reference to an attribute type group to specify the custom type of date being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010d.04000000
              + LEAF + Date Format Group Set + A strong reference to an attribute format group to specify the custom format of date being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + type +
                urn:smpte:ul:060e2b34.01010101.0d02010e.00000000
              + NODE + Type + A type associated with a media resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeNote +
                urn:smpte:ul:060e2b34.01010101.0d02010e.01000000
              + LEAF + Type Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.02000000
              + LEAF + Type Value Sets + A batch of strong references to one or more type values optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectTypeObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.03000000
              + LEAF + Object Type Sets + A batch of strong references to one or more object types (e.g. clip, segment, item, series, episode) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03130000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.04000000
              + LEAF + Genre Sets + A batch of strong references to one or more genres associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03140000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.05000000
              + LEAF + Target Audience Sets + A batch of strong references to one or more target audiences / levels associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010e.06000000
              + LEAF + Type Type Group Set + A strong reference to the type of type if neither "object type" nor "genre" nor "target audience" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceLevelObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.07000000
              + LEAF + Audience Level Sets + To define the level of destined audience. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectType +
                urn:smpte:ul:060e2b34.01010101.0d02010f.00000000
              + NODE + Object Type + A strong reference to a type of (business) object (e.g. clip, segment, item, series, episode...) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010f.01000000
              + LEAF + Object Type Group Set + A strong reference to an attribute type group to specify a type of (business) object (e.g. clip, segment, item, series, episode...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genre +
                urn:smpte:ul:060e2b34.01010101.0d020110.00000000
              + NODE + Genre + The genre of the resource, e.g. news, drama, sport + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020110.01000000
              + LEAF + Genre Type Group Set + A strong reference to an attribute type group e.g. for reference to a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreLevel +
                urn:smpte:ul:060e2b34.01010101.0d020110.02000000
              + LEAF + Genre Level + An optional level of ranking associated with genre in case several values are provided for a resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudience +
                urn:smpte:ul:060e2b34.01010101.0d020111.00000000
              + NODE + Target Audience + The target audience or audience level for which a media resource has been commissioned + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceReason +
                urn:smpte:ul:060e2b34.01010101.0d020111.01000000
              + LEAF + Target Audience Reason + Free text to explain the reason for this classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020111.02000000
              + LEAF + Target Audience Link To Logo + A locator to a visual representation of the classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d020111.03000000
              + LEAF + Target Audience Not Rated Flag + A flag to signal if the content has not been rated ("1" for true) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d020111.04000000
              + LEAF + Target Audience Adult Content Flag + A flag to signal if this is adult content ("1" for true) or not + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020111.05000000
              + LEAF + Target Audience Type Group Set + A strong reference to an attribute type group to further specify the type of target classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020111.06000000
              + LEAF + Target Audience Region Sets + A batch of strong references to regions defining the geographical scope within which the target classification applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020111.07000000
              + LEAF + Target Audience Exclusion Region Sets + A batch of strong references to regions defining the geographical scope within which the target classification does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020111.08000000
              + LEAF + Target Audience Format Group Set + A strong reference to an attribute format group to further specify the format used to express target classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + language +
                urn:smpte:ul:060e2b34.01010101.0d020112.00000000
              + NODE + Language + A set to define languages and their usage in a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageCode +
                urn:smpte:ul:060e2b34.01010101.0d020112.01000000
              + LEAF + Language Code + Codes assigned by BCP-47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020112.02000000
              + LEAF + Language Value Object + Language name assigned by BCP-47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageNote +
                urn:smpte:ul:060e2b34.01010101.0d020112.03000000
              + LEAF + Language Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languagePurposeObject +
                urn:smpte:ul:060e2b34.01010101.0d020112.04000000
              + LEAF + Language Purpose Set + A reference to an attribute type group to define the function / purpose associated with the language + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverage +
                urn:smpte:ul:060e2b34.01010101.0d020113.00000000
              + NODE + Coverage + Temporal and spatial information about the resource (factual or depicted) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.01000000
              + LEAF + Coverage Value Set + A strong reference to a general textual annotation to describe coverage information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + spatialObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.02000000
              + LEAF + Spatial Set + A strong reference to a spatial description object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01090000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.03000000
              + LEAF + Temporal Set + A strong reference to a temporal description object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.04000000
              + LEAF + Coverage Type Group Set + A strong reference to an attribute type group to specify the type of coverage information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + spatial +
                urn:smpte:ul:060e2b34.01010101.0d020114.00000000
              + NODE + Spatial + A set of attributes to provide spatial information + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020114.01000000
              + LEAF + Location Sets + A batch of strong references to location objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + location +
                urn:smpte:ul:060e2b34.01010101.0d020115.00000000
              + NODE + Location + Location details + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationID +
                urn:smpte:ul:060e2b34.01010101.0d020115.01000000
              + LEAF + Location ID + An identifier associated with a location + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationCode +
                urn:smpte:ul:060e2b34.01010101.0d020115.02000000
              + LEAF + Location Code + A code associated with a location + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationDefinitionNote +
                urn:smpte:ul:060e2b34.01010101.0d020115.03000000
              + LEAF + Location Definition Note + A reference to an attribute type group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020115.04000000
              + LEAF + Location Name Sets + One or more names associated with a location optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.05000000
              + LEAF + Location Region Set + A reference to a region set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.06000000
              + LEAF + Location Type Group Set + A strong reference to an attribute type group to specify the type of location information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationCoordinatesObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.07000000
              + LEAF + Location Coordinates Set + A strong reference to associated coordinates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coordinates +
                urn:smpte:ul:060e2b34.01010101.0d020116.00000000
              + NODE + Coordinates + A set of attributes to define geographical coordinates + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + posX +
                urn:smpte:ul:060e2b34.01010101.0d020116.01000000
              + LEAF + PosX + The coordinates along an horizontal axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + posY +
                urn:smpte:ul:060e2b34.01010101.0d020116.02000000
              + LEAF + PosY + The coordinates along an vertical axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coordinatesFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020116.03000000
              + LEAF + Coordinates Format Group Set + A reference to an attribute format group to specify the format of coordinates being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporal +
                urn:smpte:ul:060e2b34.01010101.0d020117.00000000
              + NODE + Temporal + A set of attributes to provide temporal information (time, period of time, event) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalDefinitionNote +
                urn:smpte:ul:060e2b34.01010101.0d020117.01000000
              + LEAF + Temporal Definition Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodOfTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020117.02000000
              + LEAF + Period Of Time Sets + A batch of strong references to time period objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03180000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020117.03000000
              + LEAF + Temporal Type Group Set + A strong reference to an attribute type group to define the type of temporal information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodOfTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.00000000
              + NODE + Period Of Time + A set of attributes to define a time period + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodID +
                urn:smpte:ul:060e2b34.01010101.0d020118.01000000
              + LEAF + Period ID + An idenitifer associated with the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartYear +
                urn:smpte:ul:060e2b34.01010101.0d020118.02000000
              + LEAF + Period Start Year + The starting year of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartDate +
                urn:smpte:ul:060e2b34.01010101.0d020118.03000000
              + LEAF + Period Start Date + The starting date of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.04000000
              + LEAF + Period Start Time + The starting time of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndYear +
                urn:smpte:ul:060e2b34.01010101.0d020118.05000000
              + LEAF + Period End Year + The ending year of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndDate +
                urn:smpte:ul:060e2b34.01010101.0d020118.06000000
              + LEAF + Period End Date + The ending date of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.07000000
              + LEAF + Period End Time + The ending time of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020118.08000000
              + LEAF + Period Name Sets + A batch of strong references to names associated with the time period optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rights +
                urn:smpte:ul:060e2b34.01010101.0d020119.00000000
              + NODE + Rights + General information on rights of different nature associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsID +
                urn:smpte:ul:060e2b34.01010101.0d020119.01000000
              + LEAF + Rights ID + An ID for reference (similar to IDREf in XML) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsLink +
                urn:smpte:ul:060e2b34.01010101.0d020119.02000000
              + LEAF + Rights Link + A link to e.g. a webpage where the rights information can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsClearanceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020119.03000000
              + LEAF + Rights Clearance Flag + A flag indicating if rights have been cleared when set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsNote +
                urn:smpte:ul:060e2b34.01010101.0d020119.04000000
              + LEAF + Rights Note + A note with additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.05000000
              + LEAF + Rights Value Sets + A batch of strong references to rights concerning the resource: usage rights, exploitation issues... possibly in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + exploitationIssuesObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.06000000
              + LEAF + Exploitation Issues Sets + A batch of strong references to a textual annotation to express exploitation issues + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + copyrightStatementObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.07000000
              + LEAF + Copyright Statement Sets + A batch of strong references to a textual annotation to express copyright statements + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsCoverageObject +
                urn:smpte:ul:060e2b34.01010101.0d020119.08000000
              + LEAF + Rights Coverage Set + A strong reference to a coverage object to define temporal and spatial scope within which rights apply + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsHolderEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.09000000
              + LEAF + Rights Holder Entity Sets + A batch of strong references to entity objects to identify one or more rights holders + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0a000000
              + LEAF + Rights Contact Sets + A batch of strong references to contact objects to identify contacts + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020119.0b000000
              + LEAF + Rights Type Group Set + A reference to a type group set to define the type of rights being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsAttributedIDObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0c000000
              + LEAF + Rights Attributed ID Sets + A batch of strong references to identifiers, e.g. attributed by authorities + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsFormatReferenceObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0d000000
              + LEAF + Rights Format Reference Sets + A batch of references to formats to which the rights apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + processingRestrictionFlag +
                urn:smpte:ul:060e2b34.01010101.0d020119.0e000000
              + LEAF + Processing Restriction Flag + A flag to indicate resrictions on rights processing + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + disclaimerObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0f000000
              + LEAF + Disclaimer Sets + A batch of references to a textual annotation to express disclaimers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsCoverageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.10000000
              + LEAF + Rights Coverage Sets + To specify the temporal and spatial coverage of rights. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + version +
                urn:smpte:ul:060e2b34.01010101.0d02011a.00000000
              + NODE + Version + To define the version of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011a.01000000
              + LEAF + Version Value Sets + A batch of strong references to textual annotation expressing the version (e.g. TV, theatre, plane) optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011a.02000000
              + LEAF + Version Type Group Set + A reference to an attribute type group to specify the type of version information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rating +
                urn:smpte:ul:060e2b34.01010101.0d02011b.00000000
              + NODE + Rating + A set of attributes to define the rating attributed to the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingReason +
                urn:smpte:ul:060e2b34.01010101.0d02011b.01000000
              + LEAF + Rating Reason + Free text to explain the reason for attributing the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02011b.02000000
              + LEAF + Rating Link To Logo + A locator to a visual representation of the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011b.03000000
              + LEAF + Rating Not Rated Flag + A flag to signal if the content has not been rated ("1" for true) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011b.04000000
              + LEAF + Rating Adult Content Flag + A flag to signal if this is adult content ("1" for true) or not + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.05000000
              + LEAF + Rating Value Sets + A batch of strong references to a textual or numerical value given for rating optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingScaleMinValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.06000000
              + LEAF + Rating Scale Min Value Sets + A numerical or textual value defining the minimum range of a scale optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingScaleMaxValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.07000000
              + LEAF + Rating Scale Max Value Sets + A numerical or textual value defining the maximum range of a scale optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.08000000
              + LEAF + Rating Type Group Set + A strong reference to an attribute type group to define the type of rating being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.09000000
              + LEAF + Rating Format Group Set + A strong reference to an attribute format group to define the format in which rating is provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingProviderEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0a000000
              + LEAF + Rating Provider Entity Set + A strong reference to an entity object to identify the authority providing the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0b000000
              + LEAF + Rating Region Set + A strong reference to a region object + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingSystem +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0c000000
              + LEAF + Rating System + To provide information on the rating system in use, as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingEnvironment +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0d000000
              + LEAF + Rating Environment + To provide information on the rating environment, as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingLink +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0e000000
              + LEAF + Rating Link + A link to point e.g. to a web resource providing information on the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0f000000
              + LEAF + Rating Exclusion Region Sets + To specify regions where rating doesn't apply. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.10000000
              + LEAF + Rating Region Sets + To specify regions where rating applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEvent +
                urn:smpte:ul:060e2b34.01010101.0d02011c.00000000
              + NODE + Publication Event + A description of a publication event + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventName +
                urn:smpte:ul:060e2b34.01010101.0d02011c.01000000
              + LEAF + Publication Event Name + The name of the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventId +
                urn:smpte:ul:060e2b34.01010101.0d02011c.02000000
              + LEAF + Publication Event Identifier + An identifier attributed to the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + firstShowingFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.03000000
              + LEAF + First Showing Flag + A flag to identify a first publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + lastShowingFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.04000000
              + LEAF + Last Showing Flag + A flag to identify a last publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationDate +
                urn:smpte:ul:060e2b34.01010101.0d02011c.05000000
              + LEAF + Publication Date + The date of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationTime +
                urn:smpte:ul:060e2b34.01010101.0d02011c.06000000
              + LEAF + Publication Time + The time of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + scheduleDate +
                urn:smpte:ul:060e2b34.01010101.0d02011c.07000000
              + LEAF + Schedule date + The calendar date to which the publication time is associated with + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + freePublicationFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.08000000
              + LEAF + Free Publication Flag + A flag to identify a freely accessible publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + livePublicationFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.09000000
              + LEAF + Live Publication Flag + A flag to identify a live publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationNote +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0a000000
              + LEAF + Publication Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationFormatReferenceObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0b000000
              + LEAF + Publication Format Reference Set + A reference to the format in which content was published + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationRightsReferenceObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0c000000
              + LEAF + Publication Rights Reference Sets + A batch of references to the rights associated with the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0d000000
              + LEAF + Publication Region Sets + A batch of strong references to regions where the publication event has taken place + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0e000000
              + LEAF + Publication Medium Set + A strong reference to the definition of a medium of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0f000000
              + LEAF + Publication Channel Set + A strong reference to the definition of a channel of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.10000000
              + LEAF + Publication Service Set + A strong reference to the definition of a service of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + liveProductionFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.11000000
              + LEAF + Live Production Flag + A flag to indicate that production was being made live + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistory +
                urn:smpte:ul:060e2b34.01010101.0d02011d.00000000
              + NODE + Publication History + A summary of where and when the resource was published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011d.01000000
              + LEAF + Publication Event Sets + A batch of strong references to publication events + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistoryId +
                urn:smpte:ul:060e2b34.01010101.0d02011d.02000000
              + LEAF + Publication History Id + An identifier associated with a set of publication history information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannel +
                urn:smpte:ul:060e2b34.01010101.0d02011e.00000000
              + NODE + Publication Channel + A set of attributes to define a channel on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelName +
                urn:smpte:ul:060e2b34.01010101.0d02011e.01000000
              + LEAF + Publication Channel Name + The name of the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelId +
                urn:smpte:ul:060e2b34.01010101.0d02011e.02000000
              + LEAF + Publication Channel Identifier + An identifier attributed to the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02011e.03000000
              + LEAF + Publication Channel Link To Logo + A pointer to the location of a visual identifier of the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011e.04000000
              + LEAF + Publication Channel Type Set + A strong reference to an attribute type group to define the type of channel being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMedium +
                urn:smpte:ul:060e2b34.01010101.0d02011f.00000000
              + NODE + Publication Medium + A set of attributes to define the medium on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumName +
                urn:smpte:ul:060e2b34.01010101.0d02011f.01000000
              + LEAF + Publication Channel Name + The name of the publication medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumId +
                urn:smpte:ul:060e2b34.01010101.0d02011f.02000000
              + LEAF + Publication Medium Identifier + An identifier attributed to the publication medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011f.03000000
              + LEAF + Publication Medium Type Set + A strong reference to an attribute type group to define the type of medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationService +
                urn:smpte:ul:060e2b34.01010101.0d020120.00000000
              + NODE + Publication Service + A set of attributes to define the service on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceName +
                urn:smpte:ul:060e2b34.01010101.0d020120.01000000
              + LEAF + Publication Service Name + The name of the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020120.02000000
              + LEAF + Publication Service Link To Logo + A pointer to the location of a visual identifier of the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceSourceObject +
                urn:smpte:ul:060e2b34.01010101.0d020120.03000000
              + LEAF + Publication Service Source Set + A strong reference to an organization managing the service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceId +
                urn:smpte:ul:060e2b34.01010101.0d020120.04000000
              + LEAF + Publication Service Id + An identifier attributed to the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020120.05000000
              + LEAF + Publication Service Type Group Set + A strong reference to an attribute type group to define the type of service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entity +
                urn:smpte:ul:060e2b34.01010101.0d020121.00000000
              + NODE + Entity + A set of attributes to identifiy a participant and its role + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityID +
                urn:smpte:ul:060e2b34.01010101.0d020121.01000000
              + LEAF + Entity ID + An identifier attributed to the participant + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.02000000
              + LEAF + Entity Contact Sets + A batch of strong references to contact objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityOrganizationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.03000000
              + LEAF + Entity Organization Sets + A batch of strong references to organization objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityRoleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.04000000
              + LEAF + Entity Role Sets + A batch of strong references to role objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityAwardObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.05000000
              + LEAF + Entity Award Sets + To list awards received by a person or organization. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.06000000
              + LEAF + Entity Event Sets + To list events related to an Entity. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contact +
                urn:smpte:ul:060e2b34.01010101.0d020122.00000000
              + NODE + Contact + A set of attributes to provide personal information about a Contact / Person + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactID +
                urn:smpte:ul:060e2b34.01010101.0d020122.01000000
              + LEAF + Contact ID + An identifier attributed to the contact / person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + familiyName +
                urn:smpte:ul:060e2b34.01010101.0d020122.02000000
              + LEAF + Family Name + The family name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + givenName +
                urn:smpte:ul:060e2b34.01010101.0d020122.03000000
              + LEAF + Given Name + The first given name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + salutation +
                urn:smpte:ul:060e2b34.01010101.0d020122.04000000
              + LEAF + Salutation + Mr., Mrs, Ms , Pr., Dr. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + suffix +
                urn:smpte:ul:060e2b34.01010101.0d020122.05000000
              + LEAF + Suffix + Jr, Sr. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + occupation +
                urn:smpte:ul:060e2b34.01010101.0d020122.06000000
              + LEAF + Occupation + The occupation of the contact / person e.g. in an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + username +
                urn:smpte:ul:060e2b34.01010101.0d020122.07000000
              + LEAF + Username + To provide a username through which the contact is known + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + guestFlag +
                urn:smpte:ul:060e2b34.01010101.0d020122.08000000
              + LEAF + Guest Flag + A flag to indicate if the contact/person is a guest + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.09000000
              + LEAF + Contact Name Sets + A batch of strong references to provide one or more compound names (family + given names + salutation...) or for other purposes + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020122.0a000000
              + LEAF + Contact Type Group Set + A strong reference to an attribute type group to define the type of contact information (e.g. "business" or "private") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactDetailsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0b000000
              + LEAF + Contact Details Sets + A strong reference to a details object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactRelatedContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0c000000
              + LEAF + Contact Related Contact Sets + A batch of strong references to contact objects (entity) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + stageNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0d000000
              + LEAF + Stage Name Sets + The name given to the contact / person while on stage, e.g. a character name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genderObject +
                urn:smpte:ul:060e2b34.01010101.0d020122.0e000000
              + LEAF + Gender Set + An attribute to facilitate search on a particular gender, i.e. male or female.optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactRelatedInformationLinkObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0f000000
              + LEAF + Contact Related Information Link Sets + A batch of strong references to links to e.g. a webpage where more information can be found about the contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + otherGivenName +
                urn:smpte:ul:060e2b34.01010101.0d020122.10000000
              + LEAF + Other Given Name + A batch of strong references to given names other than the first given name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + birthDate +
                urn:smpte:ul:060e2b34.01010101.0d020122.11000000
              + LEAF + Birth date + The birth date of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deathDate +
                urn:smpte:ul:060e2b34.01010101.0d020122.12000000
              + LEAF + Death Date + The death date of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + birthPlace +
                urn:smpte:ul:060e2b34.01010101.0d020122.13000000
              + LEAF + Birth Place + The birth place of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nationality +
                urn:smpte:ul:060e2b34.01010101.0d020122.14000000
              + LEAF + Nationality + The nationality of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nickname +
                urn:smpte:ul:060e2b34.01010101.0d020122.15000000
              + LEAF + Nickname + The nickname of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + skill +
                urn:smpte:ul:060e2b34.01010101.0d020122.16000000
              + LEAF + Skill + The skill of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactLastUpdate +
                urn:smpte:ul:060e2b34.01010101.0d020122.17000000
              + LEAF + Contact Last Update + The date when the contact information has been last updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deathPlace +
                urn:smpte:ul:060e2b34.01010101.0d020122.18000000
              + LEAF + Death Place + To specify the place of death. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.19000000
              + LEAF + Affiliation Sets + To provide a list of present and past affiliations. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organization +
                urn:smpte:ul:060e2b34.01010101.0d020123.00000000
              + NODE + Organization + A set of attributes to provide Information about an organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationID +
                urn:smpte:ul:060e2b34.01010101.0d020123.01000000
              + LEAF + Organization ID + an identifier attributed to the organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020123.02000000
              + LEAF + Organization Link To Logo + A pointer to the location of a visual identifier of an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationCodeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.03000000
              + LEAF + Organization Code Sets + A batch of strong references to codes attributed to an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationRelatedInformationLinkObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.04000000
              + LEAF + Organization Related Information Link Sets + A batch of strong references to links to e.g. a webpage where more information can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.05000000
              + LEAF + Organization Name Sets + A batch of strong references to names associated with the organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDepartmentObject +
                urn:smpte:ul:060e2b34.01010101.0d020123.06000000
              + LEAF + Organization Department Set + A strong reference to a department within an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01100000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020123.07000000
              + LEAF + Organization Type Group Set + A strong reference to an attribute type group to define the type of organization being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDetailsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.08000000
              + LEAF + Organization Details Sets + A batch of strong references to details about an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationRelatedContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.09000000
              + LEAF + Organization Related Contact Sets + A batch of strong references to contact objects (entity) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDescription +
                urn:smpte:ul:060e2b34.01010101.0d020123.0a000000
              + LEAF + Organization Description + Information about an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationNationality +
                urn:smpte:ul:060e2b34.01010101.0d020123.0b000000
              + LEAF + Organization Nationality + The nationality of an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationLastUpdate +
                urn:smpte:ul:060e2b34.01010101.0d020123.0c000000
              + LEAF + Organization Last Update + The date when the organization information has been last updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + department +
                urn:smpte:ul:060e2b34.01010101.0d020124.00000000
              + NODE + Department + A set of attributes to describe a department within an organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + departmentID +
                urn:smpte:ul:060e2b34.01010101.0d020124.01000000
              + LEAF + Department ID + An identifier attributed to a department + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + departmentName +
                urn:smpte:ul:060e2b34.01010101.0d020124.02000000
              + LEAF + Department Name + The name of department within an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + details +
                urn:smpte:ul:060e2b34.01010101.0d020125.00000000
              + NODE + Details + A set of attributes to provide the details of a Contact / Person + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + webAddress +
                urn:smpte:ul:060e2b34.01010101.0d020125.01000000
              + LEAF + Web Address + The address of a web site + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + telephoneNumber +
                urn:smpte:ul:060e2b34.01010101.0d020125.02000000
              + LEAF + Telephone Number + A telephone number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mobileTelephoneNumber +
                urn:smpte:ul:060e2b34.01010101.0d020125.03000000
              + LEAF + Mobile Telephone Number + A mobile telephone number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + emailAddress +
                urn:smpte:ul:060e2b34.01010101.0d020125.04000000
              + LEAF + Email Address + An email address + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + detailsTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020125.05000000
              + LEAF + Details Type Group Set + A strong reference to an attribute type group to specify the type of details e.g. home or office + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + addressObject +
                urn:smpte:ul:060e2b34.01010101.0d020125.06000000
              + LEAF + Address Set + A strong reference to an address object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + address +
                urn:smpte:ul:060e2b34.01010101.0d020126.00000000
              + NODE + Address + The postal address of a contact or organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deliveryCode +
                urn:smpte:ul:060e2b34.01010101.0d020126.01000000
              + LEAF + Delivery Code + A delivery / postal code + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + townCityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.02000000
              + LEAF + Town City Sets + A batch of strong references to provide the names of the city optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countyStateObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.03000000
              + LEAF + County State Sets + A batch of strong references to provide the names of a county / state / region optionally in differnet languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.04000000
              + LEAF + Country Name Sets + A batch of strong references to provide the country names and code optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03200000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + addressLineObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.05000000
              + LEAF + Address Line Sets + A batch of strong references to address lines + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + region +
                urn:smpte:ul:060e2b34.01010101.0d020127.00000000
              + NODE + Region + A set of attributes to define a region as a country or a region / state or other geographical/administrative subdivision of a country + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryObject +
                urn:smpte:ul:060e2b34.01010101.0d020127.01000000
              + LEAF + Country Set + A strong reference to identifiy a country + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.013c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d020127.02000000
              + LEAF + Country Region Set + A strong reference to identifiy one or more region in a country + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundName +
                urn:smpte:ul:060e2b34.01010101.0d020128.00000000
              + NODE + Compound Name + A set of attributes to define a simple or compound name which purpose is defined by the type group and the format is defined by the format group + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameValue +
                urn:smpte:ul:060e2b34.01010101.0d020128.01000000
              + LEAF + Compound Name Value + The value of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020128.02000000
              + LEAF + Compound Name Type Group Set + A strong reference to a type group to define the purpose of use of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020128.03000000
              + LEAF + Compound Name Format Group Set + A strong reference to a format group to define the format of composition of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + role +
                urn:smpte:ul:060e2b34.01010101.0d020129.00000000
              + NODE + Role + A strong reference to a role/job and associated cost centre + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + costCenterReference +
                urn:smpte:ul:060e2b34.01010101.0d020129.01000000
              + LEAF + Cost Center Reference + The cost center reference against which activities associated to the role / job are being billed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + roleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020129.02000000
              + LEAF + Role Type Group Set + A strong reference to a role / job + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryType +
                urn:smpte:ul:060e2b34.01010101.0d02012a.00000000
              + NODE + Country Type + A set of attributes to define a country by its name or code + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02012a.01000000
              + LEAF + Country Type Group Set + A strong reference to an attribute type group to provide a country name or code + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + relations +
                urn:smpte:ul:060e2b34.01010101.0d02012b.00000000
              + NODE + Relations + A set of definitions for custom or basic predefined relations + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelation +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01000000
              + NODE + Custom Relation + A set of attributes to express a custom relation between resources + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationByName +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01010000
              + LEAF + Relation By Name + Related resource identified by name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationLink +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01020000
              + LEAF + Relation Link + Related resource identified by a URI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + runningOrderNumber +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01030000
              + LEAF + Running Order Number + The ranking number if member of an ordered group, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + totalNumberOfGroupMembers +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01040000
              + LEAF + Total Number Of Group Members + The total number of members of the related group, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + orderedGroupFlag +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01050000
              + LEAF + Ordered Group Flag + A flag indicating if a related group is ordered, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationNote +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01060000
              + LEAF + Custom relation Note + To provide additional contextual,information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01070000
              + LEAF + Custom Relation Type Group Set + A strong reference to an attribute type group to define the type of relation being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationIdentifierObject +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01080000
              + LEAF + Custom Relation Identifier Set + A strong reference to related resource identified by an identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicRelation +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02000000
              + NODE + Basic Relation + A set of predefined basic relations + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isVersionOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02010000
              + LEAF + Is Version Of + The resource from which the current version has been derived + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasVersion +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02020000
              + LEAF + Has Version + A version derived from the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isReplacedBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02030000
              + LEAF + Is Replaced By + A resource replacing the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + replaces +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02040000
              + LEAF + Replaces + A resource that the current resource replaces + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isRequiredBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02050000
              + LEAF + Is Required By + A resource requirring the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + requires +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02060000
              + LEAF + Requires + A resource that the current resourece requires + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isPartOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02070000
              + LEAF + Is Part Of + A resource that the current resources is a part of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasPart +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02080000
              + LEAF + Has Part + A resource that forms part of the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isReferencedBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02090000
              + LEAF + Is Referenced By + A resource that references the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + references +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020a0000
              + LEAF + References + A resource referenced by the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isFormatOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020b0000
              + LEAF + Is Format Of + A resource defining the format with the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasFormat +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020c0000
              + LEAF + Has Format + A resource defining the format with the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isEpisodeOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020d0000
              + LEAF + Is Episode Of + A series that the current resource is an episode of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isMemberOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020e0000
              + LEAF + Is Member Of + A group that the current resource is a member of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasMember +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020f0000
              + LEAF + Has Member + A resource that is a member of a group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasEpisode +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02100000
              + LEAF + Has Episode + A series that the current resource is an episode of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isSeasonOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02110000
              + LEAF + Is Season Of + A season that the current resource is a series of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasSeason +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02120000
              + LEAF + Has Season + A season that the current resource is a series of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isNextInSequence +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02130000
              + LEAF + Is Next In Sequence + A resource that comes next to the current resource in a sequence + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + followsInSequence +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02140000
              + LEAF + Follows In Sequence + A resource that the current resource follows in a sequence + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isRelatedTo +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02150000
              + LEAF + Is Related To + A resource to which the current resource in related + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + sameAs +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02160000
              + LEAF + Same As + A resource that is the same as the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasSeries +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02170000
              + LEAF + Has Series + To identify series e.g. in a season. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isSeriesOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02180000
              + LEAF + Is Series Of + To identify a parent season or brand. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planning +
                urn:smpte:ul:060e2b34.01010101.0d02012c.00000000
              + NODE + Planning + A set of attributes needed to define a planning + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d02012c.01000000
              + LEAF + Planning Event Objects + A batch of strong references to planning/publication events + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningId +
                urn:smpte:ul:060e2b34.01010101.0d02012c.02000000
              + LEAF + Planning Id + An identifyer associated with a planning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + attributeGroups +
                urn:smpte:ul:060e2b34.01010101.0d02012d.00000000
              + NODE + Attribute groups + The definitions of attribute groups used in EBUCore + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01000000
              + NODE + Type Group + A set of attributes used to define a type + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01010000
              + LEAF + Type Group Thesaurus + The thesaurus from which the type originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01020000
              + LEAF + Type Group Label + A universal label or free text to express the type + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01030000
              + LEAF + Type Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01040000
              + LEAF + Type Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01050000
              + LEAF + Type Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01060000
              + LEAF + Type Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01070000
              + LEAF + Type Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01080000
              + LEAF + Type Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02000000
              + NODE + Format Group + A set of attributes used to define a format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02010000
              + LEAF + Format Group Thesaurus + The thesaurus from which the format originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02020000
              + LEAF + Format Group Label + A universal label or free text to express the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02030000
              + LEAF + Format Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02040000
              + LEAF + Format Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02050000
              + LEAF + Format Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02060000
              + LEAF + Format Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02070000
              + LEAF + Format Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02080000
              + LEAF + Format Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03000000
              + NODE + Status Group + A set of attributes used to define a status + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03010000
              + LEAF + Status Group Thesaurus + The thesaurus from which the status originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03020000
              + LEAF + Status Group Label + A universal label or free text to express the status + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03030000
              + LEAF + Status Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03040000
              + LEAF + Status Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03050000
              + LEAF + Status Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03060000
              + LEAF + Status Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03070000
              + LEAF + Status Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03080000
              + LEAF + Status Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textualAnnotation +
                urn:smpte:ul:060e2b34.01010101.0d02012e.00000000
              + NODE + Textual Annotation + A set of attributes to provide a a textual annotation + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + text +
                urn:smpte:ul:060e2b34.01010101.0d02012e.01000000
              + LEAF + Text + Free text in a textual annotation + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012e.02000000
              + LEAF + Text Language Code + Codes assigned by RFC 5646 /BCP 47 for the identification of languages. The language in which the annotation is expressed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicLink +
                urn:smpte:ul:060e2b34.01010101.0d02012f.00000000
              + NODE + Basic Link + A set of attributes to provide a a link in the form of a URI such as a URL + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicLinkUri +
                urn:smpte:ul:060e2b34.01010101.0d02012f.01000000
              + LEAF + Basic Link Uri + The URI value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + format +
                urn:smpte:ul:060e2b34.01010101.0d020130.00000000
              + NODE + Format + A set of attributes to provide structural metadata defining the format of material associated with a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatID +
                urn:smpte:ul:060e2b34.01010101.0d020130.01000000
              + LEAF + Format ID + An identifier attributed to the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020130.02000000
              + LEAF + Format Version ID + An identifier attributed to a version of the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatName +
                urn:smpte:ul:060e2b34.01010101.0d020130.03000000
              + LEAF + Format Name + A name attributed to the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020130.04000000
              + LEAF + Format Definition + A definition associated with the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatYearCreated +
                urn:smpte:ul:060e2b34.01010101.0d020130.05000000
              + LEAF + Format Year Created + The year when this format was defined for the first time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDateCreated +
                urn:smpte:ul:060e2b34.01010101.0d020130.06000000
              + LEAF + Format Date Created + The date when this format was defined for the first time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatOverallDurationTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.07000000
              + LEAF + Format Overall Duration Set + The overall duration of the material + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatEditRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.08000000
              + LEAF + Format Edit Rate Set + A strong reference to a rational object to express an edit rate + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatContainerFormatObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.09000000
              + LEAF + Format Container Format Set + A strong reference to a container format object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMediumObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.0a000000
              + LEAF + Format Medium Set + A strong reference to a medium object + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01130000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatPackageInfoObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.0b000000
              + LEAF + Format Package Info Set + A string reference to a package info object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01140000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatAudioFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0c000000
              + LEAF + Format Audio Format Sets + A batch of strong reference to an audioFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03220000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatVideoFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0d000000
              + LEAF + Format Video Format Sets + A batch of strong reference to a videoFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03230000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatImageFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0e000000
              + LEAF + Format Image Format Sets + A batch of strong reference to a imageFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03240000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDataFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0f000000
              + LEAF + Format Data Format Sets + A batch of strong reference to a dataFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03250000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatSigningFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.10000000
              + LEAF + Format Signing Format Sets + A batch of strong reference to a signingFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03260000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.11000000
              + LEAF + Format Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.12000000
              + LEAF + Format Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.13000000
              + LEAF + Format Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.14000000
              + LEAF + Format Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.15000000
              + LEAF + Format Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.16000000
              + LEAF + Format Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.17000000
              + LEAF + Format Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.18000000
              + LEAF + Format Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.19000000
              + LEAF + Format Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1a000000
              + LEAF + Format Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1b000000
              + LEAF + Format Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1c000000
              + LEAF + Format Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1d000000
              + LEAF + Format Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDateModifiedObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.1e000000
              + LEAF + Format Modified Date + A strong reference to a date when the format definition was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01240000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.1f000000
              + LEAF + Format Value Set + A strong reference to a Value defining the format as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.20000000
              + LEAF + Format Type Group Set + A strong reference to a type group to define the type of format being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatAudioFormatExtendedObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.21000000
              + LEAF + Format Audio Format Extended Sets + A batch of strong references to extended audio format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03340000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatStartTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.22000000
              + LEAF + Format Start Time Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatEndTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.23000000
              + LEAF + Format End Time Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDurationTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.24000000
              + LEAF + Format Duration Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMetadataFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.25000000
              + LEAF + Format Metadata Format Sets + A batch of strong references to metadata format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03480000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTimecodeFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.26000000
              + LEAF + Format Duration Sets + A batch of strong references to timecode format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03490000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMediumObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.27000000
              + LEAF + Format Medium Sets + To list the different medium in which the media resource is available. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormat +
                urn:smpte:ul:060e2b34.01010101.0d020131.00000000
              + NODE + Video Format + A set of attributes defining the video format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020131.01000000
              + LEAF + Video Format ID + An identifier attributed to the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020131.02000000
              + LEAF + Video Format Version ID + An identifier attributed to a version of the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020131.03000000
              + LEAF + Video Format Name + A name attributed to the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020131.04000000
              + LEAF + Video Format Definition + A definition associated with the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.05000000
              + LEAF + Video Bit Rate Set + The average bit rate by default in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoMaxBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.06000000
              + LEAF + Video Max Bit Rate Set + The maximum bit rate by default in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoBitRateMode +
                urn:smpte:ul:060e2b34.01010101.0d020131.07000000
              + LEAF + Video Bit Rate Mode + the bitrate mode: constant, variable, or none if unknown + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoScanningFormat +
                urn:smpte:ul:060e2b34.01010101.0d020131.08000000
              + LEAF + Video Scanning Format + A code that specifies the scanning structure e.g. progressive or interlaced + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoScanningOrder +
                urn:smpte:ul:060e2b34.01010101.0d020131.09000000
              + LEAF + Video Scanning Order + to express the scanning order from top or bottom + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoActiveLines +
                urn:smpte:ul:060e2b34.01010101.0d020131.0a000000
              + LEAF + Video Active Lines + The number of active picture lines + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.0b000000
              + LEAF + Video Noise Filter Flag + A flag to indicate if a noise filter was used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.0c000000
              + LEAF + Video Noise Filter Vendor Id + An identifier associated with a noise filter vendor + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01640000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + video3DFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.0d000000
              + LEAF + Video 3D Flag + A flag to indicate if the video is for stereoscopic rendition + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoAspectRatioObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.0e000000
              + LEAF + Video Aspect Ratio Sets + A batch of strong references to express aspect ratios of the image of different types + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03350000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFrameRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.0f000000
              + LEAF + Video Frame Rate Set + A strong reference to a rational object to define the frame rate + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoHeightObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.10000000
              + LEAF + Video Height Sets + A strong reference to a height object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03360000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoWidthObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.11000000
              + LEAF + Video Width Sets + A strong reference to a width object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.12000000
              + LEAF + Video Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.13000000
              + LEAF + Video Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.14000000
              + LEAF + Video Track Sets + A batch of strong references to define video track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.15000000
              + LEAF + Video Presence Flag + A flag to signal the presence of video in the material + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoRegionDelimXObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.16000000
              + LEAF + Video Region Delim X Set + A strong reference to a dimension object to define the abscisse coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoRegionDelimYObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.17000000
              + LEAF + Video Region Delim Y Set + A strong reference to a dimension object to define the ordinate coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020131.18000000
              + LEAF + Video Format Profile + To define a profile of a video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020131.19000000
              + LEAF + Video Format Profile level + To define a level of a video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNote +
                urn:smpte:ul:060e2b34.01010101.0d020131.1a000000
              + LEAF + Video Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1b000000
              + LEAF + Video Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1c000000
              + LEAF + Video Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1d000000
              + LEAF + Video Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1e000000
              + LEAF + Video Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1f000000
              + LEAF + Video Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.20000000
              + LEAF + Video Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.21000000
              + LEAF + Video Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.22000000
              + LEAF + Video Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.23000000
              + LEAF + Video Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.24000000
              + LEAF + Video Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.25000000
              + LEAF + Video Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.26000000
              + LEAF + Video Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.27000000
              + LEAF + Video Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFilterObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.28000000
              + LEAF + Video Filter Sets + To identify filters that have been applied to the video resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormat +
                urn:smpte:ul:060e2b34.01010101.0d020132.00000000
              + NODE + Image Format + A set of attributes defining the image format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020132.01000000
              + LEAF + Image Format ID + An identifier attributed to the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020132.02000000
              + LEAF + Image Format Version ID + An identifier attributed to the version of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020132.03000000
              + LEAF + Image Format Name + A name attributed to the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020132.04000000
              + LEAF + Image Format Definition + A definition associated with the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageOrientation +
                urn:smpte:ul:060e2b34.01010101.0d020132.05000000
              + LEAF + Image Orientation + The orientation of the picture (e.g. portrait or landscape) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageAspectRatioObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.06000000
              + LEAF + Image Aspect Ratio Set + A strong reference to an aspect ratio of the image + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.07000000
              + LEAF + Image Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.08000000
              + LEAF + Image Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageHeightObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.09000000
              + LEAF + Image Height Set + A strong reference to a height object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageWidthObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0a000000
              + LEAF + Image Width Set + A strong reference to a width object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imagePresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020132.0b000000
              + LEAF + Image Presence Flag + A flag to indicate the presence of an image + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageRegionDelimXObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0c000000
              + LEAF + Image Region Delim X Set + A strong reference to a dimension object to define the abscisse coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageRegionDelimYObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0d000000
              + LEAF + Image region Delim Y Set + A strong reference to a dimension object to define the ordinate coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020132.0e000000
              + LEAF + Image Format Profile + To define a profile of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020132.0f000000
              + LEAF + Image Format Profile Level + To define a level of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageNote +
                urn:smpte:ul:060e2b34.01010101.0d020132.10000000
              + LEAF + Image Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.11000000
              + LEAF + Image Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.12000000
              + LEAF + Image Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.13000000
              + LEAF + Image Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.14000000
              + LEAF + Image Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.15000000
              + LEAF + Image Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.16000000
              + LEAF + Image Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.17000000
              + LEAF + Image Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.18000000
              + LEAF + Image Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.19000000
              + LEAF + Image Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1a000000
              + LEAF + Image Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1b000000
              + LEAF + Image Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1c000000
              + LEAF + Image Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1d000000
              + LEAF + Image Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormat +
                urn:smpte:ul:060e2b34.01010101.0d020133.00000000
              + NODE + Audio Format + A set of attributes defining the audio format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020133.01000000
              + LEAF + Audio Format ID + An identifier attributed to the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020133.02000000
              + LEAF + Audio Format Version ID + An identifier attributed to the version of the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020133.03000000
              + LEAF + Audio Format Name + A name attributed to the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020133.04000000
              + LEAF + Audio Format Definition + A definition associated with the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackConfiguration +
                urn:smpte:ul:060e2b34.01010101.0d020133.05000000
              + LEAF + Audio Track Configuration + A description of the audio track configuration (e.g. R48 & R123 EBU) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingSize +
                urn:smpte:ul:060e2b34.01010101.0d020133.06000000
              + LEAF + Audio Sampling Size + The maximum number of significant bits for the value without compression. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingType +
                urn:smpte:ul:060e2b34.01010101.0d020133.07000000
              + LEAF + Audio Sampling Type + The type of samples + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTotalNumberOfChannels +
                urn:smpte:ul:060e2b34.01010101.0d020133.08000000
              + LEAF + Audio Total Number Of Channels + The total number of audio channels/tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.09000000
              + LEAF + Audio Bit Rate Set + The average bit rate in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMaxBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0a000000
              + LEAF + Audio Max Bit Rate Set + The maximum bit rate in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBitRateMode +
                urn:smpte:ul:060e2b34.01010101.0d020133.0b000000
              + LEAF + Audio Bit Rate Mode + The audio bit rate mode: constant, variable, or none if unknown + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0c000000
              + LEAF + Audio Sampling Rate Set + A strong reference toa rational to express the rate at which audio is sampled (in samples per second) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0d000000
              + LEAF + Audio Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0e000000
              + LEAF + Audio Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.0f000000
              + LEAF + Audio Track Sets + A batch of strong references to track objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020133.10000000
              + LEAF + Audio Presence Flag + A flag to indicate the presence of audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020133.11000000
              + LEAF + Audio Format Profile + To define a profile of an audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020133.12000000
              + LEAF + Audio Format Profile Level + To define a level of an audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioNote +
                urn:smpte:ul:060e2b34.01010101.0d020133.13000000
              + LEAF + Audio Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.14000000
              + LEAF + Audio Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.15000000
              + LEAF + Audio Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.16000000
              + LEAF + Audio Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.17000000
              + LEAF + Audio Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.18000000
              + LEAF + Audio Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.19000000
              + LEAF + Audio Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1a000000
              + LEAF + Audio Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1b000000
              + LEAF + Audio Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1c000000
              + LEAF + Audio Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1d000000
              + LEAF + Audio Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1e000000
              + LEAF + Audio Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1f000000
              + LEAF + Audio Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.20000000
              + LEAF + Audio Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioDescriptionPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020133.21000000
              + LEAF + Audio Description Presence Flag + To signal the presence of audioDescription + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFilterObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.22000000
              + LEAF + Audio Filter Sets + To describe a filter applied to audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + track +
                urn:smpte:ul:060e2b34.01010101.0d020134.00000000
              + NODE + Track + A set of attributes describing tracks (audio and video) in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackID +
                urn:smpte:ul:060e2b34.01010101.0d020134.01000000
              + LEAF + Track ID + An identifier attributed to the track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackName +
                urn:smpte:ul:060e2b34.01010101.0d020134.02000000
              + LEAF + Track Name + A name attributed to the track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020134.03000000
              + LEAF + Track Language Code + Codes assigned by RFC 5646/BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020134.04000000
              + LEAF + Track Type Group Set + A strong reference to an attribute type group to define the type of the track being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormat +
                urn:smpte:ul:060e2b34.01010101.0d020135.00000000
              + NODE + Data Format + A set of attributes to describe data carried in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020135.01000000
              + LEAF + Data Format ID + An identifier attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020135.02000000
              + LEAF + Data Format Version ID + A version identifier attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020135.03000000
              + LEAF + Data Format Name + A name attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020135.04000000
              + LEAF + Data Format Definition + A definition of the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackId +
                urn:smpte:ul:060e2b34.01010101.0d020135.05000000
              + LEAF + Data Track ID + An identifier associated to the data track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020135.06000000
              + LEAF + Data Track Name + A name associated to the data track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020135.07000000
              + LEAF + Data Track Language Code + A language associated to the data track based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020135.08000000
              + LEAF + Data Presence Flag + A flag to indicate the presence of data + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.09000000
              + LEAF + Captioning Sets + A batch of strong references to captioning objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03390000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.0a000000
              + LEAF + Subtitling Sets + A batch of strong references to subtitling objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.0b000000
              + LEAF + Ancillary Data Sets + A batch of strong references to ancillary data objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020135.0c000000
              + LEAF + Data Codec Object + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020135.0d000000
              + LEAF + Data Format Profile + To define a profile of a data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020135.0e000000
              + LEAF + Data Format Profile Level + To define a level of a data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataNote +
                urn:smpte:ul:060e2b34.01010101.0d020135.0f000000
              + LEAF + Data Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.10000000
              + LEAF + Data Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.11000000
              + LEAF + Data Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.12000000
              + LEAF + Data Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.13000000
              + LEAF + Data Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.14000000
              + LEAF + Data Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.15000000
              + LEAF + Data Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.16000000
              + LEAF + Data Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.17000000
              + LEAF + Data Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.18000000
              + LEAF + Data Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.19000000
              + LEAF + Data Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1a000000
              + LEAF + Data Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1b000000
              + LEAF + Data Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1c000000
              + LEAF + Data Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioning +
                urn:smpte:ul:060e2b34.01010101.0d020136.00000000
              + NODE + Captioning + A set of attributes to describe captioning in the Material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020136.01000000
              + LEAF + Captioning Format ID + An Identifier attributed to the captioning format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020136.02000000
              + LEAF + Captioning Format Name + A name attributed to the captioning format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020136.03000000
              + LEAF + Captioning Source Uri + A URI from where a captioning file (e.g. xml) can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020136.04000000
              + LEAF + Captioning Track ID + An Identifier attributed to the captioning track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020136.05000000
              + LEAF + Captioning Track Name + A name attributed to the captioning track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020136.06000000
              + LEAF + Captioning Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + closedCaptioningFlag +
                urn:smpte:ul:060e2b34.01010101.0d020136.07000000
              + LEAF + Closed Captioning Flag + A flag signalling the presence of captioning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020136.08000000
              + LEAF + Captioning Type Group Set + A strong reference to an attribute type group to define the type of captioning being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020136.09000000
              + LEAF + Captioning Format Group Set + A strong reference to an attribute format group to define the format of captioning being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020136.0a000000
              + LEAF + Captioning Presence Flag + A flag to indicate the presence of captioning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020136.0b000000
              + LEAF + Captioning Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitling +
                urn:smpte:ul:060e2b34.01010101.0d020137.00000000
              + NODE + Subtitling + A set of attributes to describe subtitling in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020137.01000000
              + LEAF + Subtitling Format ID + An Identifier attributed to the subtitling format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020137.02000000
              + LEAF + Subtitling Format Name + A name attributed to the subtitling format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020137.03000000
              + LEAF + Subtitling Source Uri + A URI from where a subtitling file (e.g. xml) can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020137.04000000
              + LEAF + Subtitling Track ID + An Identifier attributed to the subtitling track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020137.05000000
              + LEAF + Subtitling Track Name + A name attributed to the subtitling track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020137.06000000
              + LEAF + Subtitling Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + closedSubtitlingFlag +
                urn:smpte:ul:060e2b34.01010101.0d020137.07000000
              + LEAF + Closed Subtitling Flag + A flag signalling the presence of closed subtitling + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020137.08000000
              + LEAF + Subtitling Type Group Set + A strong reference to an attribute type group to define the type of subtitling being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020137.09000000
              + LEAF + Subtitling Format Group Set + A strong reference to an attribute format group to define the format of subtitling being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020137.0a000000
              + LEAF + Subtitling Presence Flag + A flag to indicate the presence of subtitling + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020137.0b000000
              + LEAF + Subtitling Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryData +
                urn:smpte:ul:060e2b34.01010101.0d020138.00000000
              + NODE + Ancillary Data + A set of attributes to describe ancillary data in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020138.01000000
              + LEAF + Ancillary Data Format Id + An identifier associated with the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020138.02000000
              + LEAF + Ancillary Data Format Name + A name associated with the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + DID +
                urn:smpte:ul:060e2b34.01010101.0d020138.03000000
              + LEAF + DID + Data Identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + SDID +
                urn:smpte:ul:060e2b34.01010101.0d020138.04000000
              + LEAF + SDID + Secondary Data Identifer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + lineNumber +
                urn:smpte:ul:060e2b34.01010101.0d020138.05000000
              + LEAF + Line Number + The line number of this stored ANC packet according to SMPTE 377M-2004 E.1.5 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ANCWrappingTypeObject +
                urn:smpte:ul:060e2b34.01010101.0d020138.06000000
              + LEAF + ANC Wrapping Type Set + A strong reference to an attribute type group to define the type of ANC wrapping + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020138.07000000
              + LEAF + Ancillary Data Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormat +
                urn:smpte:ul:060e2b34.01010101.0d020139.00000000
              + NODE + Signing Format + A set of attributes to describe signing in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020139.01000000
              + LEAF + Signing Format ID + An Identifier attributed to the signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020139.02000000
              + LEAF + Signing Format Version ID + An Identifier attributed to the version of signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020139.03000000
              + LEAF + Signing Format Name + A name attributed to the signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020139.04000000
              + LEAF + Signing Track ID + An identifier associated with a signing track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020139.05000000
              + LEAF + Signing Track Name + An name associated with a signing track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020139.06000000
              + LEAF + Signing Track Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020139.07000000
              + LEAF + Signing Source Uri + A URI from where a signing source file can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020139.08000000
              + LEAF + Signing Type Group Set + A strong reference to an attribute type group to define the type of signing being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020139.09000000
              + LEAF + Signing Format Group Set + A strong reference to an attribute format group to define the format of signing being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020139.0a000000
              + LEAF + Signing Presence Flag + A flag to indicate the presence of signing + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalBasicDatatypes +
                urn:smpte:ul:060e2b34.01010101.0d02013a.00000000
              + NODE + Technical Basic Attributes + A group of definitions of technical attributes of basic data types + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeString +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01000000
              + NODE + Technical Attribute String + A technical attribute of type string + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01010000
              + LEAF + Technical Attribute StringValue + The value expressed as a string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01020000
              + LEAF + Technical Attribute String Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01030000
              + LEAF + Technical Attribute String Format Group Set + A strong reference to a type group to define the format of the string technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02000000
              + NODE + Technical Attribute Int8 + A technical attribute of type byte + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02010000
              + LEAF + Technical Attribute Int8Value + The value expressed as a byte + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02020000
              + LEAF + Technical Attribute Int8 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02030000
              + LEAF + Technical Attribute Int8 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03000000
              + NODE + Technical Attribute Int16 + A technical attribute of type short + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03010000
              + LEAF + Technical Attribute Int16Value + The value expressed as a short + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03020000
              + LEAF + Technical Attribute Int16 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03030000
              + LEAF + Technical Attribute Int16 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04000000
              + NODE + Technical Attribute Int32 + A technical attribute of type integer + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04010000
              + LEAF + Technical Attribute Int32Value + The value expressed as an integer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04020000
              + LEAF + Technical Attribute Int32 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04030000
              + LEAF + Technical Attribute Int32 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05000000
              + NODE + Technical Attribute Int64 + A technical attribute of type long + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05010000
              + LEAF + Technical Attribute Int64Value + The value expressed as a long + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05020000
              + LEAF + Technical Attribute Int64 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05030000
              + LEAF + Technical Attribute Int64 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06000000
              + NODE + Technical Attribute UInt8 + A technical attribute of type unsigned byte + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06010000
              + LEAF + Technical Attribute UInt8Value + The value expressed as an unsigned byte + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06020000
              + LEAF + Technical Attribute UInt8 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06030000
              + LEAF + Technical Attribute UInt8 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07000000
              + NODE + Technical Attribute UInt16 + A technical attribute of type unsigned short + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07010000
              + LEAF + Technical Attribute UInt16Value + The value expressed as an unsigned short + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07020000
              + LEAF + Technical Attribute UInt16 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07030000
              + LEAF + Technical Attribute UInt16 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08000000
              + NODE + Technical Attribute UInt32 + A technical attribute of type unsigned integer + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08010000
              + LEAF + Technical Attribute UInt32Value + The value expressed as an unsigned integer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08020000
              + LEAF + Technical Attribute UInt32 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08030000
              + LEAF + Technical Attribute UInt32 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09000000
              + NODE + Technical Attribute UInt64 + A technical attribute of type unsigned long + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09010000
              + LEAF + Technical Attribute UInt64Value + The value expressed as an unsigned long + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09020000
              + LEAF + Technical Attribute UInt64 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09030000
              + LEAF + Technical Attribute UInt64 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloat +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a000000
              + NODE + Technical Attribute Float + A technical attribute of type float + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a010000
              + LEAF + Technical Attribute FloatValue + The value expressed as a float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a020000
              + LEAF + Technical Attribute Float Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatUnit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a030000
              + LEAF + Technical Attribute Float Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRational +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b000000
              + NODE + Technical Attribute Rational + A technical attribute of type rational + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRationalTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b010000
              + LEAF + Technical Attribute Rational Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRationalValueObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b020000
              + LEAF + Technical Attribute Rational Value + A strong reference to a rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURI +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c000000
              + NODE + Technical Attribute AnyURI + A technical attribute of type Unique Resource Identifier + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURIValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c010000
              + LEAF + Technical Attribute AnyURIValue + The value expressed as a Unique Resource Identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURITypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c020000
              + LEAF + Technical Attribute AnyURI Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBoolean +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d000000
              + NODE + Technical Attribute Boolean + A technical attribute of type boolean + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBooleanValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d010000
              + LEAF + Technical Attribute BooleanValue + The value expressed as a boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBooleanTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d020000
              + LEAF + Technical Attribute Boolean Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimension +
                urn:smpte:ul:060e2b34.01010101.0d02013b.00000000
              + NODE + Dimension + A set of attributes to define a dimension + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimensionValue +
                urn:smpte:ul:060e2b34.01010101.0d02013b.01000000
              + LEAF + Dimension Value + The value of the dimension as contextually defined + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimensionUnit +
                urn:smpte:ul:060e2b34.01010101.0d02013b.02000000
              + LEAF + Dimension Unit + The unit in which the dimension is expressed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageInfo +
                urn:smpte:ul:060e2b34.01010101.0d02013c.00000000
              + NODE + Package Info + A set of attribute to provide information on the package + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageSize +
                urn:smpte:ul:060e2b34.01010101.0d02013c.01000000
              + LEAF + Package Size + A strong reference to a dimension object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageName +
                urn:smpte:ul:060e2b34.01010101.0d02013c.02000000
              + LEAF + Package Name + The name of the package + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageLocatorObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.03000000
              + LEAF + Package Locator + A strong reference to a locator from where the package can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mimeTypeObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.04000000
              + LEAF + Mime Type Set + The medium used to carry the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.05000000
              + LEAF + Hash Set + A strong reference to a hash object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageOverallBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.06000000
              + LEAF + Package Overall Bitrate Set + To specify the overall bitrate of a mixed package composed of e.g. audio, video and data. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + medium +
                urn:smpte:ul:060e2b34.01010101.0d02013d.00000000
              + NODE + Medium + A set of attributes to describe a medium + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mediumID +
                urn:smpte:ul:060e2b34.01010101.0d02013d.01000000
              + LEAF + MediumIID + An identifier attributed to a medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mediumTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013d.02000000
              + LEAF + Medium Type Group Set + A strong reference to an attribute type group to define the type of medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codec +
                urn:smpte:ul:060e2b34.01010101.0d02013e.00000000
              + NODE + Codec + A set of attributes used to described a codec (hardware/software) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecName +
                urn:smpte:ul:060e2b34.01010101.0d02013e.01000000
              + LEAF + Codec Name + The name of the codec (hardware/software) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecVendor +
                urn:smpte:ul:060e2b34.01010101.0d02013e.02000000
              + LEAF + Codec Vendor + The name of the vendor + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecVersion +
                urn:smpte:ul:060e2b34.01010101.0d02013e.03000000
              + LEAF + Codec Version + The version of the codec + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecfamily +
                urn:smpte:ul:060e2b34.01010101.0d02013e.04000000
              + LEAF + Codec Family + The family of products to which the codec belongs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecIdentifier +
                urn:smpte:ul:060e2b34.01010101.0d02013e.05000000
              + LEAF + Codec Identifier + An identifier attributed to a codec + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecUrl +
                urn:smpte:ul:060e2b34.01010101.0d02013e.06000000
              + LEAF + Codec URL + A URL where more information can be found about the codec. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013e.07000000
              + LEAF + Codec Type Group Set + To specify a kind of codec. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rational +
                urn:smpte:ul:060e2b34.01010101.0d02013f.00000000
              + NODE + Rational + A set of attributes used to define a rational + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nominalValue +
                urn:smpte:ul:060e2b34.01010101.0d02013f.01000000
              + LEAF + Nominal Value + The nominal value of the rational expression + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + factorNumerator +
                urn:smpte:ul:060e2b34.01010101.0d02013f.02000000
              + LEAF + Factor Numerator + The numerator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + factorDenominator +
                urn:smpte:ul:060e2b34.01010101.0d02013f.03000000
              + LEAF + Factor Denominator + The denominator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatio +
                urn:smpte:ul:060e2b34.01010101.0d020140.00000000
              + NODE + Aspect Ratio + A set of attributes to define an aspect ratio + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioNumerator +
                urn:smpte:ul:060e2b34.01010101.0d020140.01000000
              + LEAF + Aspect Ratio Factor Numerator + The numerator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioDenominator +
                urn:smpte:ul:060e2b34.01010101.0d020140.02000000
              + LEAF + Aspect Ratio Factor Denominator + The denominator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020140.03000000
              + LEAF + Aspect Ratio Type Group Set + A strong reference to an attribute type group to specify the type of aspect ratio being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + height +
                urn:smpte:ul:060e2b34.01010101.0d020141.00000000
              + NODE + Height + A set of attributes to define a Height + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + heightValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020141.01000000
              + LEAF + Height Value Set + A strong reference to a dimension to define the value and unit of the height + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + heightTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020141.02000000
              + LEAF + Height Type Group Set + A strong reference to an attribute type group to specify the type of height + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + width +
                urn:smpte:ul:060e2b34.01010101.0d020142.00000000
              + NODE + Width + A set of attributes to define a Width + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + widthValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020142.01000000
              + LEAF + Width Value Set + A strong reference to a dimension to define the value and unit of the width + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + widthTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020142.02000000
              + LEAF + Width Type Group Set + A strong reference to an attribute type group to specify the type of width + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + part +
                urn:smpte:ul:060e2b34.01010101.0d020143.00000000
              + NODE + Part + A set of attributes used to describe a part + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d020143.01000000
              + LEAF + Part Metadata Set + A strong reference to the part metadata set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01180000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetadata +
                urn:smpte:ul:060e2b34.01010101.0d020144.00000000
              + NODE + Part Metadata + A set of attributes to provide the metadata describing a part + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partID +
                urn:smpte:ul:060e2b34.01010101.0d020144.01000000
              + LEAF + Part ID + An Identifier associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partName +
                urn:smpte:ul:060e2b34.01010101.0d020144.02000000
              + LEAF + Part Name + An name associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020144.03000000
              + LEAF + Part Definition + An definition associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partStartTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.04000000
              + LEAF + Part Start Time Object + To express the start time of a part + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partDurationTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.05000000
              + LEAF + Part Duration Object + To express the duration of a part + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partNumber +
                urn:smpte:ul:060e2b34.01010101.0d020144.06000000
              + LEAF + Part Number + The part number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partTotalNumber +
                urn:smpte:ul:060e2b34.01010101.0d020144.07000000
              + LEAF + Part Total Number + The total number of parts + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.08000000
              + LEAF + Part Type Group Set + The strong reference to a type group to define a type of Part (e.g. editorial or technical) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetaObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.09000000
              + LEAF + Part Meta Set + A strong reference to a core metadata object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ebucoreObject +
                urn:smpte:ul:060e2b34.01010101.0d020145.00000000
              + NODE + Ebucore Set + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hash +
                urn:smpte:ul:060e2b34.01010101.0d020146.00000000
              + NODE + Hash + A set of attributes to define a hash vector + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020146.01000000
              + LEAF + Hash Value Set + A strong reference to a value of the hash vector + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashFunctionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020146.02000000
              + LEAF + Hash Function Type Group Set + A strong reference to a type group to define the type of hash function used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locator +
                urn:smpte:ul:060e2b34.01010101.0d020147.00000000
              + NODE + Locator + A set of attributes to define a locator + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locatorValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020147.01000000
              + LEAF + Locator Value Set + A strong reference to a value of locator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locatorTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020147.02000000
              + LEAF + Locator Type Group Set + A strong reference to a type group to define the type of locator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormat +
                urn:smpte:ul:060e2b34.01010101.0d020148.00000000
              + NODE + Container Format + A set of attributes to define the format of a container + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020148.01000000
              + LEAF + Container Format Id + An Id associated with a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020148.02000000
              + LEAF + Container Format Name + A strong reference to a format group to define the format of the container + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020148.03000000
              + LEAF + Container Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020148.04000000
              + LEAF + Container Format Version Id + An Id associated with a container format version + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020148.05000000
              + LEAF + Container Format Profile + A profile of a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020148.06000000
              + LEAF + Container Format Profile Level + A level of a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerNote +
                urn:smpte:ul:060e2b34.01010101.0d020148.07000000
              + LEAF + Container Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.08000000
              + LEAF + Container Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.09000000
              + LEAF + Container Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0a000000
              + LEAF + Container Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0b000000
              + LEAF + Container Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0c000000
              + LEAF + Container Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0d000000
              + LEAF + Container Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0e000000
              + LEAF + Container Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0f000000
              + LEAF + Container Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.10000000
              + LEAF + Container Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.11000000
              + LEAF + Container Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.12000000
              + LEAF + Container Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.13000000
              + LEAF + Container Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.14000000
              + LEAF + Container Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerEncodingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020148.15000000
              + LEAF + Container Encoding Format Group Set + A strong reference to a format group object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtended +
                urn:smpte:ul:060e2b34.01010101.0d020149.00000000
              + NODE + Audio Format Extended + A set of attributes to describe an extended audio format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedId +
                urn:smpte:ul:060e2b34.01010101.0d020149.01000000
              + LEAF + Audio Format Extended Id + An identifier associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedName +
                urn:smpte:ul:060e2b34.01010101.0d020149.02000000
              + LEAF + Audio Format Extended Name + A name associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020149.03000000
              + LEAF + Audio Format Extended Definition + A definition associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedVersion +
                urn:smpte:ul:060e2b34.01010101.0d020149.04000000
              + LEAF + Audio Format Extended Version + A version associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020149.05000000
              + LEAF + Audio Format Extended Presence Flag + A flag to indicate the presence of extended audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.06000000
              + LEAF + Audio Programme Sets + A batch of strong references to audio programmes + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.07000000
              + LEAF + Audio Content Sets + A batch of strong references to audio contents + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.08000000
              + LEAF + Audio Object Sets + A batch of strong references to audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.09000000
              + LEAF + Audio Pack Format Sets + A batch of strong references to audio packs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0a000000
              + LEAF + Audio Channel Format Sets + A batch of strong references to audio channels + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03400000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0b000000
              + LEAF + Audio Block Format Sets + A batch of strong references to audio blocks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03410000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0c000000
              + LEAF + Audio Stream Format Sets + A batch of strong references to audio streams + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03420000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0d000000
              + LEAF + Audio Track Format Sets + A batch of strong references to audio tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03430000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0e000000
              + LEAF + Audio Track UID Sets + A batch of strong references to audio track UIDs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03440000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgramme +
                urn:smpte:ul:060e2b34.01010101.0d02014a.00000000
              + NODE + Audio Programme + A set of attributes to describe an audio programme + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeId +
                urn:smpte:ul:060e2b34.01010101.0d02014a.01000000
              + LEAF + Audio Programme Id + An identifier associated with the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeName +
                urn:smpte:ul:060e2b34.01010101.0d02014a.02000000
              + LEAF + Audio Programme Name + A name associated with the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.03000000
              + LEAF + Audio Programme Language Code + A language associated to the audio programme based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeStartTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.04000000
              + LEAF + Audio Programme Start Timecode + A start timecode point within the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeEndTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.05000000
              + LEAF + Audio Programme End Timecode + A end timecode point within the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.06000000
              + LEAF + Audio Programme Type Group Set + A strong reference to a type group to define the type of audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.07000000
              + LEAF + Audio Programme Format Group Set + A strong reference to a format group to define the format of audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeAudioContentIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014a.08000000
              + LEAF + Audio Programme Audio Content IDRef Sets + A batch of references to related audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeLoudnessMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.09000000
              + LEAF + Audio Programme Loudness Metadata Set + A strong reference to the loudness at the audio programme level + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeMaxDuckingDepth +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0a000000
              + LEAF + Audio Programme Max Ducking Depth + The maximum level (in dB) any audio object in the programme can be reduced by when ducking is invoked. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeReferenceScreenObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0b000000
              + LEAF + Audio Programme Reference Screen Set + To define the coordinates of a reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + IDRef +
                urn:smpte:ul:060e2b34.01010101.0d02014b.00000000
              + NODE + IDRef + A set of attributes to describe an IDRef + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + IDRefValue +
                urn:smpte:ul:060e2b34.01010101.0d02014b.01000000
              + LEAF + IDRef Value + The value of the IDRef + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMetadata +
                urn:smpte:ul:060e2b34.01010101.0d02014c.00000000
              + NODE + Loudness Metadata + A set of attributes to describe loudness + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMethod +
                urn:smpte:ul:060e2b34.01010101.0d02014c.01000000
              + LEAF + Loudness Method + The method used to measure loudness + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + integratedLoudness +
                urn:smpte:ul:060e2b34.01010101.0d02014c.02000000
              + LEAF + Integrated Loudness + The intergated loudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessRange +
                urn:smpte:ul:060e2b34.01010101.0d02014c.03000000
              + LEAF + Loudness Range + The Loudness Range (LRA) in LU + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxTruePeak +
                urn:smpte:ul:060e2b34.01010101.0d02014c.04000000
              + LEAF + Loudness Max True Peak + The max TruePeak Level (TPL) in dBTP + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxMomentary +
                urn:smpte:ul:060e2b34.01010101.0d02014c.05000000
              + LEAF + Loudness Max Momentary + The MaxMomentaryLoudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxShortTerm +
                urn:smpte:ul:060e2b34.01010101.0d02014c.06000000
              + LEAF + Loudness Max Short Term + The MaxShortTermLoudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessRecType +
                urn:smpte:ul:060e2b34.01010101.0d02014c.07000000
              + LEAF + Loudness Recommendation Type + Regional recommendend practice for correcting loudness levels. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessCorrectionType +
                urn:smpte:ul:060e2b34.01010101.0d02014c.08000000
              + LEAF + Loudness Correction Type + Correction type for the audio, e.g. file-based or real-time. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dialogueLoudness +
                urn:smpte:ul:060e2b34.01010101.0d02014c.09000000
              + LEAF + Dialogue Loudness + Dialogue loudness. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContent +
                urn:smpte:ul:060e2b34.01010101.0d02014d.00000000
              + NODE + Audio Content + A set of attributes to describe audio content + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentId +
                urn:smpte:ul:060e2b34.01010101.0d02014d.01000000
              + LEAF + Audio Content Id + An identifier associated with the audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentName +
                urn:smpte:ul:060e2b34.01010101.0d02014d.02000000
              + LEAF + Audio Content Name + A name associated with the audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02014d.03000000
              + LEAF + Audio Content Language Code + A language associated to the audio content based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueIndicator +
                urn:smpte:ul:060e2b34.01010101.0d02014d.04000000
              + LEAF + Audio Content Dialogue Indicator + A flag to indicate the presence of dialogue + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentAudioObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014d.05000000
              + LEAF + Audio Content Audio Object IDRef Sets + A batch of references to related audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentLoudnessMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d02014d.06000000
              + LEAF + Audio Content Loudness Metadata Set + A strong reference to the loudness at the audio content level + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueObject +
                urn:smpte:ul:060e2b34.01010101.0d02014d.07000000
              + LEAF + Audio Content Dialogue Set + A set of values to categorise the presence of dialogue and its type. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObject +
                urn:smpte:ul:060e2b34.01010101.0d02014e.00000000
              + NODE + Audio Object + A set of attributes to describe an audio object + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectId +
                urn:smpte:ul:060e2b34.01010101.0d02014e.01000000
              + LEAF + Audio Object Id + An identifier associated with the audio object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectName +
                urn:smpte:ul:060e2b34.01010101.0d02014e.02000000
              + LEAF + Audio Object Name + A name associated with the audio object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectStartTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014e.03000000
              + LEAF + Audio Object Start Timecode + A start timecode point when the audio object occurs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDurationTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014e.04000000
              + LEAF + Audio Object Duration Timecode + A duration in timecode from the start point and during which the audio object exists + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDialogueIndicator +
                urn:smpte:ul:060e2b34.01010101.0d02014e.05000000
              + LEAF + Audio Object Dialogue Indicator + A flag to indicate the presence of dialogue + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectImportance +
                urn:smpte:ul:060e2b34.01010101.0d02014e.06000000
              + LEAF + Audio Object Importance + A ranking indicator of importance allowing a renderer to discard an audio object below a certain threshold + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteract +
                urn:smpte:ul:060e2b34.01010101.0d02014e.07000000
              + LEAF + Audio Object Interact + A flag to indicate if user interaction is allowed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.08000000
              + LEAF + Audio Object Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.09000000
              + LEAF + Audio Object Audio Object IDRef Sets + A batch of references to related audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioTrackUIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0a000000
              + LEAF + Audio Object Audio Track UIDRef Sets + A batch of references to related audio track UIDs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteractionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0b000000
              + LEAF + Audio Object Interaction Sets + Set of parameters for limiting the amount of interaction of an object. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03500000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioComplementaryObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0c000000
              + LEAF + Audio Complementary Object IDREF Sets + A set of reference to complementary audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDisableDucking +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0d000000
              + LEAF + Audio Object Disable Ducking + A flag to disable ducking. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormat +
                urn:smpte:ul:060e2b34.01010101.0d02014f.00000000
              + NODE + Audio Pack Format + A set of attributes to describe an audio pack + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatId +
                urn:smpte:ul:060e2b34.01010101.0d02014f.01000000
              + LEAF + Audio Pack Format Id + An identifier associated with the audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatName +
                urn:smpte:ul:060e2b34.01010101.0d02014f.02000000
              + LEAF + Audio Pack Format Name + A name associated with the audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAbsoluteDistance +
                urn:smpte:ul:060e2b34.01010101.0d02014f.03000000
              + LEAF + Audio Pack Absolute Distance + The absolute distance in meters + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014f.04000000
              + LEAF + Audio Pack Type Group Set + A strong reference to a type group to define the type of audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackImportance +
                urn:smpte:ul:060e2b34.01010101.0d02014f.05000000
              + LEAF + Audio Pack Importance + A ranking indicator of importance allowing a renderer to discard an audio pack below a certain threshold + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAudioChannelFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014f.06000000
              + LEAF + Audio Pack Audio Channel Format IDRef Sets + A batch of references to related audio channel formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014f.07000000
              + LEAF + Audio Pack Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormat +
                urn:smpte:ul:060e2b34.01010101.0d020150.00000000
              + NODE + Audio Channel Format + A set of attributes to describe an audio channel + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020150.01000000
              + LEAF + Audio Channel Format Id + An identifier associated with the audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020150.02000000
              + LEAF + Audio Channel Format Name + A name associated with the audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020150.03000000
              + LEAF + Audio Channel Type Group Set + A strong reference to a type group to define the type of audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFrequency +
                urn:smpte:ul:060e2b34.01010101.0d020150.04000000
              + LEAF + Audio Channel Frequency + Sets a high or low cut-off frequency for the audio in Hz + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelAudioBlockFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020150.05000000
              + LEAF + Audio Channel Audio Block Format IDRef Sets + A batch of references to related audio block formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormat +
                urn:smpte:ul:060e2b34.01010101.0d020151.00000000
              + NODE + Audio Block Format + A set of attributes to describe an audio block format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020151.01000000
              + LEAF + Audio Block Format Id + An identifier associated with the audio block format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockRTimecode +
                urn:smpte:ul:060e2b34.01010101.0d020151.02000000
              + LEAF + Audio Block RTimecode + Start time of the block expressed as a timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDurationTimecode +
                urn:smpte:ul:060e2b34.01010101.0d020151.03000000
              + LEAF + Audio Block Duration Timecode + The duration of an audio block in timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockSpeakerLabel +
                urn:smpte:ul:060e2b34.01010101.0d020151.04000000
              + LEAF + Audio Block Speaker Label + A label associated with a speaker. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPosition +
                urn:smpte:ul:060e2b34.01010101.0d020151.05000000
              + LEAF + Audio Block Position + A location in space + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.06000000
              + LEAF + Audio Block Matrix Set + A strong reference to an audio block matrix + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockGain +
                urn:smpte:ul:060e2b34.01010101.0d020151.07000000
              + LEAF + Audio Block Gain + Set a gain value for the audio samples in the audio block + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDiffuse +
                urn:smpte:ul:060e2b34.01010101.0d020151.08000000
              + LEAF + Audio Block Diffuse + Set to 1 if diffuse, 0 if direct + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockWidth +
                urn:smpte:ul:060e2b34.01010101.0d020151.09000000
              + LEAF + Audio Block Width + Width of object in degrees along azimuth axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockHeight +
                urn:smpte:ul:060e2b34.01010101.0d020151.0a000000
              + LEAF + Audio Block Height + Height of object in degrees along elevation axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDepth +
                urn:smpte:ul:060e2b34.01010101.0d020151.0b000000
              + LEAF + Audio Block Depth + Depth of object along a distance line as a normalised distance + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockChannelLock +
                urn:smpte:ul:060e2b34.01010101.0d020151.0c000000
              + LEAF + Audio Block Channel Lock + If set to 1 a renderer can lock the object to the nearest channel or speaker, rather than normal rendering + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPosition +
                urn:smpte:ul:060e2b34.01010101.0d020151.0d000000
              + LEAF + Audio Block Jump Position + If set to 1 the position will not be interpolated with the previous block + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockEquation +
                urn:smpte:ul:060e2b34.01010101.0d020151.0e000000
              + LEAF + Audio Block Equation + To provide an equation + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDegree +
                urn:smpte:ul:060e2b34.01010101.0d020151.0f000000
              + LEAF + Audio Block Degree + Degree for the ambisonic component + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockOrder +
                urn:smpte:ul:060e2b34.01010101.0d020151.10000000
              + LEAF + Audio Block Order + Order for the ambisonic component + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockCartesian +
                urn:smpte:ul:060e2b34.01010101.0d020151.11000000
              + LEAF + Audio Block Cartesian + A flag set to true if cartesian coordinates used, false (default) for spherical. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.12000000
              + LEAF + Audio Block Object Divergence Set + Sets the divergence of an object where 0.0 means all sound in the direction of the object and 1.0 means all sound from the virtual objects placed at an angle set by the azimuthRange attribute value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneExclusionObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.13000000
              + LEAF + Audio Block Zone Exclusion Set + Allows 3D zones to be excluded from rendering. So any speakers that exist within the excluded zone will not be used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01700000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockScreenReferenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020151.14000000
              + LEAF + Audio Block Screen reference Flag + A flag set to true if the object is related to the screen. false otherwise. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockImportance +
                urn:smpte:ul:060e2b34.01010101.0d020151.15000000
              + LEAF + Audio Block Importance + A value from 0 to 10 (most) to indicate the importance of the object. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020151.16000000
              + LEAF + Audio Block Position Sets + A set of user defined parameters to define a location in space. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03510000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPositionObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.17000000
              + LEAF + Audio Blcok Jump Position Set + If set to 1 the position will be interpolated over a period set by the attribute interpolationLength. If set to 0 then interpolation will take the entire length of the block. An interpolationLength value of zero will mean the object jumps without interpolation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01720000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficient +
                urn:smpte:ul:060e2b34.01010101.0d020152.00000000
              + NODE + Audio Block Matrix Coefficient + A set of attributes to describe an audio block matrix coefficient + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientValue +
                urn:smpte:ul:060e2b34.01010101.0d020152.01000000
              + LEAF + Audio Block Matrix Coefficient Value + The value of an audio block matrix coefficient + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientGain +
                urn:smpte:ul:060e2b34.01010101.0d020152.02000000
              + LEAF + Audio Block Matrix Coefficient Gain + Coefficient value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientGainVar +
                urn:smpte:ul:060e2b34.01010101.0d020152.03000000
              + LEAF + Audio Block Matrix Coefficient Gain Var + A flag to indicate if the gain is variable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientPhase +
                urn:smpte:ul:060e2b34.01010101.0d020152.04000000
              + LEAF + Audio Block Matrix Coefficient Phase + Phase shift value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientPhaseVar +
                urn:smpte:ul:060e2b34.01010101.0d020152.05000000
              + LEAF + Audio Block Matrix Coefficient Phase Var + A flag to indicate if the phase is variable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientChannelFormatIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020152.06000000
              + LEAF + Audio Block Matrix Coefficient Channel Format IDRef Set + Sets a multiplication coefficient (value attrib) with the ID of another channel. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormat +
                urn:smpte:ul:060e2b34.01010101.0d020153.00000000
              + NODE + Audio Stream Format + A set of attributes to describe an audio stream format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020153.01000000
              + LEAF + Audio Stream Format Id + An identifier associated with the audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020153.02000000
              + LEAF + Audio Stream Format Name + A name associated with the audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020153.03000000
              + LEAF + Audio Stream Format Group Set + A strong reference to a format group to define the type of audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioChannelFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.04000000
              + LEAF + Audio Stream Audio Channel Format IDRef Sets + A batch of references to related audio channel formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.05000000
              + LEAF + Audio Stream Format IDRef Sets + A batch of references to related audio stream formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioTrackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.06000000
              + LEAF + Audio Stream Audio Track Format IDRef Sets + A batch of references to related audio track formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormat +
                urn:smpte:ul:060e2b34.01010101.0d020154.00000000
              + NODE + Audio Track Format + A set of attributes to describe an audio track format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020154.01000000
              + LEAF + Audio Track Format Id + An identifier associated with the audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020154.02000000
              + LEAF + Audio Track Format Name + A name associated with the audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020154.03000000
              + LEAF + Audio Track Format Format Group Set + A strong reference to a format group to define the format of audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioStreamFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020154.04000000
              + LEAF + Audio Track Audio Stream Format IDRef Sets + A batch of references to related audio stream formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUID +
                urn:smpte:ul:060e2b34.01010101.0d020155.00000000
              + NODE + Audio Track UID + A set of attributes to describe an audio track UID + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDValue +
                urn:smpte:ul:060e2b34.01010101.0d020155.01000000
              + LEAF + Audio Track UID Value + The value of the track UID + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDSampleRate +
                urn:smpte:ul:060e2b34.01010101.0d020155.02000000
              + LEAF + Audio Track UID Sample Rate + The sample rate of the audio track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDBitDepth +
                urn:smpte:ul:060e2b34.01010101.0d020155.03000000
              + LEAF + Audio Track UID Bit Depth + The bit depth + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackMXFLookupObject +
                urn:smpte:ul:060e2b34.01010101.0d020155.04000000
              + LEAF + Audio Track MXF Lookup Set + A strong reference to an MXF lookup element + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioTrackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020155.05000000
              + LEAF + Audio Track Audio Track Format IDRef Sets + A batch of references to related audio track formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020155.06000000
              + LEAF + Audio Track Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookup +
                urn:smpte:ul:060e2b34.01010101.0d020156.00000000
              + NODE + Audio MXF Lookup + A set of attributes to describe an audio MXF lookup + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupPackageUIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.01000000
              + LEAF + Audio MXF Lookup Package UIDRef Set + A reference to a package + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupTrackIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.02000000
              + LEAF + Audio MXF LookupTrack IDRef Set + A reference to a track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupChannelIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.03000000
              + LEAF + Audio MXF Lookup Channel IDRef Set + A reference to a channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrix +
                urn:smpte:ul:060e2b34.01010101.0d020157.00000000
              + NODE + Audio Block Matrix + A set of attributes to describe an audio block matrix + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientObjects +
                urn:smpte:ul:060e2b34.01010101.0d020157.01000000
              + LEAF + Audio Block Matrix Coefficient Sets + A batch of strong references to audio block matrix coefficients + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03460000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + time +
                urn:smpte:ul:060e2b34.01010101.0d020158.00000000
              + NODE + Time + A structure to define time + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecode +
                urn:smpte:ul:060e2b34.01010101.0d020158.01000000
              + LEAF + Timecode + Time expressed as timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + normalPlayTime +
                urn:smpte:ul:060e2b34.01010101.0d020158.02000000
              + LEAF + Normal Play Time + Time expressed in HH:MM:SS.mmm + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + editUnit +
                urn:smpte:ul:060e2b34.01010101.0d020158.03000000
              + LEAF + Edit Unit + Time expressed in edit units + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textTime +
                urn:smpte:ul:060e2b34.01010101.0d020158.04000000
              + LEAF + Text Time + Time expressed as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020158.05000000
              + LEAF + Time Type Group Set + A strong reference to an attribute type group to define the type of time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormat +
                urn:smpte:ul:060e2b34.01010101.0d020159.00000000
              + NODE + Metadata Format + A structure to define the characteristics of a metadata track + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020159.01000000
              + LEAF + Metadata Format Id + The identifier of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020159.02000000
              + LEAF + Metadata Format Name + The name of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020159.03000000
              + LEAF + Metadata Format Version Id + The version identifier of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020159.04000000
              + LEAF + Metadata Format Definition + A definition of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.05000000
              + LEAF + Metadata Track Sets + The metadata tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.06000000
              + LEAF + Metadata Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.07000000
              + LEAF + Metadata Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.08000000
              + LEAF + Metadata Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.09000000
              + LEAF + Metadata Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0a000000
              + LEAF + Metadata Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0b000000
              + LEAF + Metadata Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0c000000
              + LEAF + Metadata Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0d000000
              + LEAF + Metadata Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0e000000
              + LEAF + Metadata Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0f000000
              + LEAF + Metadata Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.10000000
              + LEAF + Metadata Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.11000000
              + LEAF + Metadata Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.12000000
              + LEAF + Metadata Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormat +
                urn:smpte:ul:060e2b34.01010101.0d02015a.00000000
              + NODE + Timecode Format + A structure to define the characteristics of a timecode track + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatId +
                urn:smpte:ul:060e2b34.01010101.0d02015a.01000000
              + LEAF + Timecode Format Id + The identifier of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatName +
                urn:smpte:ul:060e2b34.01010101.0d02015a.02000000
              + LEAF + Timecode Format Name + The name of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d02015a.03000000
              + LEAF + Timecode Format Version Id + The version identifier of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02015a.04000000
              + LEAF + Timecode Format Definition + A definition of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeStartTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d02015a.05000000
              + LEAF + Timecode Start Time Set + The start timecode on a timecode track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.06000000
              + LEAF + Timecode Track Sets + The timecode tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.07000000
              + LEAF + Timecode Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.08000000
              + LEAF + Timecode Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.09000000
              + LEAF + Timecode Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0a000000
              + LEAF + Timecode Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0b000000
              + LEAF + Timecode Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0c000000
              + LEAF + Timecode Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0d000000
              + LEAF + Timecode Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0e000000
              + LEAF + Timecode Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0f000000
              + LEAF + Timecode Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.10000000
              + LEAF + Timecode Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.11000000
              + LEAF + Timecode Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.12000000
              + LEAF + Timecode Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.13000000
              + LEAF + Timecode Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilter +
                urn:smpte:ul:060e2b34.01010101.0d02015b.00000000
              + NODE + Video Noise Filter + A structure to define the characteristics of a video noise filter + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterVendorId +
                urn:smpte:ul:060e2b34.01010101.0d02015b.01000000
              + LEAF + Video Noise Filter Vendor Id + To identify the vendor of a video noise filter + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015b.02000000
              + LEAF + Video Noise Filter Type Group Set + To specify the type of video noise filter + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audience +
                urn:smpte:ul:060e2b34.01010101.0d02015d.00000000
              + NODE + Audience + To define an audience. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceReason +
                urn:smpte:ul:060e2b34.01010101.0d02015d.01000000
              + LEAF + Audience Reason + The reason hy this audience has been selected. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02015d.02000000
              + LEAF + Audience Link To Logo + To provide a link to a logo associated with the audience. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d02015d.03000000
              + LEAF + Audience Not rated Flag + A flag to indicate that content was not rated. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d02015d.04000000
              + LEAF + Audience Adult Content Flag + A flag to indicate that the media resource contains adult content. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015d.05000000
              + LEAF + Audience Type Group Set + To define the audience definition system used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015d.06000000
              + LEAF + Audience Region Sets + To define regions where the defined audience applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015d.07000000
              + LEAF + Audience Exclusion Region Sets + To define regions where the defined audience doesn't apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015d.08000000
              + LEAF + Audience Format group Set + To define the audience definition system used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filter +
                urn:smpte:ul:060e2b34.01010101.0d02015e.00000000
              + NODE + Filter + To define the characteristics of a filter. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterOrder +
                urn:smpte:ul:060e2b34.01010101.0d02015e.01000000
              + LEAF + Filter Order + To define the order of a filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015e.02000000
              + LEAF + Filter Type Group Set + To define a tyoe of filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterTrackIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015e.03000000
              + LEAF + Filter Track IDRef Sets + A set of reference to track to shich the filter applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterProfileTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015e.04000000
              + LEAF + Filter Profile Type Group Set + To define the profile of a filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015e.05000000
              + LEAF + Filter Setting Sets + A set of filter settings + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03520000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSetting +
                urn:smpte:ul:060e2b34.01010101.0d02015f.00000000
              + NODE + Filter Setting + To define filter settings. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingAttributeOrder +
                urn:smpte:ul:060e2b34.01010101.0d02015f.01000000
              + LEAF + Filter Setting Attribute Order + To specify the order of an attribute filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015f.02000000
              + LEAF + Filter Setting Type group Set + To define a type of filter setting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.03000000
              + LEAF + Filter Setting Technical String Sets + A technical attribute of type string. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.04000000
              + LEAF + Filter Setting Technical Byte Sets + A technical attribute of type byte. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.05000000
              + LEAF + Filter Setting Technical Short Sets + A technical attribute of type short. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.06000000
              + LEAF + Filter Setting Technical Integer Sets + A technical attribute of type integer. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.07000000
              + LEAF + Filter Setting Technical Long Sets + A technical attribute of type long. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.08000000
              + LEAF + Filter Setting Technical Unsigned Byte Sets + A technical attribute of type unsigned byte. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.09000000
              + LEAF + Filter Setting Technical Unsigned Short Sets + A technical attribute of type unsigned short. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0a000000
              + LEAF + Filter Setting Technical Unsigned Integer Sets + A technical attribute of type unsigned integer. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0b000000
              + LEAF + Filter Setting Technical Unsigned Long Sets + A technical attribute of type unsigned long. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0c000000
              + LEAF + Filter Setting Technical Float Sets + A technical attribute of type float. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0d000000
              + LEAF + Filter Setting Technical Rational Sets + A technical attribute of type rational. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0e000000
              + LEAF + Filter Setting Technical anyURI Sets + A technical attribute of type anyURI. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0f000000
              + LEAF + Filter Setting Technical Boolean Sets + A technical attribute of type boolean. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreen +
                urn:smpte:ul:060e2b34.01010101.0d020160.00000000
              + NODE + Reference Screen + Specification of a reference/production/monitoring screen size for the audioProgramme. If the reference screen-size is not given, a default screen-size is implicitly defined. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenAspectRatio +
                urn:smpte:ul:060e2b34.01010101.0d020160.01000000
              + LEAF + Reference Screen Aspect Ratio + To specify the aspect ration of the reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePositionObject +
                urn:smpte:ul:060e2b34.01010101.0d020160.02000000
              + LEAF + Reference Screen Reference Centre Set + To define the position of the centre reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01740000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthObject +
                urn:smpte:ul:060e2b34.01010101.0d020160.03000000
              + LEAF + Reference Screen Wiidth Set + To define the width of the reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01750000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePosition +
                urn:smpte:ul:060e2b34.01010101.0d020161.00000000
              + NODE + Reference Screen Centre Position + To define the centre position of a reference screen. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePositionValue +
                urn:smpte:ul:060e2b34.01010101.0d020161.01000000
              + LEAF + Reference Screen Centre Position Value + To provide the centre coordinates as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenAzimuth +
                urn:smpte:ul:060e2b34.01010101.0d020161.02000000
              + LEAF + Reference Screen Azimuth + To provide the azimuth. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenElevation +
                urn:smpte:ul:060e2b34.01010101.0d020161.03000000
              + LEAF + Reference Screen Elevation + To provide the elevation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenDistance +
                urn:smpte:ul:060e2b34.01010101.0d020161.04000000
              + LEAF + Reference Screen Distance + To provide the distance. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenX +
                urn:smpte:ul:060e2b34.01010101.0d020161.05000000
              + LEAF + Reference Screen X + To provide the X axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenY +
                urn:smpte:ul:060e2b34.01010101.0d020161.06000000
              + LEAF + Reference Screen Y + To provide the Y axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenZ +
                urn:smpte:ul:060e2b34.01010101.0d020161.07000000
              + LEAF + Reference Screen Z + To provide the Z axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidth +
                urn:smpte:ul:060e2b34.01010101.0d020162.00000000
              + NODE + Reference Screen Width + To define the width of a screen. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthValue +
                urn:smpte:ul:060e2b34.01010101.0d020162.01000000
              + LEAF + Reference Screen Width Value + To provide the width as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthAzimuth +
                urn:smpte:ul:060e2b34.01010101.0d020162.02000000
              + LEAF + Reference Screen Width Azimuth + To provide the width as an azimuth. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthX +
                urn:smpte:ul:060e2b34.01010101.0d020162.03000000
              + LEAF + Reference Screen Width X + To define the width as an X axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogue +
                urn:smpte:ul:060e2b34.01010101.0d020163.00000000
              + NODE + Audio Content Dialogue + To characterise the presence of a dialogue in a media resource and its type. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueValue +
                urn:smpte:ul:060e2b34.01010101.0d020163.01000000
              + LEAF + Audio Content Dialogue Value + A element to define the dialogue. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nonDialogueContentKind +
                urn:smpte:ul:060e2b34.01010101.0d020163.02000000
              + LEAF + Non Dialogue Content Kind + Numerical ID for the kind of non-dialogue content: 0 - undefined, 1 - music, 2 - effect. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dialogueContentKind +
                urn:smpte:ul:060e2b34.01010101.0d020163.03000000
              + LEAF + Dialogue Content Kind + Numerical ID for the kind of dialogue content: 0 - undefined, 1 - (storyline) dialogue, 2 - voiceover, 3 - spoken subtitle, 4 - audio description/visually impaired, 5 - commentary, 6 - emergency + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mixedContentkind +
                urn:smpte:ul:060e2b34.01010101.0d020163.04000000
              + LEAF + Mixed Content Kind + Numerical ID for the kind of mixed content: 0 - undefined, 1 - complete main, 2 - mixed, 3 - hearing impaired. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteraction +
                urn:smpte:ul:060e2b34.01010101.0d020164.00000000
              + NODE + Audio Object Interaction + Set of parameters for limiting the amount of interaction of an object. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + onOffInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.01000000
              + LEAF + On Off Interact + Set to true to allow interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.02000000
              + LEAF + Gain Interact + Set to true to allow gain interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.03000000
              + LEAF + Position Interact + Set to true to allow position interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020164.04000000
              + LEAF + Gain Interact Range Sets + Set the range of gain values allowed for interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03530000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020164.05000000
              + LEAF + Position Interaction Range Sets + Set the range of position values allowed for interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03540000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRange +
                urn:smpte:ul:060e2b34.01010101.0d020165.00000000
              + NODE + Gain Interaction Range + To specify the supported range of gain interaction. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeValue +
                urn:smpte:ul:060e2b34.01010101.0d020165.01000000
              + LEAF + Gain Interaction Range Value + Value defining the range of gain. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeBound +
                urn:smpte:ul:060e2b34.01010101.0d020165.02000000
              + LEAF + Gain Interaction Range Bound + Set attribute to "min" to provide minimum gain factor of possible user gain interaction (gainMin = gain (or 1.0 if not defined) * gainInteractionRangeMin) Set attribute to "max" to provide maximum gain factor of possible user gain interaction gainMax = gain (or 1.0 if not defined) * gainInteractionRangeMin) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRange +
                urn:smpte:ul:060e2b34.01010101.0d020166.00000000
              + NODE + Position Interaction Range + To specify the supportes range of supported position interaction. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeValue +
                urn:smpte:ul:060e2b34.01010101.0d020166.01000000
              + LEAF + Position Interaction Range Value + Value defnining the range of position. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeCoordinate +
                urn:smpte:ul:060e2b34.01010101.0d020166.02000000
              + LEAF + Position Interaction Range Coordinate + Set attribute to either "X", "Y", "Z", "azimuth", "elevation" or "distance" to set which axis requires limiting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeBound +
                urn:smpte:ul:060e2b34.01010101.0d020166.03000000
              + LEAF + Position Interaction Range Bound + Set attribute to either "min" or "max" to set whether the axis needs a minimum or maximum range for positioning limiting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPos +
                urn:smpte:ul:060e2b34.01010101.0d020167.00000000
              + NODE + Audio Block Position + A set of user defined parameters to define a block location in space. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionValue +
                urn:smpte:ul:060e2b34.01010101.0d020167.01000000
              + LEAF + Audio Block Position Value + The position as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionCoordinate +
                urn:smpte:ul:060e2b34.01010101.0d020167.02000000
              + LEAF + Audio Block Position Coordinate + The axis used, either azimuth, elevation or distance (for polar); or X, Y or Z (for Cartesian). + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionBound +
                urn:smpte:ul:060e2b34.01010101.0d020167.03000000
              + LEAF + Audio Block Position Bound + Set to "min" or "max" to set the bound of the position. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionScreenEdgeLock +
                urn:smpte:ul:060e2b34.01010101.0d020167.04000000
              + LEAF + Audio Block Position Edge Lock + Set to "left", "right", "top" or "bottom" to indicate which edge of the screen to lock the position to. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergence +
                urn:smpte:ul:060e2b34.01010101.0d020168.00000000
              + NODE + Audio Block Divergence + Sets the divergence of an object where 0.0 means all sound in the direction of the object and 1.0 means all sound from the virtual objects placed at an angle set by the azimuthRange attribute value. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceValue +
                urn:smpte:ul:060e2b34.01010101.0d020168.01000000
              + LEAF + Audio Block Divergence Value + The value of divergence. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceAzimuthRange +
                urn:smpte:ul:060e2b34.01010101.0d020168.02000000
              + LEAF + Audio Block Divergence Azimuth Range + Set the azimuth angle from the actual object's position to the two virtual positions each side of it. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneExclusion +
                urn:smpte:ul:060e2b34.01010101.0d020169.00000000
              + NODE + Audio Block Zone Exclusion + Allows 3D zones to be exluded from rendering. So any speakers that exist within the excluded zone will not be used. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneObjects +
                urn:smpte:ul:060e2b34.01010101.0d020169.01000000
              + LEAF + Audio Block Zone Sets + Specifies the corner points of a cuboid in the 3D space that will be excluded from rendering. Multiple zone elements can be used to specify more complex exclusion shapes. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03550000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZone +
                urn:smpte:ul:060e2b34.01010101.0d02016a.00000000
              + NODE + Audio Block Zone + Specifies the corner points of a cuboid in the 3D space that will be excluded from rendering. Multiple zone elements can be used to specify more complex exclusion shapes. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneValue +
                urn:smpte:ul:060e2b34.01010101.0d02016a.01000000
              + LEAF + Audio Block Zone Value + The definition of a zone. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinX +
                urn:smpte:ul:060e2b34.01010101.0d02016a.02000000
              + LEAF + Audio Block Zone Min X + Min X + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxX +
                urn:smpte:ul:060e2b34.01010101.0d02016a.03000000
              + LEAF + Audio Block Zone Max X + Max X + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinY +
                urn:smpte:ul:060e2b34.01010101.0d02016a.04000000
              + LEAF + Audio Block Zone Min Y + Min Y + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxY +
                urn:smpte:ul:060e2b34.01010101.0d02016a.05000000
              + LEAF + Audio Block Zone Max Y + Max Y + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinZ +
                urn:smpte:ul:060e2b34.01010101.0d02016a.06000000
              + LEAF + Audio Block Zone Min Z + Min Z + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxZ +
                urn:smpte:ul:060e2b34.01010101.0d02016a.07000000
              + LEAF + Audio Block Zone Max Z + Max Z + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPos +
                urn:smpte:ul:060e2b34.01010101.0d02016b.00000000
              + NODE + Audio Block Jump Position + If set to 1 the position will be interpolated over a period set by the attribute interpolationLength. If set to 0 then interpolation will take the entire length of the block. An interpolationLength value of zero will mean the object jumps without interpolation. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumPositionFlag +
                urn:smpte:ul:060e2b34.01010101.0d02016b.01000000
              + LEAF + Audio Block Jump Position Flag + Jump position flag value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumPositionInterpolationLength +
                urn:smpte:ul:060e2b34.01010101.0d02016b.02000000
              + LEAF + Audio Block Jump Position Interpolation Length + The interpolation length in seconds. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + event +
                urn:smpte:ul:060e2b34.01010101.0d02016c.00000000
              + NODE + Event + To describe an event related to the media resource. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventId +
                urn:smpte:ul:060e2b34.01010101.0d02016c.01000000
              + LEAF + Event ID + An identifer associated with an event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02016c.02000000
              + LEAF + Event Type Group Set + To specify a kind of event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventNote +
                urn:smpte:ul:060e2b34.01010101.0d02016c.03000000
              + LEAF + Event Note + To provide additional contextual information about the event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.04000000
              + LEAF + Event Name Sets + To provide the names by which the event is known, possibly in different languages. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventDescriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.05000000
              + LEAF + Event Description Sets + To provide description of the event, possibly in different languages. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventLocationObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.06000000
              + LEAF + Event Location Sets + To provide information on the locations related to the event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventStart +
                urn:smpte:ul:060e2b34.01010101.0d02016c.07000000
              + LEAF + Event Start + To give a start date for an Event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventEnd +
                urn:smpte:ul:060e2b34.01010101.0d02016c.08000000
              + LEAF + Event End + To give an end date for an Event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + award +
                urn:smpte:ul:060e2b34.01010101.0d02016d.00000000
              + NODE + Award + To describe an award. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardId +
                urn:smpte:ul:060e2b34.01010101.0d02016d.01000000
              + LEAF + Award ID + An identifier associated with an award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.02000000
              + LEAF + Award Name Sets + To provide the names by which the award is known. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardDescriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.03000000
              + LEAF + Award Description Sets + To provide a set of descriptions of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardCategoryObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.04000000
              + LEAF + Award Category Sets + The category of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardCeremonyObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.05000000
              + LEAF + Award Ceremony Sets + The ceremony of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardOfficialObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.06000000
              + LEAF + Award Official Sets + The personalities involved in the award ceremony. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.07000000
              + LEAF + Award Date Sets + A set of dates associated with the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliation +
                urn:smpte:ul:060e2b34.01010101.0d02016e.00000000
              + NODE + Affiliation + To provideo information about the affiliation of a contact/person. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationOrganizationObject +
                urn:smpte:ul:060e2b34.01010101.0d02016e.01000000
              + LEAF + Affiliation Organization Set + The organization of the affiliation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationPeriodOfTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d02016e.02000000
              + LEAF + Affiliation Period Of Time Set + The period of time during which the affiliation was valid. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01340000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.01010105.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.01010107.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.01010101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DescriptiveFrameworks +
                urn:smpte:ul:060e2b34.01010101.0d040101.01000000
              + NODE + APP Descriptive Frameworks + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_InfaxFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010000
              + NODE + APP Infax Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Format +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010100
              + LEAF + APP Format + The technical code describing the method or recording of this element. E.g. 'LTO', 'D3' (Infax table T_RECORDING, item tech_code) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProgrammeTitle +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010200
              + LEAF + APP Programme Title + Indicates the series the programme is related to. E.g. 'OLD GREY WHISTLE TEST' (Infax table T_PROGRAMME, item series_title) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_EpisodeTitle +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010300
              + LEAF + APP Episode Title + The title of this programme. E.g. 'PICK OF THE YEAR'(Infax table T_PROGRAMME, item core_title) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TransmissionDate +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010400
              + LEAF + APP Transmission Date + Earliest transmission date E.g. 1978-01-05 (Infax table T_PROGRAMME, item fst_aptx_date) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_MagazinePrefix +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010500
              + LEAF + APP Magazine Prefix + Programmes are identified by a programme number and optionally a magazine prefix, which consists of a letter, ranging from A to Z. E.g. 'A'(Infax table T_PROGRAMME, item mag_prefix) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProgrammeNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010600
              + LEAF + APP Programme Number + A number, which in conjunction with the magazine prefix, uniquely identifies a programme. It never changes and stays with the programme throughout its life.E.g. LNF2073N (Infax table T_PROGRAMME, item prog_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolStatus +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010700
              + LEAF + APP Spool Status + This is a code to describe the recording status of spool items.E.g. 'M'(Infax table T_RECORDING, item rec_status + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_StockDate +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010800
              + LEAF + APP Stock Date + The date on which this element was recorded onto the spool item. E.g. 2008-04-17 (Infax table T_RECORDING, item rec_date) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolDescriptor +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010900
              + LEAF + APP Spool Descriptor + A free format text containing a technical description of the recording. E.g. 'PROGRAMME (DUB OF 005123) (Infax table T_RECORDING, item rec_vt_desc) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Memo +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010a00
              + LEAF + APP Memo + The catalogue description of the recording. (Infax table T_RECORDING, item rec_cat_desc) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Duration +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010b00
              + LEAF + APP Duration + The amount of material used. This is recorded as duration in number of seconds. E.g. 4145 (Infax table T_RECORDING, item rec_duration) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010c00
              + LEAF + APP Spool Number + The numeric component of a spool number. The number and prefix form a spool-number which is usually issued when the material is created. The spool number equates to a gap in the short term store. The number on the spool identifies the last current number for the spool. E.g. 'DA 005123'(Infax table T_SPOOL, item spl_prefix and spl_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_AccessionNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010d00
              + LEAF + APP Accession Number + The accession number identifies a number given to an item being added to the library's long term store system. This number equates to a space on a storage shelf and is therefore a reusable storage identifier.E.g. 'DA 018820'(Infax table T_SPOOL, item acc_prefix and acc_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_CatalogueDetail +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010e00
              + LEAF + APP Catalogue Detail + A code which allows the user to retrieve catalogue entries by a category. It is a subcatalogue within the catalogue.E.g. 'LONPROG' (Infax table T_CAT_ITEM, item cat_recall) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProductionCode +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010f00
              + LEAF + APP Production Code + The production code assigned to the programme. E.g. 70 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ItemNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01011000
              + LEAF + APP Item Number + Index of the item on the videotape containing multiple items E.g. 1 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PSEAnalysisFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020000
              + NODE + APP PSE Analysis Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_RedFlash +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020100
              + LEAF + APP Red Flash + The value of the red flash analysis, scaled by a factor of 1000. + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpatialPattern +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020200
              + LEAF + APP Spatial Pattern + The value of the spatial analysis, scaled by a factor of 1000. + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_LuminanceFlash +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020300
              + LEAF + APP Luminance Flash + The value of the luminance flash analysis, scaled by a factor of 1000 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ExtendedFailure +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020400
              + LEAF + APP Extended Failure + The extended warning failure flag + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRReplayErrorFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030000
              + NODE + APP VTR Replay Error Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRErrorCode +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030100
              + LEAF + APP VTR Error Code + Error code reported by the VTR + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DigiBetaDropoutFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040000
              + NODE + APP DigiBeta Dropout Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Strength +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040100
              + LEAF + APP Strength + Normalised Digibeta dropout strength + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeBreakFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050000
              + NODE + APP Timecode Break Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeType +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050100
              + LEAF + APP Timecode Type + Flags which timecode types are associated with this event + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d040101.01010101 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PrefaceAdditions +
                urn:smpte:ul:060e2b34.01010101.0d040101.40000000
              + NODE + APP Preface Additions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PrefaceAdditionsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010000
              + NODE + APP Preface Additions Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRErrorCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010100
              + LEAF + APP VTR Error Count + Total number of VTR replay errors + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PSEFailureCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010200
              + LEAF + APP PSE Failure Count + Total number of PSE analysis failures + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DigiBetaDropoutCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010300
              + LEAF + APP DigiBeta Dropout Count + Total number of DigiBeta dropouts detected + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeBreakCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010400
              + LEAF + APP Timecode Break Count + Total number of Timecode break events + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.01010107.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.01010109.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.01010109.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.0101010a.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.0101010c.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.0101010c.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.0101010c.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProductionFramework +
                urn:smpte:ul:060e2b34.01010101.0d0b0100.00000000
              + NODE + Production Framework + Information about the production framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsRecording +
                urn:smpte:ul:060e2b34.01010101.0d0b0101.00000000
              + LEAF + Is Recording + Indicates that the program is a studio recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsLiveProduction +
                urn:smpte:ul:060e2b34.01010101.0d0b0102.00000000
              + LEAF + Is Live Production + Indicates that the program is a live production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsLiveTransmission +
                urn:smpte:ul:060e2b34.01010101.0d0b0103.00000000
              + LEAF + Is Live Transmission + Indicates that the program is a live transmission + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsDubbed +
                urn:smpte:ul:060e2b34.01010101.0d0b0104.00000000
              + LEAF + Is Dubbed + Indicates that the program is dubbed + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsVoiceover +
                urn:smpte:ul:060e2b34.01010101.0d0b0105.00000000
              + LEAF + Is Voiceover + Indicates that the program has a voiceover + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + HasAudioWatermark +
                urn:smpte:ul:060e2b34.01010101.0d0b0106.00000000
              + LEAF + Has Audio Watermark + Indicates that the program has an audio watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioWatermarkKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0107.00000000
              + LEAF + Audio Watermark Kind + Indicates the kind of audio watermark used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + HasVideoWatermark +
                urn:smpte:ul:060e2b34.01010101.0d0b0108.00000000
              + LEAF + Has Video Watermark + Indicates the program has a video watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + VideoWatermarkKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0109.00000000
              + LEAF + Video Watermark Kind + Indicates the kind of video watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Subtitling +
                urn:smpte:ul:060e2b34.01010101.0d0b0200.00000000
              + NODE + Subtitling + Information about subtitling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SubtitlesPresent +
                urn:smpte:ul:060e2b34.01010101.0d0b0201.00000000
              + LEAF + Subtitles Present + Indicates that program is subtitled + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Captioning +
                urn:smpte:ul:060e2b34.01010101.0d0b0300.00000000
              + NODE + Caption Titles + Information about caption titling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + CaptionTitles +
                urn:smpte:ul:060e2b34.01010101.0d0b0301.00000000
              + LEAF + Caption Titles + Indicates that the program has caption titles + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + CaptionsViaTeletext +
                urn:smpte:ul:060e2b34.01010101.0d0b0302.00000000
              + LEAF + Captions Via Teletext + Indicates that the program has teletext captions for the deaf or hearing-impaired + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + TextlessMaterial +
                urn:smpte:ul:060e2b34.01010101.0d0b0303.00000000
              + LEAF + Textless Material + Indicates that the program is textless + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioParameters +
                urn:smpte:ul:060e2b34.01010101.0d0b0400.00000000
              + NODE + Audio Parameters + Information about audio parameters + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioReferenceLevel +
                urn:smpte:ul:060e2b34.01010101.0d0b0401.00000000
              + LEAF + Audio Reference Level + A description of the audio reference level, e.g. dBm, dBfs, +9dBm, 0dBfs, +15dBu etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMedia +
                urn:smpte:ul:060e2b34.01010101.0d0b0500.00000000
              + NODE + Storage Media + Information about the storage media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageDeviceKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0501.00000000
              + LEAF + Storage Device Kind + Describes the type of storage device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMediaKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0502.00000000
              + LEAF + Storage Media Kind + Describes the type of storage media + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMediaID +
                urn:smpte:ul:060e2b34.01010101.0d0b0503.00000000
              + LEAF + Storage Media ID + Uniquely identifies the storage media + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastScheduleInformation +
                urn:smpte:ul:060e2b34.01010101.0d0b0600.00000000
              + NODE + Broadcast Schedule Information + Information about the schedule information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastDate +
                urn:smpte:ul:060e2b34.01010101.0d0b0601.00000000
              + LEAF + Broadcast Date + The broadcast date of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastTime +
                urn:smpte:ul:060e2b34.01010101.0d0b0602.00000000
              + LEAF + Broadcast Time + The broadcast time of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsRepeat +
                urn:smpte:ul:060e2b34.01010101.0d0b0603.00000000
              + LEAF + Is Repeat + Indicates that the program has been shown before + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + FirstTransmissionDateTimeChannelAndBroadcaster +
                urn:smpte:ul:060e2b34.01010101.0d0b0604.00000000
              + LEAF + First Transmission Date-Time, Channel, and Broadcaster + Indicates the first broadcast date-time, the broadcast channel and broadcaster of the program as a text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + TeletextSubtitlesAvailable +
                urn:smpte:ul:060e2b34.01010101.0d0b0605.00000000
              + LEAF + Teletext Subtitles Available + Indicates that teletext subtitles for the deaf or hearing impaired are available + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SeasonEpisodeNumber +
                urn:smpte:ul:060e2b34.01010101.0d0b0606.00000000
              + LEAF + Season Episode Number + Indicates the episode number for a series season + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SeasonEpisodeTitle +
                urn:smpte:ul:060e2b34.01010101.0d0b0607.00000000
              + LEAF + Season Episode Title + Indicates the episode title for a series season + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + EPGProgramSynopsis +
                urn:smpte:ul:060e2b34.01010101.0d0b0608.00000000
              + LEAF + EPG Program Synopsis + Short synopsis of the program for use in the EPG + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Classification +
                urn:smpte:ul:060e2b34.01010101.0d0b0700.00000000
              + NODE + Classification + Program classification information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentClassification +
                urn:smpte:ul:060e2b34.01010101.0d0b0701.00000000
              + LEAF + Content Classification + A textual description or for example a string of coded numbers as in the EBU Escort schema for classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DVBParentalRating +
                urn:smpte:ul:060e2b34.01010101.0d0b0702.00000000
              + LEAF + DVB Parental Rating + Classification as used in DVB + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityRating +
                urn:smpte:ul:060e2b34.01010101.0d0b0703.00000000
              + LEAF + Content Maturity Rating + Classification goepings as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityDescription +
                urn:smpte:ul:060e2b34.01010101.0d0b0704.00000000
              + LEAF + Content Maturity Description + Textual classification as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityGraphic +
                urn:smpte:ul:060e2b34.01010101.0d0b0705.00000000
              + LEAF + Content Maturity Graphic + Graphical claasification as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Contract +
                urn:smpte:ul:060e2b34.01010101.0d0b0800.00000000
              + NODE + Contract + Information about the program contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContractEntity +
                urn:smpte:ul:060e2b34.01010101.0d0b0801.00000000
              + LEAF + Contract Entity + The name of the party that signed the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContractTypeLink +
                urn:smpte:ul:060e2b34.01010101.0d0b0802.00000000
              + LEAF + Contract Type Link + Contains a conditional access link to the program content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Rights +
                urn:smpte:ul:060e2b34.01010101.0d0b0900.00000000
              + NODE + Rights + Contains information about the rights contained in the contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ConsumerRightsToCopy +
                urn:smpte:ul:060e2b34.01010101.0d0b0901.00000000
              + LEAF + Consumer Rights to Copy + Indicates whether the consumer has the rights to copy the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcasterRightsToCopy +
                urn:smpte:ul:060e2b34.01010101.0d0b0902.00000000
              + LEAF + Broadcaster Rights to Copy + Indicates whether the broadcaster has the rights to copy the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProductionKeyPeople +
                urn:smpte:ul:060e2b34.01010101.0d0b0a00.00000000
              + NODE + Production Key People + Information about the people involved in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DirectorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a01.00000000
              + LEAF + Director Name + Contains the name of the director of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProducerName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a02.00000000
              + LEAF + Producer Name + Contains the name of the producer of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + FemaleLeadActressName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a03.00000000
              + LEAF + Female Lead Actress Name + Contains the name of the female lead actress of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + MaleLeadActorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a04.00000000
              + LEAF + Male Lead Actor Name + Contains the name of the male lead actor of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PresenterName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a05.00000000
              + LEAF + Presenter Name + Contains the name of the presenter of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + MainSponsorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a06.00000000
              + LEAF + Main Sponsor Name + Contains the name of the sponsor of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + VoiceTalentName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a07.00000000
              + LEAF + Voice Talent Name + Contains the name of the voice talent in the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Address +
                urn:smpte:ul:060e2b34.01010101.0d0b0b00.00000000
              + NODE + Address + Information about the address + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PostboxNumber +
                urn:smpte:ul:060e2b34.01010101.0d0b0b01.00000000
              + LEAF + Postbox Number + Indicates the number of the postbox + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PostCodeForPostbox +
                urn:smpte:ul:060e2b34.01010101.0d0b0b02.00000000
              + LEAF + Post Code for Postbox + Indicates the postal code of the postbox + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.0101010d.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.01010101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DPP_Groups +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01000000
              + NODE + DPP Groups + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DM_AS_11_UKDPP_Framework +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010000
              + NODE + AS-11 UKDPP Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Production_Number +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010100
              + LEAF + Production Number + A unique identifier / code for the programme (i.e. a unique identifier for this version of the episode). + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Synopsis +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010200
              + LEAF + Synopsis + A brief descriptive summary of the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 250 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Originator +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010300
              + LEAF + Originator + The name of the person or organisation responsible for creating the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Copyright_Year +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010400
              + LEAF + Copyright Year + The full year in which one of the following occurred or will occur: completion of the production of the programme; delivery of the completed file to the Broadcaster; transmission of the delivered programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Other_Identifier +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010500
              + LEAF + Other Identifier + Another unique identifier / code for the content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Other_Identifier_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010600
              + LEAF + Other Identifier type + The kind of identifier / code used for "Other Identifier". + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Genre +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010700
              + LEAF + Genre + A single style or category describing the whole programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Distributor +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010800
              + LEAF + Distributor + The name of the person or organisation responsible for supplying the programme to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Picture_Ratio +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010900
              + LEAF + Picture Ratio + The ratio of the display width to the display height of the smallest rectangle that completely contains (throughout the duration of the entire programme) the region of the video frame used for "programme content" (where "programme content" includes all pictures, captions, etc but excludes any black bars). + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_3D +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010a00
              + LEAF + 3D + A flag to indicate whether the file contains video intended for stereoscopic rendition. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_3D_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010b00
              + LEAF + 3D Type + A code to identify the kind of stereoscopic video contained in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.03000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Product_Placement +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010c00
              + LEAF + Product Placement + A flag to indicate whether the programme contains "product placement". + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Pass +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010d00
              + LEAF + PSE Pass + A code to indicate: whether the entire programme passed a flash and pattern test for compliance with Photosensitive Epilepsy (PSE) guidelines; or that such a test has not been carried out. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.01000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Manufacturer +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010e00
              + LEAF + PSE Manufacturer + The name of the product used to perform the test for compliance with PSE guidelines. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Version +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010f00
              + LEAF + PSE Version + The version of the algorithm / product module used to perform the test for compliance with PSE guidelines. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Video_Comments +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011000
              + LEAF + Video Comments + A description of the subjective quality of the video in the programme including notes on any global characteristics or video treatments. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Secondary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011100
              + LEAF + Secondary Audio Language + A code to identify the main language used on secondary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Tertiary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011200
              + LEAF + Tertiary Audio Language + A code to identify the main language used on tertiary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Loudness_Standard +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011300
              + LEAF + Audio Loudness Standard + A code to identify a relevant audio loudness recommendation or standard. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.04000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Comments +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011400
              + LEAF + Audio Comments + A description of the subjective quality of the audio in the programme including notes on any global characteristics or audio treatments. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Line_Up_Start +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011500
              + LEAF + Line Up Start + The value of the Position in the MXF Material Package at which the line-up test signals begin. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Ident_Clock_Start +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011600
              + LEAF + Ident Clock Start + The value of the Position in the MXF Material Package at which the initial "ident" or countdown clock begins. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Total_Number_Of_Parts +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011700
              + LEAF + Total Number Of Parts + The count of parts / segments in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Total_Programme_Duration +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011800
              + LEAF + Total Programme Duration + The sum of the durations of all the parts / segments in the entire programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Description_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011900
              + LEAF + Audio Description Present + A flag to indicate whether the programme contains audio description for the visually impaired. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Description_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011a00
              + LEAF + Audio Description Type + A code to identify the format of the audio description. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.05000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011b00
              + LEAF + Open Captions Present + A flag to indicate whether the programme contains visible (in-vision) subtitling information. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011c00
              + LEAF + Open Captions Type + A code to identify the editorial description of the open captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011d00
              + LEAF + Open Captions Language + A code to identify the main language used in the open captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Signing_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011e00
              + LEAF + Signing Present + A code to indicate: whether the programme contains visible (in-vision) signing along with the rest of the programme content; or that the programme contains only visible (in-vision) signing. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.02000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Sign_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011f00
              + LEAF + Sign Language + A code to identify the main language and / or format of the visible (in-vision) signing contained in the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.06000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Completion_Date +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012000
              + LEAF + Completion Date + The date on which the programme file was completed ready for delivery to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + All facets of the "Time" facet of this "TimeStamp" are zero +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Textless_Elements_Exist +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012100
              + LEAF + Textless Elements Exist + A flag to indicate whether the programme contains "textless elements" after the end of the main programme content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Programme_Has_Text +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012200
              + LEAF + Programme Has Text + A flag to indicate whether the main programme content contains text overlays (or similar) in the video. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Programme_Text_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012300
              + LEAF + Programme Text Language + A code to identify the main language used for text overlays (or similar) in the video of the main programme content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Contact_Email +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012400
              + LEAF + Contact Email + The email address for the person or organisation responsible for supplying the programme file to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Contact_Telephone_Number +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012500
              + LEAF + Contact Telephone No. + The telephone number for the person or organisation responsible for supplying the programme file to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.0101010d.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + DMS_AS_12_AdID_Slate +
                urn:smpte:ul:060e2b34.0101010d.0d0d0100.00000000
              + NODE + DMS_AS_12_AdID_Slate + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + adid_prefix +
                urn:smpte:ul:060e2b34.0101010d.0d0d0101.00000000
              + LEAF + adid_prefix + The four character prefix of the advertising asset encoded in the file + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + adid_code +
                urn:smpte:ul:060e2b34.0101010d.0d0d0102.00000000
              + LEAF + adid_code + The unique identifier for the advertising asset encoded in the file + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + ad_title +
                urn:smpte:ul:060e2b34.0101010d.0d0d0103.00000000
              + LEAF + ad_title + Alpha-numeric combination that follows the prefix + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + brand +
                urn:smpte:ul:060e2b34.0101010d.0d0d0104.00000000
              + LEAF + Brand + The advertiser brand that is associated to this product + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + product +
                urn:smpte:ul:060e2b34.0101010d.0d0d0105.00000000
              + LEAF + Product + The product that is the extension of the brand + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + advertiser +
                urn:smpte:ul:060e2b34.0101010d.0d0d0106.00000000
              + LEAF + Advertiser + The company or the agency's client that is advertising + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + agency_office_location +
                urn:smpte:ul:060e2b34.0101010d.0d0d0107.00000000
              + LEAF + agency_office_location + The agency working with the advertiser and their office location + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + length +
                urn:smpte:ul:060e2b34.0101010d.0d0d0108.00000000
              + LEAF + Length + The intended length of the advertisement between SOM and EOM + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + medium +
                urn:smpte:ul:060e2b34.0101010d.0d0d0109.00000000
              + LEAF + Medium + Medium - Television/Radio/Print etc + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + sd_flag +
                urn:smpte:ul:060e2b34.0101010d.0d0d010a.00000000
              + LEAF + sd_flag + SD Flag - CDC Flag for SD Code (video only) + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + parent +
                urn:smpte:ul:060e2b34.0101010d.0d0d010b.00000000
              + LEAF + Parent + Parent - the parent company of the advertiser + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.01010101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.01010101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.01010101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.01010101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.01010106.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.01010106.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.01010106.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.01010107.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.01010107.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.01010107.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.01010108.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.01010109.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.01010109.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.01010109.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.01010109.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.0101010a.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.0101010a.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.0101010a.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.0101010a.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.0101010c.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.0101010c.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.0101010d.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.0101010d.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.0101010d.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.0101010d.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.0101010d.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.0101010e.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.0101010e.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.0101010e.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.0101010e.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.0101010e.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.0101010e.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.01010101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/67 + Legacy_315M +
                urn:smpte:ul:060e2b34.01010101.43000000.00000000
              + NODE + Legacy (315M) + Legacy usage by SMPTE 315M + false +
              +
              +
              diff --git a/src/test/resources/registers/ponzu/Groups.xml b/src/test/resources/registers/ponzu/Groups.xml new file mode 100644 index 0000000..53b6e3c --- /dev/null +++ b/src/test/resources/registers/ponzu/Groups.xml @@ -0,0 +1,15803 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Groups + http://www.smpte-ra.org/reg/395/2014 + GROUPS +
                urn:smpte:ul:060e2b34.027f0101.00000000.00000000
              + NODE + GROUPS + Register of Packs and Sets of Metadata Elements + SMPTE ST 395 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + IDENTIFICATIONLOCATION +
                urn:smpte:ul:060e2b34.027f0101.01000000.00000000
              + NODE + IDENTIFICATION & LOCATION + Identification and location metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ADMINISTRATION +
                urn:smpte:ul:060e2b34.027f0101.02000000.00000000
              + NODE + ADMINISTRATION + Administration and business related metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AccessControl +
                urn:smpte:ul:060e2b34.027f0101.02070000.00000000
              + NODE + Access Control + Details of permitted access to the media product + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuditoriumSecurity +
                urn:smpte:ul:060e2b34.027f0101.02070100.00000000
              + NODE + Auditorium Security + Security-critical groups for intra-theater use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Error +
                urn:smpte:ul:060e2b34.027f0101.02070101.00000000
              + NODE + Error + Error + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + BadRequestResponse +
                urn:smpte:ul:060e2b34.027f0101.02070101.01000000
              + LEAF + Bad Request Response + Bad request response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.02070300.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + GeneralPurpose +
                urn:smpte:ul:060e2b34.027f0101.02070102.00000000
              + NODE + General purpose + General purpose + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + TimeRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.10000000
              + LEAF + Time Request + Time request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + TimeResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.11000000
              + LEAF + Time Response + Time response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020101.01080000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventListRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.12000000
              + LEAF + Event List Request + Log event list by time period request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020102.07030000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020102.0a020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventListResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.13000000
              + LEAF + Event List Response + Log event list by time period response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.0f000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.14000000
              + LEAF + Event ID Request + Log event record by event ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.02000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.15000000
              + LEAF + Event ID Response + Log event record by event ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070500.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SecureProcessingBlockQueryRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.16000000
              + LEAF + Secure Processing Block Query Request + Secure processing block status request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SecureProcessingBlockQueryResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.17000000
              + LEAF + Secure Processing Block Query Response + Secure processing block status response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070600.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070700.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProjectorCertificateRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.18000000
              + LEAF + Projector Certificate Request + Projector Certificate Request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProjectorCertificateResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.19000000
              + LEAF + Projector Certificate Response + Projector Certificate Resposne + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070e00.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryption +
                urn:smpte:ul:060e2b34.027f0101.02070103.00000000
              + NODE + Link encryption + Link encryption + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyLoadRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.20000000
              + LEAF + Link Encryption Key Load Request + Link decryptor block key load request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.10000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyLoadResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.21000000
              + LEAF + Link Encryption Key Load Response + Link decryptor block key load response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070800.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.22000000
              + LEAF + Link Encryption Key Query ID Request + Link decryptor block key query by key ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.23000000
              + LEAF + Link Encryption Key Query ID Response + Link decryptor block key query by key ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070900.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryAllRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.24000000
              + LEAF + Link Encryption Key Query All Request + Link decryptor block all keys query request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryAllResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.25000000
              + LEAF + Link Encryption Key Query All Response + Link decryptor block all keys query response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.11000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.26000000
              + LEAF + Link Encryption Purge ID Request + Link decryptor block key purge by key ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.27000000
              + LEAF + Link Encryption Purge ID Response + Link decryptor block key purge by key ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070a00.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeAllRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.28000000
              + LEAF + Link Encryption Purge All Request + Link decryptor block all keys purge request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeAllResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.29000000
              + LEAF + Link Encryption Purge All Response + Link decryptor block all keys purge response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + INTERPRETIVE +
                urn:smpte:ul:060e2b34.027f0101.03000000.00000000
              + NODE + INTERPRETIVE + Interpretive metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + PARAMETRIC +
                urn:smpte:ul:060e2b34.027f0101.04000000.00000000
              + NODE + PARAMETRIC + Parametric metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + PROCESS +
                urn:smpte:ul:060e2b34.027f0101.05000000.00000000
              + NODE + PROCESS + Process metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ColorTransformSets +
                urn:smpte:ul:060e2b34.027f0101.05310000.00000000
              + NODE + Color Transform Sets + Color Transform Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTGenericSets +
                urn:smpte:ul:060e2b34.027f0101.05310100.00000000
              + NODE + DMCVT Generic Sets + DMCVT Generic Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTGenericSet1 +
                urn:smpte:ul:060e2b34.027f0101.05310101.00000000
              + LEAF + DMCVT Generic Set 1 + Identifies a DMCVT Generic Set 1 + SMPTE ST 2094-2 + false + false + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310101.00000000
              + 3601 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310102.00000000
              + 3602 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310103.00000000
              + 3603 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310104.00000000
              + 3604 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310105.00000000
              + 3605 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310106.00000000
              + 3606 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310107.00000000
              + 3607 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310108.00000000
              + 3608 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310109.00000000
              + 3609 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010a.00000000
              + 360a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010b.00000000
              + 360b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010c.00000000
              + 360c + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApplicationSets +
                urn:smpte:ul:060e2b34.027f0101.05310200.00000000
              + NODE + DMCVT Application Sets + DMCVT Application Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp1Set +
                urn:smpte:ul:060e2b34.027f0101.05310201.00000000
              + LEAF + DMCVT App1 Set + Identifies a DMCVT Application 1 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.0531010d.00000000
              + 360d + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010e.00000000
              + 360e + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010f.00000000
              + 360f + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310110.00000000
              + 3610 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310111.00000000
              + 3611 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310112.00000000
              + 3612 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310113.00000000
              + 3613 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310114.00000000
              + 3614 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310115.00000000
              + 3615 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310116.00000000
              + 3616 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310117.00000000
              + 3617 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310118.00000000
              + 3618 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp2Set +
                urn:smpte:ul:060e2b34.027f0101.05310202.00000000
              + LEAF + DMCVT App2 Set + Identifies a DMCVT Application 2 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310119.00000000
              + 3619 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011a.00000000
              + 361a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011b.00000000
              + 361b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011c.00000000
              + 361c + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011d.00000000
              + 361d + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011e.00000000
              + 361e + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011f.00000000
              + 361f + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310120.00000000
              + 3620 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310121.00000000
              + 3621 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310122.00000000
              + 3622 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310123.00000000
              + 3623 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310124.00000000
              + 3624 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310125.00000000
              + 3625 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310126.00000000
              + 3626 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp3Set +
                urn:smpte:ul:060e2b34.027f0101.05310203.00000000
              + LEAF + DMCVT App3 Set + Identifies a DMCVT Application 3 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310127.00000000
              + 3627 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310128.00000000
              + 3628 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310129.00000000
              + 3629 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012a.00000000
              + 362a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012b.00000000
              + 362b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012c.00000000
              + 362c + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012d.00000000
              + 362d + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012e.00000000
              + 362e + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012f.00000000
              + 362f + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp4Set +
                urn:smpte:ul:060e2b34.027f0101.05310204.00000000
              + LEAF + DMCVT App4 Set + Identifies a DMCVT Application 4 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310130.00000000
              + 3630 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310131.00000000
              + 3631 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310132.00000000
              + 3632 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310133.00000000
              + 3633 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310134.00000000
              + 3634 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310135.00000000
              + 3635 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310136.00000000
              + 3636 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310137.00000000
              + 3637 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310138.00000000
              + 3638 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310139.00000000
              + 3639 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013a.00000000
              + 363a + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013b.00000000
              + 363b + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013c.00000000
              + 363c + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013d.00000000
              + 363d + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013e.00000000
              + 363e + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013f.00000000
              + 363f + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310140.00000000
              + 3640 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310141.00000000
              + 3641 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RELATIONAL +
                urn:smpte:ul:060e2b34.027f0101.06000000.00000000
              + NODE + RELATIONAL + Relational metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SPATIOTEMPORAL +
                urn:smpte:ul:060e2b34.027f0101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + Spatio-temporal metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + COMPOUND +
                urn:smpte:ul:060e2b34.027f0101.0c000000.00000000
              + NODE + COMPOUND + Compound metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DataModels +
                urn:smpte:ul:060e2b34.027f0101.0c010000.00000000
              + NODE + Data Models + Data Models + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DictionaryRepresentation +
                urn:smpte:ul:060e2b34.027f0101.0c010100.00000000
              + NODE + Dictionary Representation + Dictionary Representation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RegistryInterchangeFormatRIF +
                urn:smpte:ul:060e2b34.027f0101.0c010101.00000000
              + NODE + Registry Interchange Format (RIF) + Registry Interchange Format (RIF) + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RIFVersion1CompatibleClasses +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01000000
              + NODE + RIF Version 1 Compatible Classes + RIF Version 1 Compatible Classes + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AdministrativeBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010100
              + LEAF + Administrative Base Class + Administrative Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + CompoundEntryElementBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010200
              + LEAF + Compound Entry Element Base Class + Compound Entry Element Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Entry +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010300
              + LEAF + Entry + Entry + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EntryAdministration +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010400
              + LEAF + Entry Administration + Entry Administration + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Leaf +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010500
              + LEAF + Leaf + Leaf + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Node +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010600
              + LEAF + Node + Node + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Register +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010700
              + LEAF + Register + Register + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RegisterAdministration +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010800
              + LEAF + Register Administration + Register Administration + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RifBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010900
              + LEAF + Rif Base Class + Rif Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProductionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020000.00000000
              + NODE + Production Metadata + Metadata sets created at the point of creation or capture + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Acquisition +
                urn:smpte:ul:060e2b34.027f0101.0c020100.00000000
              + NODE + Acquisition + Metadata sets associated with a video camera + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + FrameBased +
                urn:smpte:ul:060e2b34.027f0101.0c020101.00000000
              + NODE + Frame based + Frame-based metadata sets + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LensUnitAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.01010000
              + LEAF + Lens Unit Acquisition Metadata + Lens Unit Acquisition Metadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.01000000
              + 8000 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.08000000
              + 8008 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.09000000
              + 8009 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.02000000
              + 8001 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.03000000
              + 8002 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.0a000000
              + 800a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.04000000
              + 8003 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.05000000
              + 8004 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.06000000
              + 8005 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.0b000000
              + 800b + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.07000000
              + 8006 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100100
              + 8007 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + CameraUnitAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.02010000
              + LEAF + Camera Unit Acquisition Metadata + Camera Unit Acquisition Metadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01010000
              + 8100 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.010c0000
              + 8115 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01020000
              + 8101 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01030000
              + 8102 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01040000
              + 8103 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01050000
              + 8104 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01060000
              + 8105 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04010301.03010000
              + 8106 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01070000
              + 8107 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080000
              + 8108 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080100
              + 8109 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01090000
              + 810a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.010a0000
              + 810b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.010d0000
              + 8118 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.010b0000
              + 810c + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02010000
              + 810d + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02020000
              + 810e + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02030000
              + 810f + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02040000
              + 8110 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02050000
              + 8111 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02060000
              + 8112 + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + 3210 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.02070000
              + 8116 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.02080000
              + 8117 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.01020108.02000000
              + 8113 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100200
              + 8114 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + UserDefinedAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.7f010000
              + LEAF + UserDefinedAcquisitionMetadata + UserDefinedAcquisitionMetadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04060805.00000000
              + e000 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Messages +
                urn:smpte:ul:060e2b34.027f0101.0c030000.00000000
              + NODE + Messages + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataTransferProtocol +
                urn:smpte:ul:060e2b34.027f0101.0c030100.00000000
              + NODE + Aux Data Transfer Protocol + SMPTE ST 430-14 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataBlockTransferHeader +
                urn:smpte:ul:060e2b34.027f0101.0c030101.00000000
              + LEAF + Aux Data Block Transfer Header + SMPTE ST 430-14 + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010e.02400101.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400102.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataBlock +
                urn:smpte:ul:060e2b34.027f0101.0c030102.00000000
              + LEAF + Aux Data Block + SMPTE ST 430-14 + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010e.02400103.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400104.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400105.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400106.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400107.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400108.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400109.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.027f0101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.027f0101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AAFAssociationStructuralMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d010100.00000000
              + NODE + AAF Association Structural Metadata + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AAFVersion1XClasses +
                urn:smpte:ul:060e2b34.027f0101.0d010101.00000000
              + NODE + AAF Version 1.x Classes + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StandardClasses +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01000000
              + NODE + Standard Classes + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Class +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010000
              + NODE + Class + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + InterchangeObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010100
              + LEAF + Interchange Object + Interchange Object + AAF + AAF Object Specification SMPTE 377M + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01010000
              + 0101 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.08000000
              + 0102 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.06010104.020e0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Component +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010200
              + LEAF + Component + Component + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04070100.00000000
              + 0201 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01030000
              + 0202 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010210.04000000
              + 0203 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020102.16000000
              + 0204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010210.08000000
              + 0205 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Segment +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010300
              + LEAF + Segment + Segment + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EdgeCode +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010400
              + LEAF + Edge Code + Edge Code + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01040901.00000000
              + 0401 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01090000
              + 0402 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04100103.01020000
              + 0403 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01030201.02000000
              + 0404 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceGroup +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010500
              + LEAF + Essence Group + Essence Group + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06010000
              + 0501 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02080000
              + 0502 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Event +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010600
              + LEAF + Event + Event + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.03030000
              + 0601 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300404.01000000
              + 0602 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GPITrigger +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010700
              + LEAF + GPI Trigger + GPI Trigger + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010600 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.05300401.00000000
              + 0801 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CommentMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010800
              + LEAF + Comment Marker + Comment Marker + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010600 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.020a0000
              + 0901 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Filler +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010900
              + LEAF + Filler + Filler + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 13 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationGroup +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010a00
              + LEAF + Operation Group + Operation Group + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300506.00000000
              + 0b01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06020000
              + 0b02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.060a0000
              + 0b03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050c.00000000
              + 0b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02060000
              + 0b05 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NestedScope +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010b00
              + LEAF + Nested Scope + Nested Scope + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06070000
              + 0c01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Pulldown +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010c00
              + LEAF + Pulldown + Pulldown + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02070000
              + 0d01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.02000000
              + 0d02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.01000000
              + 0d03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.03000000
              + 0d04 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ScopeReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010d00
              + LEAF + Scope Reference + Scope Reference + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010103.03000000
              + 0e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010103.04000000
              + 0e02 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Selector +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010e00
              + LEAF + Selector + Selector + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02090000
              + 0f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06080000
              + 0f02 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Sequence +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010f00
              + LEAF + Sequence + Sequence + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06090000
              + 1001 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourceReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011000
              + LEAF + Source Reference + Source Reference + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010103.01000000
              + 1101 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010103.02000000
              + 1102 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.06010103.07000000
              + 1103 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010103.08000000
              + 1104 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourceClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011100
              + LEAF + Source Clip + Source Clip + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.01040000
              + 1201 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050200
              + 1202 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300501.00000000
              + 1203 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050300
              + 1204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300502.00000000
              + 1205 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011200
              + LEAF + Text Clip + Text Clip + AAF ASPA[0.8] + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011300
              + LEAF + HTML Clip + HTML Clip + AAF + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300601.01000000
              + 1401 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300602.01000000
              + 1402 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Timecode +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011400
              + LEAF + Timecode + Timecode + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.01050000
              + 1501 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04040101.02060000
              + 1502 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04040101.05000000
              + 1503 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimecodeStream +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011500
              + LEAF + Timecode Stream + Timecode Stream + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04040101.02010000
              + 1601 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04070300.00000000
              + 1602 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04040201.00000000
              + 1603 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimecodeStream12M +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011600
              + LEAF + Timecode Stream 12M + Timecode Stream 12M + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.04040101.04000000
              + 1701 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Transition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011700
              + LEAF + Transition + Transition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02050000
              + 1801 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.01060000
              + 1802 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContentStorage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011800
              + LEAF + Content Storage + Content Storage + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.05010000
              + 1901 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05020000
              + 1902 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ControlPoint +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011900
              + LEAF + Control Point + Control Point + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.0530050d.00000000
              + 1a02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.10020100
              + 1a03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05300508.00000000
              + 1a04 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DefinitionObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00
              + LEAF + Definition Object + Definition Object + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01011503.00000000
              + 1b01 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01070102.03010000
              + 1b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020301.02010000
              + 1b03 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DataDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00
              + LEAF + Data Definition + Data Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00
              + LEAF + Operation Definition + Operation Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300509.00000000
              + 1e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.05300503.00000000
              + 1e02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.04010000
              + 1e03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050a.00000000
              + 1e06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300504.00000000
              + 1e07 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.05300505.00000000
              + 1e08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.03020000
              + 1e09 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ParameterDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00
              + LEAF + Parameter Definition + Parameter Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01060000
              + 1f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050b.01000000
              + 1f03 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PluginDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00
              + LEAF + Plugin Definition + Plugin Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05200901.00000000
              + 2203 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03030301.03000000
              + 2204 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03030301.02010000
              + 2205 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + 2206 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.020b0000
              + 2207 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.03000000
              + 2208 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200902.00000000
              + 2209 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200903.00000000
              + 220a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200904.00000000
              + 220b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200905.00000000
              + 220c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200906.00000000
              + 220d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200907.00000000
              + 220e + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200908.00000000
              + 220f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200909.00000000
              + 2210 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090a.00000000
              + 2211 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090b.00000000
              + 2212 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090c.00000000
              + 2213 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090d.00000000
              + 2214 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090e.00000000
              + 2215 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090f.00000000
              + 2216 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CodecDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00
              + LEAF + Codec Definition + Codec Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01070000
              + 2301 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.03010000
              + 2302 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContainerDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012000
              + LEAF + Container Definition + Container Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03010201.03000000
              + 2401 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + InterpolationDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012100
              + LEAF + Interpolation Definition + Interpolation Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Dictionary +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012200
              + LEAF + Dictionary + Dictionary + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.05030000
              + 2603 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05040000
              + 2604 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05050000
              + 2605 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05060000
              + 2606 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05070000
              + 2607 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05080000
              + 2608 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05090000
              + 2609 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.050a0000
              + 260a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.050b0000
              + 260b + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceData +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012300
              + LEAF + Essence Data + Essence Data + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010106.01000000
              + 2701 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04070200.00000000
              + 2702 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010102.01000000
              + 2b01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + 3f07 + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + 3f06 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040504.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04060207.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040505.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040506.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012400
              + LEAF + Essence Descriptor + Essence Descriptor + AAF + Item name in ST 377-1 is Generic Descriptor. Section B.2. + AAF Object Specification SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06030000
              + 2f01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010104.06100000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FileDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012500
              + LEAF + File Descriptor + File Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.04060101.00000000
              + 3001 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04060102.00000000
              + 3002 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01020000
              + 3004 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01030000
              + 3005 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010103.05000000
              + 3006 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AIFCDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012600
              + LEAF + AIFC Descriptor + AIFC Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03030302.02000000
              + 3101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PictureDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012700
              + LEAF + Picture Descriptor + Picture Descriptor + AAF~DigitalImageDescriptor + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010601.00000000
              + 3201 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010502.01000000
              + 3202 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010502.02000000
              + 3203 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.07000000
              + 3204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.08000000
              + 3205 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.09000000
              + 3206 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0a000000
              + 3207 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0b000000
              + 3208 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0c000000
              + 3209 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0d000000
              + 320a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0e000000
              + 320b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010301.04000000
              + 320c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04010302.05000000
              + 320d + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010101.01000000
              + 320e + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200102.00000000
              + 320f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + 3210 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010109.04010201.01060100
              + 3219 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01030100
              + 321a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180101.00000000
              + 3211 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010301.06000000
              + 3212 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180102.00000000
              + 3213 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180103.00000000
              + 3214 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04050113.00000000
              + 3215 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.08000000
              + 3216 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.07000000
              + 3217 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.09000000
              + 3218 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010302.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01040000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CDCIDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012800
              + LEAF + CDCI Descriptor + CDCI Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010503.0a000000
              + 3301 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.05000000
              + 3302 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.06000000
              + 3303 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010503.03000000
              + 3304 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010503.04000000
              + 3305 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.05000000
              + 3306 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180104.00000000
              + 3307 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010501.10000000
              + 3308 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.07000000
              + 3309 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03010201.0a000000
              + 330b + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RGBADescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012900
              + LEAF + RGBA Descriptor + RGBA Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010503.06000000
              + 3401 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.08000000
              + 3403 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.09000000
              + 3404 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010404.01000000
              + 3405 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0b000000
              + 3406 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0c000000
              + 3407 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0d000000
              + 3408 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0e000000
              + 3409 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012a00
              + LEAF + HTML Descriptor + HTML Descriptor + AAF ASPA[:0.8] + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TIFFDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012b00
              + LEAF + TIFF Descriptor + TIFF Descriptor + AAF + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05020103.01010000
              + 3701 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.06080201.00000000
              + 3702 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010302.03000000
              + 3703 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010302.04000000
              + 3704 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05020103.01020000
              + 3705 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03030302.03000000
              + 3706 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + WAVEDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012c00
              + LEAF + WAVE Descriptor + WAVE Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03030302.01000000
              + 3801 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FilmDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012d00
              + LEAF + Film Descriptor + Film Desciptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04100103.01080000
              + 3901 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010802.03000000
              + 3902 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01030000
              + 3903 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.02030000
              + 3904 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01060100
              + 3905 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01050100
              + 3906 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01040100
              + 3907 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01070100
              + 3908 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TapeDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012e00
              + LEAF + Tape Descriptor + Tape Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04100101.01010000
              + 3a01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010401.01000000
              + 3a02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0d010101.01010100
              + 3a03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.03000000
              + 3a04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.04010000
              + 3a05 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.02010000
              + 3a06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.06010000
              + 3a07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.05010000
              + 3a08 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Preface +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00
              + LEAF + Preface + Preface + ASPA[0.8]~Header AAF~Header + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03010201.02000000
              + 3b01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02040000
              + 3b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02010000
              + 3b03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02020000
              + 3b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010201.05000000
              + 3b05 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06040000
              + 3b06 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010201.04000000
              + 3b07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010104.06010104.01080000
              + 3b08 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + 3b09 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + 3b0a + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02020000
              + 3b0b + false + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040503.00000000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010100
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010200
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010300
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010400
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010801.01010000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Identification +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013000
              + LEAF + Identification + Identification + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05200701.02010000
              + 3c01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.03010000
              + 3c02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.04000000
              + 3c03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.05010000
              + 3c04 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.07000000
              + 3c05 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02030000
              + 3c06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.0a000000
              + 3c07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.06010000
              + 3c08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.01000000
              + 3c09 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Locator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013100
              + LEAF + Locator + Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NetworkLocator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013200
              + LEAF + Network Locator + Network Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01020101.01000000
              + 4001 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextLocator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013300
              + LEAF + Text Locator + Text Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01040102.01000000
              + 4101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Package +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013400
              + LEAF + Package + Package + AAF~Mob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011510.00000000
              + 4401 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.01030302.01000000
              + 4402 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06050000
              + 4403 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02050000
              + 4404 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.01030000
              + 4405 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020102.0c000000
              + 4406 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010210.03000000
              + 4407 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010210.07000000
              + 4409 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.05010108.00000000
              + 4408 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CompositionPackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013500
              + LEAF + Composition Package + Composition Package + AAF~CompositionMob + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050100
              + 4501 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300201.00000000
              + 4502 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300403.00000000
              + 4503 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.010a0000
              + 4504 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MaterialPackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013600
              + LEAF + Material Package + Material Package + AAF~MasterMob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourcePackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013700
              + LEAF + Source Package + Source Package + AAF~SourceMob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02030000
              + 4701 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Track +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013800
              + LEAF + Track + Track + AAF~MobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01070101.00000000
              + 4801 + false + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01070102.01000000
              + 4802 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02040000
              + 4803 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01040103.00000000
              + 4804 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EventTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013900
              + LEAF + Event Package + Event Package + AAF~EventMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300402.00000000
              + 4901 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020103.010b0000
              + 4902 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StaticTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013a00
              + LEAF + Static Track + Static Track + AAF~StaticMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimelineTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013b00
              + LEAF + Timeline Track + Timeline Track + AAF~TimelineMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300405.00000000
              + 4b01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.01030000
              + 4b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.010c0000
              + 4b03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.02030000
              + 4b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.010d0000
              + 4b05 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.07020103.010e0000
              + 4b06 + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.07020103.02040000
              + 4b07 + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Parameter +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00
              + LEAF + Parameter + Parameter + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01040000
              + 4c01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ConstantValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013d00
              + LEAF + Constant Value + Constant Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300507.00000000
              + 4d01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VaryingValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013e00
              + LEAF + Varying Value + Varying Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01050000
              + 4e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06060000
              + 4e02 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TaggedValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013f00
              + LEAF + Tagged Value + Tagged Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03020102.09010000
              + 5001 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020102.0a010000
              + 5003 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + KLVData +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014000
              + LEAF + KLV Data + KLV Data + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010210.02000000
              + 5101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014100
              + LEAF + Descriptive Marker + Descriptive Marker + AAF[1.1:]~DescriptiveMarker ASPA[:0.8]~DMSegment mxflib[:1.19]~DMSegment + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.01070105.00000000
              + 6102 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.020c0000
              + 6101 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0e000000
              + true + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04060804.00000000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.10000000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SoundDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014200
              + LEAF + Sound Descriptor + Sound Descriptor + AAF[1.1:] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020301.01010000
              + 3d03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04020301.04000000
              + 3d02 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04020101.03000000
              + 3d04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04020101.01000000
              + 3d05 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020101.04000000
              + 3d07 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04020303.04000000
              + 3d01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04020701.00000000
              + 3d0c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04020402.00000000
              + 3d06 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020101.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020101.06000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DataEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014300
              + LEAF + Data Essence Descriptor + Data Essence Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.04030302.00000000
              + 3e01 + false + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MultipleDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014400
              + LEAF + Multiple Descriptor + Multiple Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.06010104.060b0000
              + 3f01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014500
              + LEAF + Descriptive Clip + Descriptive Clip + AAF[1.12:]~DescriptiveClip mxflib[:1.19]~DMSourceClip + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01070106.00000000
              + 6103 + false + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DateTimeDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014600
              + LEAF + Date Time Descriptor + Date Time Descriptor + AAF Object Specification SMPTE 385M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04040102.01000000
              + 3501 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.02000000
              + 3502 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.03000000
              + 3503 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.04000000
              + 3504 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AES3PCMDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014700
              + LEAF + AES3 PCM Descriptor + AES3 PCM Descriptor + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020501.06000000
              + 3d0d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.03000000
              + 3d0f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.01000000
              + 3d08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.02000000
              + 3d10 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.03000000
              + 3d11 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.04000000
              + 3d12 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.05000000
              + 3d13 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + WAVEPCMDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014800
              + LEAF + WAVE PCM Descriptor + WAVE PCM Descriptor + AAF[1.1:]~PCMDescriptor mxflib[:1.19]~PCMDescriptor + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020302.01000000
              + 3d0a + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.02000000
              + 3d0b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020303.05000000
              + 3d09 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.04020101.05000000
              + 3d32 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.06000000
              + 3d29 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.07000000
              + 3d2a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.08000000
              + 3d2b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.09000000
              + 3d2c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0a000000
              + 3d2d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0b000000
              + 3d2e + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0c000000
              + 3d2f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0d000000
              + 3d30 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0e000000
              + 3d31 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PhysicalDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014900
              + LEAF + Physical Descriptor + Physical Descriptor + AAF[1.1:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ImportDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014a00
              + LEAF + Import Descriptor + Import Descriptor + AAF[1.1:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RecordingDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014b00
              + LEAF + Recording Descriptor + Recording Descriptor + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TaggedValueDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014c00
              + LEAF + Tagged Value Definition + Tagged Value Definition + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.06010104.03050000
              + 4c11 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + KLVDataDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014d00
              + LEAF + KLV Data Definition + KLV Data Definition + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.06010104.03040000
              + 4d11 + false +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.01090000
              + 4d12 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AuxiliaryDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014e00
              + LEAF + Auxiliary Descriptor + Auxiliary Descriptor + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + 4e11 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04090300.00000000
              + 4e12 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RIFFChunk +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014f00
              + LEAF + RIFF Chunk + RIFF Chunk + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.04060802.00000000
              + 4f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04060903.00000000
              + 4f02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04070400.00000000
              + 4f03 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BWFImportDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015000
              + LEAF + BWF Import Descriptor + BWF Import Descriptor + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020302.05000000
              + 3d15 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.06000000
              + 3d16 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.01010000
              + 3d21 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.02010000
              + 3d22 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.03010000
              + 3d23 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.04010000
              + 3d24 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.05010000
              + 3d25 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.06010000
              + 3d26 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.07010000
              + 3d27 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.08010000
              + 3d28 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.060f0000
              + 3d33 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEGVideoDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015100
              + LEAF + MPEG Video Descriptor + MPEG Video Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 381M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04010602.01020000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01030000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01040000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01050000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01060000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01070000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01080000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01090000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.010b0000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.010a0000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ParsedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015200
              + LEAF + Parsed Text Descriptor + Parsed Text Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.04090401.00000000
              + 5212 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SGMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015300
              + LEAF + SGML Descriptor + SGML Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015200 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + XMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015400
              + LEAF + XML Descriptor + XML Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01020104.01000000
              + 5401 + false +
              + +
                urn:smpte:ul:060e2b34.01010108.01020106.01000000
              + 5402 + true +
              + +
                urn:smpte:ul:060e2b34.01010108.01030606.01000000
              + 5403 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLParsedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015500
              + LEAF + HTML Parsed Text Descriptor + HTML Parsed Text Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01030604.01000000
              + 5501 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RP217Descriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015600
              + LEAF + RP217 Descriptor + RP217 Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification RP 217 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.01030406.00000000
              + 5601 + false +
              + +
                urn:smpte:ul:060e2b34.01010109.01030407.00000000
              + 5602 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DynamicMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015700
              + LEAF + Dynamic Marker + Dynamic Marker + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.07020501.00000000
              + 5701 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.07020503.00000000
              + 5702 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.07020502.00000000
              + 5703 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DynamicClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015800
              + LEAF + Dynamic Clip + Dynamic Clip + AAF[1.3:] ASPA + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015700 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.06010103.09000000
              + 5801 + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0a000000
              + 5802 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0b000000
              + 5803 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0c000000
              + 5804 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015900
              + LEAF + Sub-Descriptor + Sub-Descriptor + AAF[1.2:] AAF[:1.13] ASPA + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + JPEG2000SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015a00
              + LEAF + JPEG 2000 Sub-Descriptor + JPEG 2000 Sub-Descriptor + AAF[1.2:] ASPA + AAF Object Specification SMPTE 422M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010a.04010603.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.04000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.05000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.06000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.07000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.08000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.09000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0a000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0b000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010603.0e000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VBIDataDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015b00
              + LEAF + VBI Data Descriptor + VBI Data Descriptor + MXF + SMPTE ST 436-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ANCDataDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015c00
              + LEAF + ANC Data Descriptor + ANC Data Descriptor + MXF + SMPTE ST 436-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCPCMSoundDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015d00
              + LEAF + DC PCM Sound Descriptor + DC PCM Sound Descriptor + MXF + SMPTE 429-10M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEGAudioDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015e00
              + LEAF + MPEG Audio Descriptor + MPEG Audio Descriptor + AAF[1.2:] + SMPTE ST 381-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010a.04020403.01020000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC1VideoDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015f00
              + LEAF + VC-1 Video Descriptor + VC-1 Video Descriptor + AAF[1.2:] + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012800 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.04010604.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.0a000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PackageMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016000
              + LEAF + Package Marker + Package Marker + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + 06 53 13 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationPlugInObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016100
              + LEAF + Application Plug-In Object + Application Plug-In Object + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016600 + 06 53 13 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0d000000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.04060803.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0f000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationReferencedObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016200
              + LEAF + Application Referenced Object + Application Referenced Object + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016600 + 06 53 13 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0b000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StereoscopicPictureSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016300
              + LEAF + Stereoscopic Picture Sub-Descriptor + Stereoscopic Picture Sub-Descriptor + MXF + SMPTE 429-10M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCTimedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016400
              + LEAF + DC Timed Text Descriptor + DC Timed Text Descriptor + MXF + SMPTE ST 429-5 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.01011512.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.04090500.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010108.01020105.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.03010102.02160000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCTimedTextResourceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016500
              + LEAF + DC Timed Text Resource Sub-Descriptor + DC Timed Text Resource Sub-Descriptor + MXF + SMPTE ST 429-5 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.01011513.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016600
              + LEAF + Application Object + Application Object + MXF + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.06010104.010b0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContainerConstraintsSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016700
              + LEAF + Container Constraints Sub-Descriptor + Container Constraints Sub-Descriptor + MXF + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEG4VisualSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016800
              + LEAF + MPEG-4 Visual Sub-Descriptor + MPEG-4 Visual Sub-Descriptor + MXF + SMPTE ST 381-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TIFFPictureEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016900
              + LEAF + TIFF Picture Essence Descriptor + TIFF Picture Essence Descriptor + SMPTE ST 2055 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MCALabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00
              + LEAF + MCA Label Sub-Descriptor + MCA Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.05000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0103040a.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.03150000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051000.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051300.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01040105.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01040106.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.03020102.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.03020102.21000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AudioChannelLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016b00
              + LEAF + Audio Channel Label Sub-Descriptor + Audio Channel Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.06000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SoundfieldGroupLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016c00
              + LEAF + Soundfield Group Label Sub-Descriptor + Soundfield Group Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.04000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GroupOfSoundfieldGroupsLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016d00
              + LEAF + Group Of Soundfield Groups Label Sub-Descriptor + Group Of Soundfield Groups Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AVCSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016e00
              + LEAF + AVC Sub-Descriptor + AVC Sub-Descriptor + AAF[2.0:] + SMPTE ST 381-3 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01080000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01090000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010a0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010b0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010e0000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010f0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01100000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01110000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01140000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EventTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016f00
              + LEAF + Event Text Descriptor + Event Text Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.03020108.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + STLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017000
              + LEAF + STL Descriptor + STL Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016f00 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.07020102.02020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + STLSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017100
              + LEAF + STL Sub-Descriptor + STL Sub-Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.03020108.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationsStereoscopicSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017200
              + LEAF + Operations Stereoscopic Sub-Descriptor + Operations Stereoscopic Sub-Descriptor + SMPTE ST 2070-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030703.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030703.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AuxDataEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017300
              + LEAF + Aux Data Essence Descriptor + Aux Data Essence Descriptor + SMPTE ST 429-14 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC2SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017400
              + LEAF + VC-2 Sub-Descriptor + VC-2 Sub-Descriptor + MXF + SMPTE ST 2042-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010607.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.04000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.07000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMCVTTargetSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017500
              + LEAF + DMCVT Target SubDescriptor + Identifies a DMCVT Target SubDescriptor + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310201.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310202.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310203.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310209.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020a.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020b.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020c.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310227.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310236.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310237.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC5BayerPictureEssenceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017600
              + LEAF + VC-5 Bayer Picture Essence Sub-Descriptor + Key Value for VC-5 Bayer Picture Essence Sub-Descriptor + SMPTE ST 2073-10 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010608.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010608.03000000
              + true + false + 0 +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010608.04000000
              + true + false + 4095 +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC5CDCIPictureEssenceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017700
              + LEAF + VC-5 CDCI Picture Essence Sub-Descriptor + Key Value for the VC-5 CDCI Picture Essence Sub-Descriptor + SMPTE ST 2073-10 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010608.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AACSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017800
              + LEAF + AAC SubDescriptor + Advanced Audio Coding SubDescriptor + MXF + SMPTE ST 381-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04020403.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020403.01030000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OPDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017d00
              + LEAF + Operational Pattern Definition + Operational Pattern Definition + AAF[2.0:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CompressionDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017e00
              + LEAF + Compression Definition + Compression Definition + AAF[2.0:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AbstractObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017f00
              + LEAF + Abstract Object + Abstract Object + AAF mxflib + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDefinitions +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02000000
              + NODE + Meta-Definitions + Meta-Definitions + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ClassDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02010000
              + LEAF + Class Definition + Class Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.01000000
              + 08 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.02000000
              + 09 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.03000000
              + 0a + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PropertyDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02020000
              + LEAF + Property Definition + Property Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.04000000
              + 0b + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010202.01000000
              + 0c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.05000000
              + 0d + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.06000000
              + 0e + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02030000
              + LEAF + Type Definition + Type Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionInteger +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02040000
              + LEAF + Type Definition Integer + Type Definition Integer + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010203.01000000
              + 0f + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.02000000
              + 10 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionStrongObjectReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02050000
              + LEAF + Type Definition Strong Object Reference + Type Definition Strong Object Reference + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.09000000
              + 11 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionWeakObjectReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02060000
              + LEAF + Type Definition Weak Object Reference + Type Definition Weak Object Reference + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0a000000
              + 12 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.0b000000
              + 13 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionEnumeration +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02070000
              + LEAF + Type Definition Enumeration + Type Definition Enumeration + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0b000000
              + 14 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.04000000
              + 15 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.05000000
              + 16 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionFixedArray +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02080000
              + LEAF + Type Definition Fixed Array + Type Definition Fixed Array + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0c000000
              + 17 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.03000000
              + 18 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionVariableArray +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02090000
              + LEAF + Type Definition Variable Array + Type Definition Variable Array + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0d000000
              + 19 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionSet +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020a0000
              + LEAF + Type Definition Set + Type Definition Set + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0e000000
              + 1a + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionString +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020b0000
              + LEAF + Type Definition String + Type Definition String + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0f000000
              + 1b + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionStream +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020c0000
              + LEAF + Type Definition Stream + Type Definition Stream + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionRecord +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020d0000
              + LEAF + Type Definition Record + Type Definition Record + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.11000000
              + 1c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.06000000
              + 1d + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionRename +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020e0000
              + LEAF + Type Definition Rename + Type Definition Rename + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.12000000
              + 1e + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionExtendibleEnumeration +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02200000
              + LEAF + Type Definition Extendible Enumeration + Type Definition Extendible Enumeration + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010203.07000000
              + 1f + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.08000000
              + 20 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionIndirect +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02210000
              + LEAF + Type Definition Indirect + Type Definition Indirect + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionOpaque +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02220000
              + LEAF + Type Definition Opaque + Type Definition Opaque + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02210000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionCharacter +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02230000
              + LEAF + Type Definition Character + Type Definition Character + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02240000
              + LEAF + Meta-Definition + Meta-Definition + AAF + AAF Object Specification + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.13000000
              + 05 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020401.02010000
              + 06 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.14010000
              + 07 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDictionary +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02250000
              + LEAF + Meta-Dictionary + Meta-Dictionary + AAF + AAF Object Specification + false + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.07000000
              + 03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.08000000
              + 04 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ExtensionScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02260000
              + LEAF + Extension Scheme + SMPTE ST 377-2 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1b000000
              + 24 + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1c000000
              + 25 + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1d000000
              + 26 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1e000000
              + 27 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1f000000
              + 28 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Root +
                urn:smpte:ul:060e2b34.027f0101.0d010101.03000000
              + LEAF + Root + Root + AAF + AAF Object Specification + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.16000000
              + 01 + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.17000000
              + 02 + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.18000000
              + 21 + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.19000000
              + 22 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructure +
                urn:smpte:ul:060e2b34.027f0101.0d010200.00000000
              + NODE + MXF File Structure + MXF File Structure + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructureVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010201.00000000
              + NODE + MXF File Structure Version 1 + MXF File Structure Version 1 + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructureSetsAndPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01000000
              + NODE + MXF File Structure Sets and Packs + MXF File Structure Sets and Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01010000
              + LEAF + Partition Pack + Partition Pack + MXF + SMPTE 377M + false + false + 05 + + +
                urn:smpte:ul:060e2b34.01010104.03010201.06000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.03010201.07000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.03010201.09000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101003.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101002.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101005.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060901.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060902.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06080102.01030000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020000
              + LEAF + Header Partition Pack + Header Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionOpenIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020100
              + LEAF + Header Partition Open Incomplete + Header Partition Open Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020200
              + LEAF + Header Partition Closed Incomplete + Header Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionOpenComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020300
              + LEAF + Header Partition Open Complete + Header Partition Open Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020400
              + LEAF + Header Partition Closed Complete + Header Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030000
              + LEAF + Body Partition Pack + Body Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionOpenIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030100
              + LEAF + Body Partition Open Incomplete + Body Partition Open Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030200
              + LEAF + Body Partition Closed Incomplete + Body Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionOpenComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030300
              + LEAF + Body Partition Open Complete + Body Partition Open Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030400
              + LEAF + Body Partition Closed Complete + Body Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericStreamPartition +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01031100
              + LEAF + Generic Stream Partition + Generic Stream Partition + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040000
              + LEAF + Footer Partition Pack + Footer Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040200
              + LEAF + Footer Partition Closed Incomplete + Footer Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01040000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040400
              + LEAF + Footer Partition Closed Complete + Footer Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01040000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PrimerPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01050000
              + NODE + Primer Packs + Primer Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PrimerPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01050100
              + LEAF + PrimerPack + PrimerPack + MXF + SMPTE 377M + false + 05 + + +
                urn:smpte:ul:060e2b34.01010105.06010107.15000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + IndexTables +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01100000
              + NODE + Index Tables + Index Tables + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + IndexTableSegment +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01100100
              + LEAF + IndexTableSegment + IndexTableSegment + MXF + SMPTE 377M + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              + +
                urn:smpte:ul:060e2b34.01010105.05300406.00000000
              + 3f0b + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020103.010a0000
              + 3f0c + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020201.01020000
              + 3f0d + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060201.00000000
              + 3f05 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + 3f06 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + 3f07 + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04040401.01000000
              + 3f08 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04040401.07000000
              + 3f0e + true + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040401.06000000
              + 3f09 + true + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040402.05000000
              + 3f0a + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04060204.00000000
              + 3f0f + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04060205.00000000
              + 3f10 + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040501.00000000
              + 3f11 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04060206.00000000
              + 3f12 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040502.00000000
              + 3f13 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OtherMXFPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01110000
              + NODE + Other MXF Packs + Other MXF Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RandomIndexPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01110100
              + LEAF + Random Index Pack + Random Index Pack + MXF + SMPTE ST 377-1 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceContainerLabels +
                urn:smpte:ul:060e2b34.027f0101.0d010300.00000000
              + NODE + Essence Container Labels + Essence Container Labels + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceContainerLabelsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010301.00000000
              + NODE + Essence Container Labels - Version 1 + Essence Container Labels - Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericContainerLabelsDeprecated +
                urn:smpte:ul:060e2b34.027f0101.0d010301.01000000
              + NODE + Generic Container Labels - Deprecated + Generic Container Labels - Deprecated + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericContainerLabels +
                urn:smpte:ul:060e2b34.027f0101.0d010301.02000000
              + NODE + Generic Container Labels + Generic Container Labels + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EncryptedEssence +
                urn:smpte:ul:060e2b34.027f0101.0d010301.027e0000
              + NODE + EncryptedEssence + EncryptedEssence + DCP + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EncryptedTriplet +
                urn:smpte:ul:060e2b34.027f0101.0d010301.027e0100
              + LEAF + Encrypted Triplet + Encrypted Triplet + DCP + SMPTE 429-6 + false + 04 + + +
                urn:smpte:ul:060e2b34.01010109.06010106.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06090201.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010102.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.04061002.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010106.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06100500.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010109.02090302.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveObject +
                urn:smpte:ul:060e2b34.027f0101.0d010400.00000000
              + LEAF + Descriptive Object + Descriptive Object + AAF[1.1:]~DescriptiveObject mxflib[:1.19]~DM_Set ASPA~DM_Set + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.11000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.00000000
              + LEAF + Descriptive Framework + Descriptive Framework + AAF[1.1:]~DescriptiveFramework mxflib[:1.19]~DM_Framework ASPA~DM_Framework + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0c000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1DescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01000000
              + NODE + DMS-1 Descriptive Metadata Scheme + DMS-1 Descriptive Metadata Scheme + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Frameworks +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010000
              + NODE + DMS-1 Frameworks + DMS-1 Frameworks + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ProductionFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010100
              + LEAF + Production Framework + Production Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.05010101.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ClipFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010200
              + LEAF + Clip Framework + Clip Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020504.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050c00.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.01011509.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020110.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01050700.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020503.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401102
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SceneFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010300
              + LEAF + Scene Framework + Scene Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01050600.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e02
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401101
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1TitleSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01100000
              + NODE + DMS-1 Title Sets + DMS-1 Title Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Titles +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01100100
              + LEAF + Titles Set + Titles Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.01050201.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.01050301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050a01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050b01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.01050801.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1IdentificationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01110000
              + NODE + DMS-1 Identification Sets + DMS-1 Identification Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Identification +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01110100
              + LEAF + Identification Set + Identification Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.01080100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01080200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01020202.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.020a0101.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RelationshipSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01120000
              + NODE + DMS-1 Relationship Sets + DMS-1 Relationship Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GroupRelationship +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01120100
              + LEAF + Episodic Item Set + Episodic Item Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.02020301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02020601.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.08010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.06100100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06100400.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02020400.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02020500.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1BrandingSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01130000
              + NODE + DMS-1 Branding Sets + DMS-1 Branding Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Branding +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01130100
              + LEAF + Branding Set + Branding Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01050d01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01050e01.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1PublicationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140000
              + NODE + DMS-1 Publication Sets + DMS-1 Publication Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Event +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140100
              + LEAF + Event Set + Event Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.05010102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07020102.07020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07020102.09020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.05400d01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Publication +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140200
              + LEAF + Publication Set + Publication Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.02100201.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.04010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1AwardsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01150000
              + NODE + DMS-1 Awards Sets + DMS-1 Awards Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Award +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01150100
              + LEAF + Award Set + Award Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020201.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020102.07100100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020201.04010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020201.05010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.03020201.06010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401301
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1CaptionsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01160000
              + NODE + DMS-1 Captions Sets + DMS-1 Captions Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CaptionsDescription +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01160100
              + LEAF + Captions Description Set + Captions Description Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.03010102.02120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.04030101.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1InterpretiveSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170000
              + NODE + DMS-1 Interpretive Sets + DMS-1 Interpretive Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Annotation +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170100
              + LEAF + Annotation Set + Annotation Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020106.0e010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.09010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0a010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0f010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.060d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.03401303
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SettingPeriod +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170200
              + LEAF + Setting Period Set + Setting Period Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07020108.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020108.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020108.03010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Scripting +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170300
              + LEAF + Scripting Set + Scripting Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020106.0b010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0c010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.060e0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Classification +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170400
              + LEAF + Classification Set + Classification Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03020102.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Shot +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170500
              + LEAF + Shot Set + Shot Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.07020103.01090000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020201.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01070107.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020501.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020502.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402302
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401200
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Keypoint +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170600
              + LEAF + Key Point Set + Key Point Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.10010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020102.11010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020103.01070000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CueWords +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170800
              + LEAF + Cue Words Set + Cue Words Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020102.0e010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RoleSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01180000
              + NODE + DMS-1 Role Sets + DMS-1 Role Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Participant +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01180100
              + LEAF + Participant Role Set + Participant Role Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01011540.01010000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.01010103.02300102.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300501.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300501.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300502.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401501
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactCollections +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01190000
              + NODE + DMS-1 Contact Collections + DMS-1 Contact Collections + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContactsList +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01190100
              + LEAF + Contacts List Set + Contacts List Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401600
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0000
              + NODE + DMS-1 Contact Sets + DMS-1 Contact Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Person +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0200
              + LEAF + Person Set + Person Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02300603.01010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.01020100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01080100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01050100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01060100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.01070100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01090100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401502
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Organization +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0300
              + LEAF + Organisation Set + Organisation Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02300201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.03010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.010a0201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300602.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Location +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0400
              + LEAF + Location Set + Location Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07012002.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07012002.02010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactInformationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0000
              + NODE + DMS-1 Contact Information Sets + DMS-1 Contact Information Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Address +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0100
              + LEAF + Address Set + Address Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010101
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.04011101
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.04011201
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011401
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010201
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010401
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010501
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010601
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010701
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010801
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011601
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.05401f04
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Communications +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0200
              + LEAF + Communications Set + Communications Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07012001.10030400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07012001.10030100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07012001.10030500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07012001.10030200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.10030301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.10030601
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RightsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0000
              + NODE + DMS-1 Rights Sets + DMS-1 Rights Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Contract +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0100
              + LEAF + Contract Set + Contract Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.02010200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401302
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Rights +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0200
              + LEAF + Rights Set + Rights Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02050102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050301.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050302.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.03050100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050403.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.02050404.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050202.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020120.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020120.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.02050401.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1FormatSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011d0000
              + NODE + DMS-1 Format Sets + DMS-1 Format Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PictureFormat +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011d0100
              + LEAF + Picture Format Set + Picture Format Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010101.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.04010101.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.03020106.04010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ParametricSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011e0000
              + NODE + DMS-1 Parametric Sets + DMS-1 Parametric Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DeviceParameters +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011e0100
              + LEAF + Device Parameters Set + Device Parameters Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01012008.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012001.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0101200c.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010102.01012005.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012003.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012004.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03030310.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f03
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1NameValueSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011f0000
              + NODE + DMS-1 Name-Value Sets + DMS-1 Name-Value Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NameValue +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011f0100
              + LEAF + Name-Value Set + Name-Value Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.0301020a.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0301020a.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01020201.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ProjectSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200000
              + NODE + DMS-1 Project Sets + DMS-1 Project Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Processing +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200100
              + LEAF + Processing Set + Processing Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.05010103.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.03020302.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.05010104.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.05010107.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05010301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.05010302.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.05010303.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Project +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200200
              + LEAF + Project Set + Project Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01030106.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01030108.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1AbstractSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0000
              + NODE + DMS-1 Abstract Sets + DMS-1 Abstract Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100
              + LEAF + DMS-1 Framework + DMS-1 Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.03010102.02130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020102.15010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01050f01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03110000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.060c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401600
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ProductionClipFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200
              + LEAF + Production/Clip Framework + Production/Clip Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02401d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Object +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000
              + LEAF + DMS-1 Set + DMS-1 Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextLanguage +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100
              + LEAF + TextLanguage + TextLanguage + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Thesaurus +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200
              + LEAF + Thesaurus + Thesaurus + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.02010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Contact +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00
              + LEAF + Contact + Contact + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01011540.01020000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f02
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401700
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMSCryptoDescriptiveSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02000000
              + NODE + DMS-Crypto Descriptive Sets + DMS-Crypto Descriptive Sets + DMS-Crypto + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CryptographicFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02010000
              + LEAF + Cryptographic Framework + Cryptographic Framework + DMS-Crypto + SMPTE 429-6M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.06010104.020d0000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CryptographicContext +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02020000
              + LEAF + Cryptographic Context + Cryptographic Context + DMS-Crypto + SMPTE 429-6M + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.01011511.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010102.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090302.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.027f0101.0d010401.03000000
              + NODE + DMS AS-03 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS_AS_03_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.03010000
              + LEAF + DMS AS-03 Framework + AS_03 Descriptive Metadata + AMWA Application Specification AS-03 MXF Program Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010500
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010900
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedDescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04000000
              + NODE + Text-based Descriptive Metadata Scheme + Text-based Descriptive Metadata Scheme + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedFrameworks +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04010000
              + NODE + Text-based Frameworks + Text-based Frameworks + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04010100
              + LEAF + Text-based Framework + Text-based Framework + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020000
              + NODE + Text-based Descriptive Metadata Sets + Text-based Descriptive Metadata Sets + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericStreamTextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020100
              + LEAF + Generic Stream Text-based Set + Generic Stream Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.01030408.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + UTF8TextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020200
              + LEAF + UTF-8 Text-based Set + UTF-8 Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.03010220.03010000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + UTF16TextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020300
              + LEAF + UTF-16 Text-based Set + UTF-16 Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.03010220.03020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedObjects +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04030000
              + NODE + Text-based Objects + Text-based Objects + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedObject +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04030100
              + LEAF + Text-based Object + Text-based Object + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.04060806.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.04090202.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02140000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020106.03020000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EIDRDescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.05000000
              + NODE + EIDR Descriptive Metadata Scheme + EIDR Descriptive Metadata Scheme + DMS-EIDR + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EIDRFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.05010000
              + LEAF + EIDR Framework + EIDR Descriptive Metadata Framework + DMS-EIDR + SMPTE RP 2089 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01011514.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.027f0101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + ApplicationSpecificationsCommon +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01000000
              + NODE + Application Specifications Common + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + Segmentation +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01010000
              + NODE + Segmentation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + DM_Segmentation_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01010100
              + LEAF + DM_Segmentation_Framework + Segmentation metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a010000
              + NODE + DMS AS-10 Core + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + DMS_AS_10_Core_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a010100
              + LEAF + DMS AS-10 Core Framework + AS-10 Metadata Framework set + AMWA Application Specification AS-10 MXF for Production + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010102
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010103
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010104
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010105
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010106
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010107
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010108
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010109
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010a
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010b
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Core_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b010100
              + LEAF + DM_AS_11_Core_Framework + AS-11 core metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010102
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010103
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010104
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b01010a
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010105
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010106
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010107
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010108
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010109
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b020000
              + NODE + AS-11 Segmentation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Segmentation_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b020100
              + LEAF + DM_AS_11_Segmentation_Framework + AS-11 segmentation metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010701.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020102
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + DMS_AS_12_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010100
              + LEAF + DMS_AS_12_Framework + AS_12 content provider independent metadata framework + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010102
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + AS_12_DescriptiveObject +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200
              + LEAF + AS_12_DescriptiveObject + AS_12 Commercial Distribution Slate Metadata + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.027f0101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Groups + http://www.ebu.ch/metadata/smpte/class13/group + EBU_UER +
                urn:smpte:ul:060e2b34.027f0101.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCore +
                urn:smpte:ul:060e2b34.027f0101.0d020100.00000000
              + NODE + ebucore + EBUCore DM_Framework + EBU Tech 3293 + false +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCoreMainFramework +
                urn:smpte:ul:060e2b34.027f0101.0d020101.00000000
              + LEAF + EBU Core Main Framework + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020101.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coreMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d020102.00000000
              + LEAF + Core Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.17000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + metadataSchemaInformation +
                urn:smpte:ul:060e2b34.027f0101.0d020103.00000000
              + LEAF + Metadata Schema Information + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020103.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + identifier +
                urn:smpte:ul:060e2b34.027f0101.0d020104.00000000
              + LEAF + Identifier + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020104.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + title +
                urn:smpte:ul:060e2b34.027f0101.0d020105.00000000
              + LEAF + Title + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020105.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + alternativeTitle +
                urn:smpte:ul:060e2b34.027f0101.0d020106.00000000
              + LEAF + Alternative Title + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020106.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + subject +
                urn:smpte:ul:060e2b34.027f0101.0d020108.00000000
              + LEAF + Subject + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020108.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + description +
                urn:smpte:ul:060e2b34.027f0101.0d020109.00000000
              + LEAF + Description + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020109.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + date +
                urn:smpte:ul:060e2b34.027f0101.0d02010c.00000000
              + LEAF + Date + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0f000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dateType +
                urn:smpte:ul:060e2b34.027f0101.0d02010d.00000000
              + LEAF + Date Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + type +
                urn:smpte:ul:060e2b34.027f0101.0d02010e.00000000
              + LEAF + Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + objectType +
                urn:smpte:ul:060e2b34.027f0101.0d02010f.00000000
              + LEAF + Object Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010f.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + genre +
                urn:smpte:ul:060e2b34.027f0101.0d020110.00000000
              + LEAF + Genre + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020110.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020110.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + targetAudience +
                urn:smpte:ul:060e2b34.027f0101.0d020111.00000000
              + LEAF + Target Audience + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020111.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + language +
                urn:smpte:ul:060e2b34.027f0101.0d020112.00000000
              + LEAF + Language + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020112.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coverage +
                urn:smpte:ul:060e2b34.027f0101.0d020113.00000000
              + LEAF + Coverage + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020113.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + spatial +
                urn:smpte:ul:060e2b34.027f0101.0d020114.00000000
              + LEAF + Spatial + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020114.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + location +
                urn:smpte:ul:060e2b34.027f0101.0d020115.00000000
              + LEAF + Location + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020115.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coordinates +
                urn:smpte:ul:060e2b34.027f0101.0d020116.00000000
              + LEAF + Coordinates + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020116.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020116.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020116.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + temporal +
                urn:smpte:ul:060e2b34.027f0101.0d020117.00000000
              + LEAF + Temporal + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020117.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020117.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020117.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + periodOfTime +
                urn:smpte:ul:060e2b34.027f0101.0d020118.00000000
              + LEAF + Period Of Time + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020118.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rights +
                urn:smpte:ul:060e2b34.027f0101.0d020119.00000000
              + LEAF + Rights + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020119.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.10000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + version +
                urn:smpte:ul:060e2b34.027f0101.0d02011a.00000000
              + LEAF + Version + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011a.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rating +
                urn:smpte:ul:060e2b34.027f0101.0d02011b.00000000
              + LEAF + Rating + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.10000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationEvent +
                urn:smpte:ul:060e2b34.027f0101.0d02011c.00000000
              + LEAF + Publication Event + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.11000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationHistory +
                urn:smpte:ul:060e2b34.027f0101.0d02011d.00000000
              + LEAF + Publication History + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011d.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationChannel +
                urn:smpte:ul:060e2b34.027f0101.0d02011e.00000000
              + LEAF + Publication Channel + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationMedium +
                urn:smpte:ul:060e2b34.027f0101.0d02011f.00000000
              + LEAF + Publication Medium + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationService +
                urn:smpte:ul:060e2b34.027f0101.0d020120.00000000
              + LEAF + Publication Service + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020120.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + entity +
                urn:smpte:ul:060e2b34.027f0101.0d020121.00000000
              + LEAF + Entity + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020121.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + contact +
                urn:smpte:ul:060e2b34.027f0101.0d020122.00000000
              + LEAF + Contact + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020122.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.19000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + organization +
                urn:smpte:ul:060e2b34.027f0101.0d020123.00000000
              + LEAF + Organization + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020123.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0c000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + department +
                urn:smpte:ul:060e2b34.027f0101.0d020124.00000000
              + LEAF + Department + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020124.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020124.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + details +
                urn:smpte:ul:060e2b34.027f0101.0d020125.00000000
              + LEAF + Details + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020125.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + address +
                urn:smpte:ul:060e2b34.027f0101.0d020126.00000000
              + LEAF + Address + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020126.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + region +
                urn:smpte:ul:060e2b34.027f0101.0d020127.00000000
              + LEAF + Region + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020127.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020127.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + compoundName +
                urn:smpte:ul:060e2b34.027f0101.0d020128.00000000
              + LEAF + Compound Name + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020128.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020128.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020128.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + role +
                urn:smpte:ul:060e2b34.027f0101.0d020129.00000000
              + LEAF + Role + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020129.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020129.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + countryType +
                urn:smpte:ul:060e2b34.027f0101.0d02012a.00000000
              + LEAF + Country Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012a.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + customRelation +
                urn:smpte:ul:060e2b34.027f0101.0d02012b.01000000
              + LEAF + Custom Relation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + basicRelation +
                urn:smpte:ul:060e2b34.027f0101.0d02012b.02000000
              + LEAF + basicRelation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02080000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02090000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020a0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020b0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020e0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020f0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02100000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02110000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02140000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02150000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02160000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02170000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02180000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + planning +
                urn:smpte:ul:060e2b34.027f0101.0d02012c.00000000
              + LEAF + Planning + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012c.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + typeGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.01000000
              + LEAF + Type Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + formatGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.02000000
              + LEAF + Format Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + statusGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.03000000
              + LEAF + Status Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + textualAnnotation +
                urn:smpte:ul:060e2b34.027f0101.0d02012e.00000000
              + LEAF + Textual Annotation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012e.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + basicLink +
                urn:smpte:ul:060e2b34.027f0101.0d02012f.00000000
              + LEAF + Basic Link + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012f.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + format +
                urn:smpte:ul:060e2b34.027f0101.0d020130.00000000
              + LEAF + Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020130.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.22000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.23000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.24000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.25000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.26000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.27000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + videoFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020131.00000000
              + LEAF + Video Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020131.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.22000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.23000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.24000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.25000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.26000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.27000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.28000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + imageFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020132.00000000
              + LEAF + Image Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020132.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1d000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020133.00000000
              + LEAF + Audio Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020133.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.22000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + track +
                urn:smpte:ul:060e2b34.027f0101.0d020134.00000000
              + LEAF + Track + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020134.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dataFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020135.00000000
              + LEAF + Data Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020135.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1c000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + captioning +
                urn:smpte:ul:060e2b34.027f0101.0d020136.00000000
              + LEAF + Captioning + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020136.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + subtitling +
                urn:smpte:ul:060e2b34.027f0101.0d020137.00000000
              + LEAF + Subtitling + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020137.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + ancillaryData +
                urn:smpte:ul:060e2b34.027f0101.0d020138.00000000
              + LEAF + Ancillary Data + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020138.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + signingFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020139.00000000
              + LEAF + Signing Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020139.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.0a000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeString +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.01000000
              + LEAF + Technical Attribute String + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt8 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.02000000
              + LEAF + Technical Attribute Int8 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt16 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.03000000
              + LEAF + Technical Attribute Int16 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt32 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.04000000
              + LEAF + Technical Attribute Int32 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt64 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.05000000
              + LEAF + Technical Attribute Int64 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt8 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.06000000
              + LEAF + Technical Attribute UInt8 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt16 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.07000000
              + LEAF + Technical Attribute UInt16 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt32 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.08000000
              + LEAF + Technical Attribute UInt32 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt64 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.09000000
              + LEAF + Technical Attribute UInt64 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeFloat +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0a000000
              + LEAF + Technical Attribute Float + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeRational +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0b000000
              + LEAF + Technical Attribute Rational + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeAnyURI +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0c000000
              + LEAF + Technical Attribute AnyURI + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeBoolean +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0d000000
              + LEAF + Technical Attribute Boolean + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dimension +
                urn:smpte:ul:060e2b34.027f0101.0d02013b.00000000
              + LEAF + Dimension + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + packageInfo +
                urn:smpte:ul:060e2b34.027f0101.0d02013c.00000000
              + LEAF + Package Info + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + medium +
                urn:smpte:ul:060e2b34.027f0101.0d02013d.00000000
              + LEAF + Medium + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013d.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + codec +
                urn:smpte:ul:060e2b34.027f0101.0d02013e.00000000
              + LEAF + Codec + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rational +
                urn:smpte:ul:060e2b34.027f0101.0d02013f.00000000
              + LEAF + Rational + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + aspectRatio +
                urn:smpte:ul:060e2b34.027f0101.0d020140.00000000
              + LEAF + Aspect Ratio + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020140.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020140.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020140.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + height +
                urn:smpte:ul:060e2b34.027f0101.0d020141.00000000
              + LEAF + Height + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020141.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020141.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + width +
                urn:smpte:ul:060e2b34.027f0101.0d020142.00000000
              + LEAF + Width + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020142.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020142.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + part +
                urn:smpte:ul:060e2b34.027f0101.0d020143.00000000
              + LEAF + Part + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020143.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + partMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d020144.00000000
              + LEAF + Part Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020144.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + hash +
                urn:smpte:ul:060e2b34.027f0101.0d020146.00000000
              + LEAF + Hash + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020146.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020146.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + locator +
                urn:smpte:ul:060e2b34.027f0101.0d020147.00000000
              + LEAF + Locator + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020147.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020147.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + containerFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020148.00000000
              + LEAF + Container Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020148.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.15000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioFormatExtended +
                urn:smpte:ul:060e2b34.027f0101.0d020149.00000000
              + LEAF + Audio Format Extended + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020149.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0e000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioProgramme +
                urn:smpte:ul:060e2b34.027f0101.0d02014a.00000000
              + LEAF + Audio Programme + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + IDRef +
                urn:smpte:ul:060e2b34.027f0101.0d02014b.00000000
              + LEAF + IDRef + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014b.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + loudnessMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d02014c.00000000
              + LEAF + Loudness Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioContent +
                urn:smpte:ul:060e2b34.027f0101.0d02014d.00000000
              + LEAF + Audio Content + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioObject +
                urn:smpte:ul:060e2b34.027f0101.0d02014e.00000000
              + LEAF + Audio Object + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0d000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioPackFormat +
                urn:smpte:ul:060e2b34.027f0101.0d02014f.00000000
              + LEAF + Audio Pack Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioChannelFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020150.00000000
              + LEAF + Audio Channel Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020150.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020151.00000000
              + LEAF + Audio Block Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020151.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.17000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockMatrixCoefficient +
                urn:smpte:ul:060e2b34.027f0101.0d020152.00000000
              + LEAF + Audio Block Matrix Coefficient + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020152.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioStreamFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020153.00000000
              + LEAF + Audio Stream Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020153.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioTrackFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020154.00000000
              + LEAF + Audio Track Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020154.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioTrackUID +
                urn:smpte:ul:060e2b34.027f0101.0d020155.00000000
              + LEAF + Audio Track UID + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020155.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioMXFLookup +
                urn:smpte:ul:060e2b34.027f0101.0d020156.00000000
              + LEAF + Audio MXF Lookup + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020156.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020156.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020156.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockMatrix +
                urn:smpte:ul:060e2b34.027f0101.0d020157.00000000
              + LEAF + Audio Block Matrix + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020157.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + time +
                urn:smpte:ul:060e2b34.027f0101.0d020158.00000000
              + LEAF + Time + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020158.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + metadataFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020159.00000000
              + LEAF + Metadata Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020159.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.12000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + timecodeFormat +
                urn:smpte:ul:060e2b34.027f0101.0d02015a.00000000
              + LEAF + Timecode Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.13000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + videoNoiseFilter +
                urn:smpte:ul:060e2b34.027f0101.0d02015b.00000000
              + LEAF + Video Noise Filter + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCoreObject +
                urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000
              + LEAF + EBU Core Object + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audience +
                urn:smpte:ul:060e2b34.027f0101.0d02015d.00000000
              + LEAF + Audience + To describe an audience. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + filter +
                urn:smpte:ul:060e2b34.027f0101.0d02015e.00000000
              + LEAF + Filter + To define the characteristics of a filter. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + filterSetting +
                urn:smpte:ul:060e2b34.027f0101.0d02015f.00000000
              + LEAF + Filter Setting + To describe the settings of a filter. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0f000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreen +
                urn:smpte:ul:060e2b34.027f0101.0d020160.00000000
              + LEAF + Reference screen + To define a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020160.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020160.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020160.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreenCentrePosition +
                urn:smpte:ul:060e2b34.027f0101.0d020161.00000000
              + LEAF + Reference Screen Centre Position + To define the centre position of a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020161.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreenWidth +
                urn:smpte:ul:060e2b34.027f0101.0d020162.00000000
              + LEAF + Reference Screen Width + To define the width of a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020162.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020162.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020162.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioContentDialogue +
                urn:smpte:ul:060e2b34.027f0101.0d020163.00000000
              + LEAF + Audio Content Dialogue + To define an audio content dialogue. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020163.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioObjectInteraction +
                urn:smpte:ul:060e2b34.027f0101.0d020164.00000000
              + LEAF + Audio Content Interaction + To define the interaction parameters of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020164.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + gainInteractionRange +
                urn:smpte:ul:060e2b34.027f0101.0d020165.00000000
              + LEAF + Gain Interaction Range + To define a gain interaction range. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020165.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020165.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + positionInteractionRange +
                urn:smpte:ul:060e2b34.027f0101.0d020166.00000000
              + LEAF + Position Interaction Range + To define a position interaction range. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020166.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020166.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020166.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockPosition +
                urn:smpte:ul:060e2b34.027f0101.0d020167.00000000
              + LEAF + Audio Block Position + To define the position of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020167.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockDivergence +
                urn:smpte:ul:060e2b34.027f0101.0d020168.00000000
              + LEAF + Audio Block Divergence + To define the divergence of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020168.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020168.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockZoneExclusion +
                urn:smpte:ul:060e2b34.027f0101.0d020169.00000000
              + LEAF + Audio Block Zone Exclusion + To define the exclusion zone of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020169.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockZone +
                urn:smpte:ul:060e2b34.027f0101.0d02016a.00000000
              + LEAF + Audio Block Zone + To define a zone of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockJumpPosition +
                urn:smpte:ul:060e2b34.027f0101.0d02016b.00000000
              + LEAF + Audio Block Jump Position + To define a jump position of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + event +
                urn:smpte:ul:060e2b34.027f0101.0d02016c.00000000
              + LEAF + Event + To define an event. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + award +
                urn:smpte:ul:060e2b34.027f0101.0d02016d.00000000
              + LEAF + Award + To define an award. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + affiliation +
                urn:smpte:ul:060e2b34.027f0101.0d02016e.00000000
              + LEAF + Affiliation + To define an affiliation. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016e.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.027f0101.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4 + BBC +
                urn:smpte:ul:060e2b34.027f0101.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.027f0101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_DescriptiveFrameworks +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01000000
              + NODE + APP Descriptive Frameworks + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_InfaxFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01010000
              + LEAF + APP Infax Framework + APP Infax Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01011000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_PSEAnalysisFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01020000
              + LEAF + APP PSE Analysis Framework + APP PSE Analysis Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020400
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_VTRReplayErrorFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01030000
              + LEAF + APP VTR Replay Error Framework + APP VTR Replay Error Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_DigiBetaDropoutFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01040000
              + LEAF + APP DigiBeta Dropout Framework + APP DigiBeta Dropout Framework + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_TimecodeBreakFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01050000
              + LEAF + APP Timecode Break Framework + APP Timecode Break Framework + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/5 + IRT +
                urn:smpte:ul:060e2b34.027f0101.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/6 + ARIB +
                urn:smpte:ul:060e2b34.027f0101.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/7 + AMIA +
                urn:smpte:ul:060e2b34.027f0101.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/8 + PBS +
                urn:smpte:ul:060e2b34.027f0101.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/9 + ASC +
                urn:smpte:ul:060e2b34.027f0101.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/10 + AES +
                urn:smpte:ul:060e2b34.027f0101.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.027f0101.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12 + DPP +
                urn:smpte:ul:060e2b34.027f0101.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.027f0101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DPP_Groups +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.01000000
              + NODE + DPP Groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DM_AS_11_UKDPP_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.01010000
              + LEAF + DM_AS_11_UKDPP_Framework + AS-11 UK DPP metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010a00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010d00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011500
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011600
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011700
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011800
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011900
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011b00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011e00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012500
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.027f0101.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/13 + DMS_AS_12_AdID_Slate +
                urn:smpte:ul:060e2b34.027f010d.0d0d0100.00000000
              + LEAF + DMS_AS_12_AdID_Slate + AS_12 Ad-ID advertisement identification metadata framework + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0101.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0102.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0103.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0104.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0105.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0106.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0107.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0108.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0109.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d010a.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d010b.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.027f0101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.027f0101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/2 + ASPA +
                urn:smpte:ul:060e2b34.027f0101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.027f0101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.027f0101.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/5 + CNN +
                urn:smpte:ul:060e2b34.027f0101.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.027f0101.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.027f0101.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.027f0101.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.027f0101.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.027f0101.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.027f0101.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.027f0101.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.027f0101.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.027f0101.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.027f0101.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.027f0101.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.027f0101.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.027f0101.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.027f0101.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.027f0101.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.027f0101.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.027f0101.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/23 + ARRI +
                urn:smpte:ul:060e2b34.027f0101.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/24 + JVC +
                urn:smpte:ul:060e2b34.027f0101.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.027f0101.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/26 + NHK +
                urn:smpte:ul:060e2b34.027f0101.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/27 + HBO +
                urn:smpte:ul:060e2b34.027f0101.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/29 + DTS +
                urn:smpte:ul:060e2b34.027f0101.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/30 + FLIR +
                urn:smpte:ul:060e2b34.027f0101.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/31 + Barco +
                urn:smpte:ul:060e2b34.027f0101.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.027f0101.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/15 + Experimental +
                urn:smpte:ul:060e2b34.027f0101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/src/test/resources/registers/ponzu/Labels.xml b/src/test/resources/registers/ponzu/Labels.xml new file mode 100644 index 0000000..9dc7a1d --- /dev/null +++ b/src/test/resources/registers/ponzu/Labels.xml @@ -0,0 +1,36643 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTELABELS +
                urn:smpte:ul:060e2b34.04010101.00000000.00000000
              + NODE + SMPTE LABELS + Register of SMPTE Labels + SMPTE ST 400 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IDENTIFICATIONANDLOCATION +
                urn:smpte:ul:060e2b34.04010101.01000000.00000000
              + NODE + IDENTIFICATION AND LOCATION + SMPTE Label Identifiers for Identification and Location data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GloballyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010000.00000000
              + NODE + Globally Unique Identifiers + Identifies Globally Unique Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTIPayloadIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010100.00000000
              + NODE + SDTI Payload Identifiers + Legacy label used by SDTI systems + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010101.00000000
              + NODE + SDTI-CP Identifiers + Legacy label used by SDTI-CP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEGPayloads +
                urn:smpte:ul:060e2b34.04010101.01010101.01000000
              + NODE + SDTI-CP MPEG Payloads + Legacy label used by SDTI-CP MPEG Payloads + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEG2BaselineTemplate +
                urn:smpte:ul:060e2b34.04010101.01010101.01010000
              + LEAF + SDTI-CP MPEG-2 Baseline Template + Legacy label used by SDTI-CP for MPEG-2 payloads + SMPTE RP 204 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEG2ExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.01010101.01010100
              + LEAF + SDTI-CP MPEG-2 Extended Template + Legacy label used by SDTI-CP for MPEG-2 payloads with extensions to the baseline specification + SMPTE RP 204 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FileFormatIdentifiers +
                urn:smpte:ul:060e2b34.0401010a.01010200.00000000
              + NODE + File Format Identifiers + Labels for File Format Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FileFormatIdentifiersUnstructuredNode +
                urn:smpte:ul:060e2b34.0401010a.01010201.00000000
              + NODE + File Format Identifiers Unstructured Node + Labels for File Format Identifiers Unstructured Node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UnknownFileFormat +
                urn:smpte:ul:060e2b34.0401010a.01010201.01000000
              + LEAF + Unknown File Format + Identifies Unknown File Format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DefinitionIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010300.00000000
              + NODE + Definition Identifiers + Identifies Definition Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLDefinitionIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.00000000
              + NODE + Reg-XML Definition Identifiers + Identifies Reg-XML Definition Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLMetaDictionaryIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.01000000
              + NODE + Reg-XML Meta-Dictionary Identifiers + Identifies Reg-XML Meta-Dictionary Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLBaselineMetaDictionaryIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.01010000
              + NODE + Reg-XML Baseline Meta-Dictionary Identifiers + Identifies Reg-XML Baseline Meta-Dictionary Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLSTXxx2MetaDictionaryBaseline +
                urn:smpte:ul:060e2b34.0401010c.01010301.01010100
              + LEAF + Reg-XML ST xxx--2 Meta-Dictionary Baseline + Identifies Reg-XML ST xxx--2 Meta-Dictionary Baseline + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GloballyUniqueLocators +
                urn:smpte:ul:060e2b34.04010101.01020000.00000000
              + NODE + Globally Unique Locators + SMPTE identifiers for Globally Unique Locators + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LocallyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01030000.00000000
              + NODE + Locally Unique Identifiers + SMPTE Label identifiers for Locally Unique Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ForInformationOnlyDoNotUse +
                urn:smpte:ul:060e2b34.04010101.01030100.00000000
              + NODE + For Information Only Do Not Use + SMPTE Label identifiers for For Information Only Do Not Use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TrackIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01030200.00000000
              + NODE + Track Identifiers + SMPTE Label identifiers for Track Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MetadataTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030201.00000000
              + NODE + Metadata Track Kinds + Identifies metadata track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MTimecodeTrackInactiveUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.01000000
              + LEAF + SMPTE-12M Timecode Track Inactive User Bits + Identifies a SMPTE 12M Timecode track with inactive user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MTimecodeTrackActiveUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.02000000
              + LEAF + SMPTE-12M Timecode Track Active User Bits + Identifies a SMPTE 12M Timecode track with active user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE309MTimecodeTrackDatecodeUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.03000000
              + LEAF + SMPTE-309M Timecode Track Datecode User Bits + Identifies a SMPTE 309M Timecode track (user bits define date code) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DescriptiveMetadataTrack +
                urn:smpte:ul:060e2b34.04010101.01030201.10000000
              + LEAF + Descriptive Metadata Track + Identifies a Descriptive Metadata Track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EssenceTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030202.00000000
              + NODE + Essence Track Kinds + Identifies essence track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.01000000
              + LEAF + Picture Essence Track + Identifies a picture essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.02000000
              + LEAF + Sound Essence Track + Identifies a sound essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.03000000
              + LEAF + Data Essence Track + Identifies a data essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + OtherTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030203.00000000
              + NODE + Other Track Kinds + Identifies non-essence and non-metadata track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AuxiliaryDataTrack +
                urn:smpte:ul:060e2b34.04010105.01030203.01000000
              + LEAF + Auxiliary Data Track + Identifies a track containing auxiliary data that is neither essence nor metadata (for example, icon images) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParsedTextTrack +
                urn:smpte:ul:060e2b34.04010107.01030203.02000000
              + LEAF + Parsed Text Track + Identifies a track containing parsed text (for example, XML code) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ADMINISTRATIVE +
                urn:smpte:ul:060e2b34.04010101.02000000.00000000
              + NODE + ADMINISTRATIVE + SMPTE Label identifiers for Administrative data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EncryptionIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090000.00000000
              + NODE + Encryption Identifiers + Identifies encryption parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEncryptionIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090200.00000000
              + NODE + Data Encryption Identifiers + Identifies data encryption parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEncryptionAlgorithmIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090201.00000000
              + NODE + Data Encryption Algorithm Identifiers + Identifies data encryption algorithms + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AES128CBCIdentifier +
                urn:smpte:ul:060e2b34.04010107.02090201.01000000
              + LEAF + AES-128 CBC Identifier + Identifies AES 128-bit encryption in Cypher Block Chaining mode + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataHashingAlgorithms +
                urn:smpte:ul:060e2b34.04010107.02090202.00000000
              + NODE + Data Hashing Algorithms + Identifies data hashing algorithms + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HMACSHA1128BitIdentifier +
                urn:smpte:ul:060e2b34.04010107.02090202.01000000
              + LEAF + HMAC-SHA1 128-bit Identifier + Identifies the HMAC-SHA1 128-bit data integrity check value + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HMACSHA1128 +
                urn:smpte:ul:060e2b34.04010108.02090202.02000000
              + LEAF + HMAC-SHA1 128 + Identifies the HMAC-SHA1 128 bit data integrity check value + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + INTERPRETIVE +
                urn:smpte:ul:060e2b34.04010101.03000000.00000000
              + NODE + INTERPRETIVE + SMPTE Label identifiers for Interpretive Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + InterpretivePictureEssence +
                urn:smpte:ul:060e2b34.0401010d.03010000.00000000
              + NODE + Picture Essence + SMPTE Label identifiers for Picture Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + InterpretiveSoundEssence +
                urn:smpte:ul:060e2b34.0401010d.03020000.00000000
              + NODE + Sound Essence + SMPTE Label identifiers for Sound Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020100.00000000
              + NODE + Audio Channel + SMPTE Label identifiers for Audio Channel interpretive data + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020101.00000000
              + LEAF + Left Audio Channel + Identifies the Audio Channel intended to drive the Left loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020102.00000000
              + LEAF + Right Audio Channel + Identifies the Audio Channel intended to drive the Right loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020103.00000000
              + LEAF + Center Audio Channel + Identifies the Audio Channel intended to drive the Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LFEAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020104.00000000
              + LEAF + LFE Audio Channel + Identifies the Audio Channel intended to drive the screen Low Frequency Effects loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020105.00000000
              + LEAF + Left Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020106.00000000
              + LEAF + Right Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftSideSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020107.00000000
              + LEAF + Left Side Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Side Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightSideSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020108.00000000
              + LEAF + Right Side Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Side Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftRearSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020109.00000000
              + LEAF + Left Rear Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Rear Surround loudspeaker(s) + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightRearSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010a.00000000
              + LEAF + Right Rear Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Rear Surround loudspeaker(s) + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftCenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010b.00000000
              + LEAF + Left Center Audio Channel + Identifies the Audio Channel intended to drive the Left Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightCenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010c.00000000
              + LEAF + Right Center Audio Channel + Identifies the Audio Channel intended to drive the Right Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010d.00000000
              + LEAF + Center Surround Audio Channel + Identifies the Audio Channel intended to drive the Center Surround loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HearingImpairedAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010e.00000000
              + LEAF + Hearing Impaired Audio Channel + A dedicated audio channel optimizing dialog intelligibility for the hearing impaired. This may carry a special dialog centric mix, i.e. a mix in which the dialog is predominate and dynamic range compression may be employed. + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VisuallyImpairedNarrativeAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010f.00000000
              + LEAF + Visually Impaired Narrative Audio Channel + A dedicated narration channel describing the main picture events for the visually impaired. + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AudioChannelsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020120.00000000
              + NODE + Audio Channels for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Audio Channel interpretive data + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MonoOne +
                urn:smpte:ul:060e2b34.0401010d.03020120.01000000
              + LEAF + SMPTE ST 2067-8 Mono One + A single channel of monaural audio + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MonoTwo +
                urn:smpte:ul:060e2b34.0401010d.03020120.02000000
              + LEAF + SMPTE ST 2067-8 Mono Two + A second single channel of monaural audio + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LeftTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.03000000
              + LEAF + SMPTE ST 2067-8 Left Total + Matrix encoded left channel of an Lt-Rt pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678RightTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.04000000
              + LEAF + SMPTE ST 2067-8 Right Total + Matrix encoded right channel of an Lt-Rt pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LeftSurroundTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.05000000
              + LEAF + SMPTE ST 2067-8 Left Surround Total + Matrix encoded left surround channel of an Lst-Rst pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678RightSurroundTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.06000000
              + LEAF + SMPTE ST 2067-8 Right Surround Total + Matrix encoded right surround channel of an Lst-Rst pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678Surround +
                urn:smpte:ul:060e2b34.0401010d.03020120.07000000
              + LEAF + SMPTE ST 2067-8 Surround + A single channel that Intended to drive one or more surround loudspeakers + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + NumberedSourceChannelForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08000000
              + NODE + Numbered Source Channel for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Audio Channels numbered between 001 and 127 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel001 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08010000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 001 + A single audio channel numbered 001 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel002 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08020000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 002 + A single audio channel numbered 002 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel003 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08030000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 003 + A single audio channel numbered 003 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel004 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08040000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 004 + A single audio channel numbered 004 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel005 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08050000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 005 + A single audio channel numbered 005 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel006 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08060000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 006 + A single audio channel numbered 006 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel007 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08070000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 007 + A single audio channel numbered 007 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel008 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08080000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 008 + A single audio channel numbered 008 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel009 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08090000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 009 + A single audio channel numbered 009 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0A +
                urn:smpte:ul:060e2b34.0401010d.03020120.080a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0A + A single audio channel numbered 0A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0B +
                urn:smpte:ul:060e2b34.0401010d.03020120.080b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0B + A single audio channel numbered 0B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0C +
                urn:smpte:ul:060e2b34.0401010d.03020120.080c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0C + A single audio channel numbered 0C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0D +
                urn:smpte:ul:060e2b34.0401010d.03020120.080d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0D + A single audio channel numbered 0D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0E +
                urn:smpte:ul:060e2b34.0401010d.03020120.080e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0E + A single audio channel numbered 0E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0F +
                urn:smpte:ul:060e2b34.0401010d.03020120.080f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0F + A single audio channel numbered 0F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel010 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08100000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 010 + A single audio channel numbered 010 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel011 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08110000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 011 + A single audio channel numbered 011 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel012 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08120000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 012 + A single audio channel numbered 012 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel013 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08130000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 013 + A single audio channel numbered 013 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel014 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08140000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 014 + A single audio channel numbered 014 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel015 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08150000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 015 + A single audio channel numbered 015 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel016 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08160000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 016 + A single audio channel numbered 016 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel017 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08170000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 017 + A single audio channel numbered 017 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel018 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08180000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 018 + A single audio channel numbered 018 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel019 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08190000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 019 + A single audio channel numbered 019 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1A +
                urn:smpte:ul:060e2b34.0401010d.03020120.081a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1A + A single audio channel numbered 1A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1B +
                urn:smpte:ul:060e2b34.0401010d.03020120.081b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1B + A single audio channel numbered 1B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1C +
                urn:smpte:ul:060e2b34.0401010d.03020120.081c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1C + A single audio channel numbered 1C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1D +
                urn:smpte:ul:060e2b34.0401010d.03020120.081d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1D + A single audio channel numbered 1D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1E +
                urn:smpte:ul:060e2b34.0401010d.03020120.081e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1E + A single audio channel numbered 1E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1F +
                urn:smpte:ul:060e2b34.0401010d.03020120.081f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1F + A single audio channel numbered 1F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel020 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08200000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 020 + A single audio channel numbered 020 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel021 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08210000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 021 + A single audio channel numbered 021 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel022 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08220000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 022 + A single audio channel numbered 022 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel023 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08230000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 023 + A single audio channel numbered 023 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel024 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08240000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 024 + A single audio channel numbered 024 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel025 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08250000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 025 + A single audio channel numbered 025 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel026 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08260000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 026 + A single audio channel numbered 026 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel027 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08270000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 027 + A single audio channel numbered 027 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel028 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08280000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 028 + A single audio channel numbered 028 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel029 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08290000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 029 + A single audio channel numbered 029 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2A +
                urn:smpte:ul:060e2b34.0401010d.03020120.082a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2A + A single audio channel numbered 2A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2B +
                urn:smpte:ul:060e2b34.0401010d.03020120.082b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2B + A single audio channel numbered 2B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2C +
                urn:smpte:ul:060e2b34.0401010d.03020120.082c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2C + A single audio channel numbered 2C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2D +
                urn:smpte:ul:060e2b34.0401010d.03020120.082d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2D + A single audio channel numbered 2D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2E +
                urn:smpte:ul:060e2b34.0401010d.03020120.082e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2E + A single audio channel numbered 2E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2F +
                urn:smpte:ul:060e2b34.0401010d.03020120.082f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2F + A single audio channel numbered 2F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel030 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08300000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 030 + A single audio channel numbered 030 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel031 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08310000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 031 + A single audio channel numbered 031 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel032 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08320000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 032 + A single audio channel numbered 032 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel033 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08330000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 033 + A single audio channel numbered 033 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel034 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08340000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 034 + A single audio channel numbered 034 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel035 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08350000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 035 + A single audio channel numbered 035 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel036 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08360000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 036 + A single audio channel numbered 036 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel037 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08370000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 037 + A single audio channel numbered 037 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel038 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08380000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 038 + A single audio channel numbered 038 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel039 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08390000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 039 + A single audio channel numbered 039 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3A +
                urn:smpte:ul:060e2b34.0401010d.03020120.083a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3A + A single audio channel numbered 3A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3B +
                urn:smpte:ul:060e2b34.0401010d.03020120.083b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3B + A single audio channel numbered 3B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3C +
                urn:smpte:ul:060e2b34.0401010d.03020120.083c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3C + A single audio channel numbered 3C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3D +
                urn:smpte:ul:060e2b34.0401010d.03020120.083d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3D + A single audio channel numbered 3D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3E +
                urn:smpte:ul:060e2b34.0401010d.03020120.083e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3E + A single audio channel numbered 3E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3F +
                urn:smpte:ul:060e2b34.0401010d.03020120.083f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3F + A single audio channel numbered 3F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel040 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08400000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 040 + A single audio channel numbered 040 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel041 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08410000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 041 + A single audio channel numbered 041 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel042 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08420000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 042 + A single audio channel numbered 042 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel043 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08430000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 043 + A single audio channel numbered 043 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel044 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08440000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 044 + A single audio channel numbered 044 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel045 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08450000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 045 + A single audio channel numbered 045 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel046 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08460000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 046 + A single audio channel numbered 046 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel047 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08470000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 047 + A single audio channel numbered 047 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel048 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08480000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 048 + A single audio channel numbered 048 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel049 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08490000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 049 + A single audio channel numbered 049 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4A +
                urn:smpte:ul:060e2b34.0401010d.03020120.084a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4A + A single audio channel numbered 4A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4B +
                urn:smpte:ul:060e2b34.0401010d.03020120.084b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4B + A single audio channel numbered 4B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4C +
                urn:smpte:ul:060e2b34.0401010d.03020120.084c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4C + A single audio channel numbered 4C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4D +
                urn:smpte:ul:060e2b34.0401010d.03020120.084d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4D + A single audio channel numbered 4D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4E +
                urn:smpte:ul:060e2b34.0401010d.03020120.084e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4E + A single audio channel numbered 4E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4F +
                urn:smpte:ul:060e2b34.0401010d.03020120.084f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4F + A single audio channel numbered 4F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel050 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08500000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 050 + A single audio channel numbered 050 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel051 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08510000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 051 + A single audio channel numbered 051 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel052 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08520000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 052 + A single audio channel numbered 052 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel053 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08530000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 053 + A single audio channel numbered 053 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel054 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08540000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 054 + A single audio channel numbered 054 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel055 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08550000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 055 + A single audio channel numbered 055 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel056 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08560000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 056 + A single audio channel numbered 056 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel057 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08570000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 057 + A single audio channel numbered 057 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel058 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08580000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 058 + A single audio channel numbered 058 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel059 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08590000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 059 + A single audio channel numbered 059 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5A +
                urn:smpte:ul:060e2b34.0401010d.03020120.085a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5A + A single audio channel numbered 5A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5B +
                urn:smpte:ul:060e2b34.0401010d.03020120.085b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5B + A single audio channel numbered 5B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5C +
                urn:smpte:ul:060e2b34.0401010d.03020120.085c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5C + A single audio channel numbered 5C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5D +
                urn:smpte:ul:060e2b34.0401010d.03020120.085d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5D + A single audio channel numbered 5D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5E +
                urn:smpte:ul:060e2b34.0401010d.03020120.085e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5E + A single audio channel numbered 5E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5F +
                urn:smpte:ul:060e2b34.0401010d.03020120.085f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5F + A single audio channel numbered 5F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel060 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08600000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 060 + A single audio channel numbered 060 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel061 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08610000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 061 + A single audio channel numbered 061 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel062 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08620000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 062 + A single audio channel numbered 062 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel063 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08630000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 063 + A single audio channel numbered 063 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel064 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08640000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 064 + A single audio channel numbered 064 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel065 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08650000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 065 + A single audio channel numbered 065 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel066 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08660000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 066 + A single audio channel numbered 066 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel067 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08670000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 067 + A single audio channel numbered 067 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel068 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08680000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 068 + A single audio channel numbered 068 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel069 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08690000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 069 + A single audio channel numbered 069 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6A +
                urn:smpte:ul:060e2b34.0401010d.03020120.086a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6A + A single audio channel numbered 6A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6B +
                urn:smpte:ul:060e2b34.0401010d.03020120.086b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6B + A single audio channel numbered 6B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6C +
                urn:smpte:ul:060e2b34.0401010d.03020120.086c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6C + A single audio channel numbered 6C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6D +
                urn:smpte:ul:060e2b34.0401010d.03020120.086d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6D + A single audio channel numbered 6D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6E +
                urn:smpte:ul:060e2b34.0401010d.03020120.086e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6E + A single audio channel numbered 6E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6F +
                urn:smpte:ul:060e2b34.0401010d.03020120.086f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6F + A single audio channel numbered 6F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel070 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08700000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 070 + A single audio channel numbered 070 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel071 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08710000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 071 + A single audio channel numbered 071 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel072 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08720000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 072 + A single audio channel numbered 072 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel073 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08730000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 073 + A single audio channel numbered 073 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel074 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08740000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 074 + A single audio channel numbered 074 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel075 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08750000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 075 + A single audio channel numbered 075 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel076 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08760000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 076 + A single audio channel numbered 076 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel077 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08770000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 077 + A single audio channel numbered 077 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel078 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08780000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 078 + A single audio channel numbered 078 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel079 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08790000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 079 + A single audio channel numbered 079 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7A +
                urn:smpte:ul:060e2b34.0401010d.03020120.087a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7A + A single audio channel numbered 7A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7B +
                urn:smpte:ul:060e2b34.0401010d.03020120.087b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7B + A single audio channel numbered 7B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7C +
                urn:smpte:ul:060e2b34.0401010d.03020120.087c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7C + A single audio channel numbered 7C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7D +
                urn:smpte:ul:060e2b34.0401010d.03020120.087d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7D + A single audio channel numbered 7D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7E +
                urn:smpte:ul:060e2b34.0401010d.03020120.087e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7E + A single audio channel numbered 7E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7F +
                urn:smpte:ul:060e2b34.0401010d.03020120.087f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7F + A single audio channel numbered 7F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020200.00000000
              + NODE + Soundfield Group + SMPTE Label identifiers for Soundfield Groups interpretive data + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _51SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020201.00000000
              + LEAF + 5.1 Soundfield Group + Identifies the 5.1 Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _71DSSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020202.00000000
              + LEAF + 7.1DS Soundfield Group + Identifies the 7.1DS Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _71SDSSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020203.00000000
              + LEAF + 7.1SDS Soundfield Group + Identifies the 7.1SDS Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _61SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020204.00000000
              + LEAF + 6.1 Soundfield Group + Identifies the 6.1 Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _10MonauralSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020205.00000000
              + LEAF + 1.0 Monaural Soundfield Group + Single channel mono designed to be played from Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundfieldGroupsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020220.00000000
              + NODE + Soundfield Groups for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Soundfield Groups + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678StandardStereo +
                urn:smpte:ul:060e2b34.0401010d.03020220.01000000
              + LEAF + SMPTE ST 2067-8 Standard Stereo + Consists of Audio Channels L, R + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DualMono +
                urn:smpte:ul:060e2b34.0401010d.03020220.02000000
              + LEAF + SMPTE ST 2067-8 Dual Mono + Consists of Audio Channels M1, M2 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DiscreteNumberedSources +
                urn:smpte:ul:060e2b34.0401010d.03020220.03000000
              + LEAF + SMPTE ST 2067-8 Discrete Numbered Sources + Collection of Audio Channels NSCxxx + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067830 +
                urn:smpte:ul:060e2b34.0401010d.03020220.04000000
              + LEAF + SMPTE ST 2067-8 3.0 + Consists of Audio Channels L, C, R + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067840 +
                urn:smpte:ul:060e2b34.0401010d.03020220.05000000
              + LEAF + SMPTE ST 2067-8 4.0 + Consists of Audio Channels L, C, R, S + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067850 +
                urn:smpte:ul:060e2b34.0401010d.03020220.06000000
              + LEAF + SMPTE ST 2067-8 5.0 + Consists of Audio Channels L, C, R, Ls, Rs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067860 +
                urn:smpte:ul:060e2b34.0401010d.03020220.07000000
              + LEAF + SMPTE ST 2067-8 6.0 + Consists of Audio Channels L, C, R, Ls, Rs, Cs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067870DS +
                urn:smpte:ul:060e2b34.0401010d.03020220.08000000
              + LEAF + SMPTE ST 2067-8 7.0DS + Consists of Audio Channels L, C, R, Lss, Rss, Rls, Rrs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LtRt +
                urn:smpte:ul:060e2b34.0401010d.03020220.09000000
              + LEAF + SMPTE ST 2067-8 Lt-Rt + Consists of Audio Channels Lt, Rt + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067851EX +
                urn:smpte:ul:060e2b34.0401010d.03020220.0a000000
              + LEAF + SMPTE ST 2067-8 5.1EX + Consists of Audio Channels L, C, R, Lst, Rst, LFE + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678HearingAccessibility +
                urn:smpte:ul:060e2b34.0401010d.03020220.0b000000
              + LEAF + SMPTE ST 2067-8 Hearing Accessibility + Consists of Audio Channel HI + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678VisualAccessibility +
                urn:smpte:ul:060e2b34.0401010d.03020220.0c000000
              + LEAF + SMPTE ST 2067-8 Visual Accessibility + Consists of Audio Channel VIN + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GroupOfSoundfieldGroups +
                urn:smpte:ul:060e2b34.0401010d.03020300.00000000
              + NODE + Group of Soundfield Groups + SMPTE Label identifiers for Groups of Soundfield Groups interpretive data + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GroupOfSoundfieldGroupsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020320.00000000
              + NODE + Group of Soundfield Groups for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Groups of Soundfield Groups + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MainProgram +
                urn:smpte:ul:060e2b34.0401010d.03020320.01000000
              + LEAF + SMPTE ST 2067-8 Main Program + Identifies SMPTE ST 2067-8 2067-8 Main Program + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DescriptiveVideoService +
                urn:smpte:ul:060e2b34.0401010d.03020320.02000000
              + LEAF + SMPTE ST 2067-8 Descriptive Video Service + Identifies SMPTE ST 2067-8 2067-8 Descriptive Video Service + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DialogCentricMix +
                urn:smpte:ul:060e2b34.0401010d.03020320.03000000
              + LEAF + SMPTE ST 2067-8 Dialog Centric Mix + Identifies SMPTE ST 2067-8 2067-8 Dialog Centric Mix + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PARAMETRIC +
                urn:smpte:ul:060e2b34.04010101.04000000.00000000
              + NODE + PARAMETRIC + SMPTE Label identifiers for Parametric Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParametricPictureEssence +
                urn:smpte:ul:060e2b34.04010101.04010000.00000000
              + NODE + Picture Essence + SMPTE Label identifiers for picture essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FundamentalPictureCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010100.00000000
              + NODE + Fundamental Picture Characteristics + Identifies fundamental picture essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureSourceCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010101.00000000
              + NODE + Picture Source Characteristics + Identifies picture source parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic +
                urn:smpte:ul:060e2b34.04010101.04010101.01000000
              + NODE + Transfer Characteristic + Identifies transfer characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU470_PAL +
                urn:smpte:ul:060e2b34.04010101.04010101.01010000
              + LEAF + ITU-R BT.470 Transfer Characteristic + Identifies ITU-R BT.470 PAL transfer characteristic (note: used in B, D, G, H, I, M, N/PAL and B, D, G, H, K, K1, L/SECAM systems) + ITU-R BT.470 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU709 +
                urn:smpte:ul:060e2b34.04010101.04010101.01020000
              + LEAF + ITU-R BT.709 Transfer Characteristic + Identifies ITU-R BT.709 transfer characteristic (also used in SMPTE 170M, 274M and 296M) + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTE240M +
                urn:smpte:ul:060e2b34.04010101.04010101.01030000
              + LEAF + SMPTE 240M Transfer Characteristic + Identifies SMPTE 240M transfer characteristic (note: legacy use only) + SMPTE ST 240 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_274M_296M +
                urn:smpte:ul:060e2b34.04010101.04010101.01040000
              + LEAF + SMPTE 274/296M Gamma + Identifies gamma according to SMPTE 274M and 296M (deprecated) + SMPTE 274M & 296M + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU1361 +
                urn:smpte:ul:060e2b34.04010106.04010101.01050000
              + LEAF + ITU-R BT.1361 Transfer Characteristic + Identifies ITU-R BT.1361 transfer characterisitic + ITU-R BT.1361 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_linear +
                urn:smpte:ul:060e2b34.04010106.04010101.01060000
              + LEAF + Linear Transfer Characteristic + Identifies a linear transfer characteristic + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTE_DCDM +
                urn:smpte:ul:060e2b34.04010108.04010101.01070000
              + LEAF + SMPTE-DC28 DCDM Transfer Characteristic + Identifies the SMPTE DC28 DCDM transfer characteristic + SMPTE ST 428-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_IEC6196624_xvYCC +
                urn:smpte:ul:060e2b34.0401010d.04010101.01080000
              + LEAF + IEC 61966-2-4 xvYCC Transfer Characteristic + Identifies IEC 61966-2-4 xvYCC transfer characteristic + IEC 61966-2-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU2020 +
                urn:smpte:ul:060e2b34.0401010e.04010101.01090000
              + LEAF + ITU-R BT.2020 Transfer Characteristic + Identifies ITU-R BT.2020 transfer characteristic + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTEST2084 +
                urn:smpte:ul:060e2b34.0401010d.04010101.010a0000
              + LEAF + SMPTE ST 2084 Transfer Characteristic + Identifies SMPTE ST 2084 transfer characteristic + SMPTE ST 2084 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_HLG_OETF +
                urn:smpte:ul:060e2b34.0401010d.04010101.010b0000
              + LEAF + Hybrid Log-Gamma OETF Transfer Characteristic + Identifies the Hybrid Log-Gamma reference non-linear transfer function (opto-eletronic transfer function, OETF) defined in ITU-R BT.2100 + This is identical to the reference non-linear transfer function (opto-eletronic transfer function, OETF) defined in ARIB STD-B67 + ITU-R BT.2100 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations +
                urn:smpte:ul:060e2b34.04010101.04010101.02000000
              + NODE + Coding Equations + Identifies the coding equation type + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU601 +
                urn:smpte:ul:060e2b34.04010101.04010101.02010000
              + LEAF + ITU-R BT.601 Coding Equations + Identifies ITU-R BT.601 Coding Equations + ITU-R BT.601 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU709 +
                urn:smpte:ul:060e2b34.04010101.04010101.02020000
              + LEAF + ITU-R BT.709 Coding Equations + Identifies ITU-R BT.709 Coding Equations + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_SMPTE240M +
                urn:smpte:ul:060e2b34.04010106.04010101.02030000
              + LEAF + SMPTE 240M Coding Equations + Identifies SMPTE 240M coding equations (note: legacy use only) + SMPTE ST 240 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_YCgCo +
                urn:smpte:ul:060e2b34.0401010d.04010101.02040000
              + LEAF + YCgCo Coding Equations + Identifies YCgCo coding equations + YCgCo is one of the "Luma and two Chroma" sample formats used in H.264. It utilises a lossless direct integer transform for efficient RGB coding. + ITU-T H.264 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_GBR +
                urn:smpte:ul:060e2b34.0401010d.04010101.02050000
              + LEAF + GBR Coding Equations + Identifies a simple transformation of RGB to YC1C2: Y=G; C1=B; C2=R + This identifies the coding equations used for direct encoding of RGB signals, for example in: VC-2 (SMPTE ST 2042-1) and H.264 (ITU-T H.264) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU2020_NCL +
                urn:smpte:ul:060e2b34.0401010d.04010101.02060000
              + LEAF + ITU-R BT.2020 Non-Constant Luminance Coding Equations + Identifies ITU-R BT.2020 coding equations for non-constant luminance + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries +
                urn:smpte:ul:060e2b34.04010106.04010101.03000000
              + NODE + Color Primaries + Identifies the color primaries type + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_SMPTE170M +
                urn:smpte:ul:060e2b34.04010106.04010101.03010000
              + LEAF + SMPTE 170M Color Primaries + Identifies SMPTE 170M color primaries and white point + This label is intended to identify the color primaries and white point used by 525-line Standard Definition Digital Television (often referred to loosely as "NTSC" because such a digital signal could be produced by digitising an analog NTSC signal) as defined in ITU-R BT.601 (note: chromaticity coordinates of the color primaries used were only introduced into ITU-R BT.601 in ITU-R BT.601-6). These are identical to the color primaries ("SMPTE C set") and white point defined in SMPTE ST 170. Note that SMPTE ST 170 is deferred to by ITU-R BT.1700 as the defining specification for the analog NTSC signal. Note that ITU-R BT.470 (as of ITU-R BT.470-7) defers to ITU-R BT.1700 as the defining specification for all video signal characteristics. + SMPTE ST 170 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU470_PAL +
                urn:smpte:ul:060e2b34.04010106.04010101.03020000
              + LEAF + ITU-R BT.470 PAL Color Primaries + Identifies ITU-R BT.470 PAL color primaries and white point (note: used in B, D, G, H, I, N/PAL and B, D, G, H, K, K1, L/SECAM systems) + This label is intended to identify the color primaries and white point used by 625-line Standard Definition Digital Television (often referred to loosely as "PAL" because such a digital signal could be produced by digitising certain analog signals described as "PAL") as defined in ITU-R BT.601 (note: chromaticity coordinates of the color primaries used were only introduced into ITU-R BT.601 in ITU-R BT.601-6). These are identical to the color primaries and white point defined for 625-line PAL in ITU-R BT.1700. Note that ITU-R BT.470 (as of ITU-R BT.470-7) defers to ITU-R BT.1700 as the defining specification for all video signal characteristics. + ITU-R BT.470 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU709 +
                urn:smpte:ul:060e2b34.04010106.04010101.03030000
              + LEAF + ITU-R BT.709 Color Primaries + Identifies ITU-R BT.709 color primaries and white point + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU2020 +
                urn:smpte:ul:060e2b34.0401010d.04010101.03040000
              + LEAF + ITU-R BT.2020 Color Primaries + Identifies ITU-R BT.2020 color primaries and white point + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_SMPTE_DCDM +
                urn:smpte:ul:060e2b34.0401010d.04010101.03050000
              + LEAF + SMPTE-DC28 DCDM Color Primaries + Identifies SMPTE DC28 D-Cinema Distribution Master color primaries and white point + In DCDM the color primaries are such that the entire CIE XYZ color space can be used + SMPTE ST 428-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_P3D65 +
                urn:smpte:ul:060e2b34.0401010d.04010101.03060000
              + LEAF + P3D65 Color Primaries + Identifies P3D65 color primaries and white point + SMPTE ST 2067-21 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ACES +
                urn:smpte:ul:060e2b34.0401010d.04010101.03070000
              + LEAF + ACES Color Primaries + Identifies ACES SMPTE ST 2065-1 color primaries and white point + SMPTE ST 2065-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_CinemaMezzanine +
                urn:smpte:ul:060e2b34.0401010d.04010101.03080000
              + LEAF + Cinema Mezzanine Color Primaries + Identifies XYZ tristimulus values as specified in ISO 11664-3 + SMPTE ST 2067-40 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AlternativeCenterCut +
                urn:smpte:ul:060e2b34.0401010d.04010101.04000000
              + NODE + Alternative Center Cut + Rectangular area of specified aspect ratio containing all of the critical action that is (a) centered on the active area, (b) entirely contained within the active area and (c) has a height or width equal to that of the active area + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterCut43 +
                urn:smpte:ul:060e2b34.0401010d.04010101.04010000
              + LEAF + 4:3 Alternative Center Cut + Indicates that the image essence can accommodate an alternative center cut with a 4:3 aspect ratio + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterCut149 +
                urn:smpte:ul:060e2b34.0401010d.04010101.04020000
              + LEAF + 14:9 Alternative Center Cut + Indicates that the image essence can accommodate an alternative center cut with a 14:9 aspect ratio + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureCodingCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010200.00000000
              + NODE + Picture Coding Characteristics + Identifies Picture Coding Characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010201.00000000
              + NODE + Uncompressed Picture Coding + Identifies Uncompressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved444CbYCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01010101
              + LEAF + Uncompressed Picture Coding Interleaved 444 CbYCr 8-bit + Identifies Uncompressed Picture Coding Interleaved 444 CbYCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020101
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 8-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422YCbYCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020102
              + LEAF + Uncompressed Picture Coding Interleaved 422 YCbYCr 8-bit + Identifies Uncompressed Picture Coding Interleaved 422 YCbYCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar422YCbCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020103
              + LEAF + Uncompressed Picture Coding Planar 422 YCbCr 8-bit + Identifies Uncompressed Picture Coding Planar 422 YCbCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY10Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020201
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 10-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 10-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar422CbYCrY10Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020202
              + LEAF + Uncompressed Picture Coding Planar 422 CbYCrY 10-bit + Identifies Uncompressed Picture Coding Planar 422 CbYCrY 10-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY12Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020301
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 12-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 12-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY16Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020401
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 16-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 16-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar420YCbCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01030102
              + LEAF + Uncompressed Picture Coding Planar 420 YCbCr 8-bit + Identifies Uncompressed Picture Coding Planar 420 YCbCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UndefinedUncompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010201.7f000000
              + LEAF + Undefined Uncompressed Picture Coding + Identifies uncompressed pictures with no defined source coding standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010202.00000000
              + NODE + Compressed Picture Coding + Identifies Compressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEGCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.01000000
              + NODE + MPEG Compression + Identifies MPEG Compressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPML +
                urn:smpte:ul:060e2b34.04010101.04010202.01010000
              + NODE + MPEG-2 MP-ML + Identifies MPEG-2 MP@ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01011000
              + LEAF + MPEG-2 MP-ML I-Frame + Identifies MPEG-2 MP-ML I-Frame coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01011100
              + LEAF + MPEG-2 MP-ML Long GOP + Identifies MPEG-2 MP-ML Long GOP coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01011200
              + LEAF + MPEG-2 MP-ML No I-Frames + Identifies MPEG-2 MP-ML No I-Frames coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLIECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01012000
              + NODE + MPEG-2 MP-ML IEC-HDV Constrained + Identifies MPEG-2 MP@ML, IEC HDV Constrained coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7202997P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012001
              + LEAF + MPEG-2 HDV MP-ML 480x720 29.97P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 29.97P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7202997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012002
              + LEAF + MPEG-2 HDV MP-ML 480x720 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994I4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012004
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94I 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94I frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012005
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94I 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012006
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012007
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72025P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012011
              + LEAF + MPEG-2 HDV MP-ML 576x720 25P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 25P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012012
              + LEAF + MPEG-2 HDV MP-ML 576x720 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050I4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012014
              + LEAF + MPEG-2 HDV MP-ML 576x720 50I 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50I frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012015
              + LEAF + MPEG-2 HDV MP-ML 576x720 50I 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012016
              + LEAF + MPEG-2 HDV MP-ML 576x720 50P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012017
              + LEAF + MPEG-2 HDV MP-ML 576x720 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PML +
                urn:smpte:ul:060e2b34.04010101.04010202.01020000
              + NODE + MPEG-2 422P-ML + Identifies MPEG-2 422P@ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED10MPEG2422PML +
                urn:smpte:ul:060e2b34.04010101.04010202.01020100
              + NODE + SMPTE D-10 MPEG-2 422P-ML + Identifies SMPTE Type-D10 MPEG-2 constrained 422P@ML + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1050Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020101
              + LEAF + SMPTE D-10 50Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 50Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1050Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020102
              + LEAF + SMPTE D-10 50Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 50Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1040Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020103
              + LEAF + SMPTE D-10 40Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 40Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1040Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020104
              + LEAF + SMPTE D-10 40Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 40Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1030Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020105
              + LEAF + SMPTE D-10 30Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 30Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1030Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020106
              + LEAF + SMPTE D-10 30Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 30Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01020200
              + LEAF + MPEG-2 422P-ML I-Frame + Identifies MPEG-2 422P-ML I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01020300
              + LEAF + MPEG-2 422P-ML Long GOP + Identifies MPEG-2 422P-ML Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01020400
              + LEAF + MPEG-2 422P-ML No I-Frames + Identifies MPEG-2 422P-ML No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHL +
                urn:smpte:ul:060e2b34.04010103.04010202.01030000
              + NODE + MPEG-2 MP-HL + Identifies MPEG-2 MP@HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01030200
              + LEAF + MPEG-2 MP-HL I-Frame + Identifies MPEG-2 MP-HL I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01030300
              + LEAF + MPEG-2 MP-HL Long GOP + Identifies MPEG-2 MP-HL Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01030400
              + LEAF + MPEG-2 MP-HL No I-Frames + Identifies MPEG-2 MP-HL No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLIECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01032000
              + NODE + MPEG-2 MP-HL IEC-HDV Constrained + Identifies MPEG-2 MP@HL IEC HDV Constrained + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDV720x12805994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01032001
              + LEAF + MPEG-2 HDV 720x1280 59.94P 16x9 + Identifies MPEG-2 HDV constrained 720x1280 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDV720x128050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01032008
              + LEAF + MPEG-2 HDV 720x1280 50P 16x9 + Identifies MPEG-2 HDV constrained 720x1280 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHL +
                urn:smpte:ul:060e2b34.04010103.04010202.01040000
              + NODE + MPEG-2 422P-HL + Identifies MPEG-2 422P@HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01040200
              + LEAF + MPEG-2 422P-HL I-Frame + Identifies MPEG-2 422P-HL I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01040300
              + LEAF + MPEG-2 422P-HL Long GOP + Identifies MPEG-2 422P-HL Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01040400
              + LEAF + MPEG-2 422P-HL No I-Frames + Identifies MPEG-2 422P-HL No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14 +
                urn:smpte:ul:060e2b34.04010108.04010202.01050000
              + NODE + MPEG-2 MP-H14 + Identifies MPEG-2 MP@H-1440 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14IFrame +
                urn:smpte:ul:060e2b34.04010108.04010202.01050200
              + LEAF + MPEG-2 MP-H14 I-Frame + Identifies MPEG-2 MP-H14 I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14LongGOP +
                urn:smpte:ul:060e2b34.04010108.04010202.01050300
              + LEAF + MPEG-2 MP-H14 Long GOP + Identifies MPEG-2 MP-H14 Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14NoIFrames +
                urn:smpte:ul:060e2b34.04010108.04010202.01050400
              + LEAF + MPEG-2 MP-H14 No I-Frames + Identifies MPEG-2 MP-H14 No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14IECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01052000
              + NODE + MPEG-2 MP-H14 IEC-HDV Constrained + Identifies MPEG-2 MP@H-1440 IEC HDV Constrained + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14480x7205994P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052001
              + LEAF + MPEG-2 HDV MP-H14 480x720 59.94P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14480x7205994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052002
              + LEAF + MPEG-2 HDV MP-H14 480x720 59.94P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14576x72050P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052008
              + LEAF + MPEG-2 HDV MP-H14 576x720 50P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14576x72050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052009
              + LEAF + MPEG-2 HDV MP-H14 576x720 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x12802997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052010
              + LEAF + MPEG-2 HDV MP-H14 720x1280 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x128025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052014
              + LEAF + MPEG-2 HDV MP-H14 720x1280 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x128050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052015
              + LEAF + MPEG-2 HDV MP-H14 720x1280 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14405994I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052020
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 59.94I 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 59.94I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14402997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052021
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14402398P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052022
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 23.98P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 23.98P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x144050I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052024
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 50I 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 50I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x144025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052025
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPML +
                urn:smpte:ul:060e2b34.04010109.04010202.01060000
              + NODE + MPEG-2 HP-ML + Identifies MPEG-2 High Profile, Main Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLIFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01060200
              + LEAF + MPEG-2 HP-ML I-Frame + Identifies MPEG-2 High Profile, Main Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLLongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01060300
              + LEAF + MPEG-2 HP-ML Long GOP + Identifies MPEG-2 High Profile, Main Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLNoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01060400
              + LEAF + MPEG-2 HP-ML No I-Frames + Identifies MPEG-2 High Profile, Main Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHL +
                urn:smpte:ul:060e2b34.04010109.04010202.01070000
              + NODE + MPEG-2 HP-HL + Identifies MPEG-2 High Profile, High Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLIFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01070200
              + LEAF + MPEG-2 HP-HL I-Frame + Identifies MPEG-2 High Profile, High Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLLongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01070300
              + LEAF + MPEG-2 HP-HL Long GOP + Identifies MPEG-2 High Profile, High Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLNoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01070400
              + LEAF + MPEG-2 HP-HL No I-Frames + Identifies MPEG-2 High Profile, High Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14 +
                urn:smpte:ul:060e2b34.04010109.04010202.01080000
              + NODE + MPEG-2 HP-H14 + Identifies MPEG-2 High Profile, High 1440 Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14IFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01080200
              + LEAF + MPEG-2 HP-H14 I-Frame + Identifies MPEG-2 High Profile, High 1440 Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14LongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01080300
              + LEAF + MPEG-2 HP-H14 Long GOP + Identifies MPEG-2 High Profile, High 1440 Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14NoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01080400
              + LEAF + MPEG-2 HP-H14 No I-Frames + Identifies MPEG-2 High Profile, High 1440 Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2Other +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090000
              + NODE + MPEG-2 Other + Identifies MPEG-2 Other coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090100
              + NODE + MPEG-2 SP LL + Identifies MPEG-2 SP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090200
              + NODE + MPEG-2 SP ML + Identifies MPEG-2 SP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090300
              + NODE + MPEG-2 SP HL + Identifies MPEG-2 SP HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090400
              + NODE + MPEG-2 SP H14 + Identifies MPEG-2 SP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01091000
              + NODE + MPEG-2 MP LL + Identifies MPEG-2 MP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01092000
              + NODE + MPEG-2 HP LL + Identifies MPEG-2 HP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093000
              + NODE + MPEG-2 SSP LL + Identifies MPEG-2 SSP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093100
              + NODE + MPEG-2 SSP ML + Identifies MPEG-2 SSP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093200
              + NODE + MPEG-2 SSP H14 + Identifies MPEG-2 SSP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094000
              + NODE + MPEG-2 SRNSP LL + Identifies MPEG-2 SRNSP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094100
              + NODE + MPEG-2 SRNSP ML + Identifies MPEG-2 SRNSP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094200
              + NODE + MPEG-2 SRNSP HL + Identifies MPEG-2 SRNSP HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094300
              + NODE + MPEG-2 SRNSP H14 + Identifies MPEG-2 SRNSP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095000
              + NODE + MPEG-2 Multiview LL + Identifies MPEG-2 Multiview LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095100
              + NODE + MPEG-2 Multiview ML + Identifies MPEG-2 Multiview ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095200
              + NODE + MPEG-2 Multiview HL + Identifies MPEG-2 Multiview HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095300
              + NODE + MPEG-2 Multiview H14 + Identifies MPEG-2 Multiview H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Video +
                urn:smpte:ul:060e2b34.04010103.04010202.01100000
              + NODE + MPEG-1 Video + Identifies MPEG-1 Video coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1ConstrainedProfile +
                urn:smpte:ul:060e2b34.04010103.04010202.01100100
              + LEAF + MPEG-1 Constrained Profile + Identifies MPEG-1 with Constrained Profile + ISO/IEC 11172-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1UnconstrainedCoding +
                urn:smpte:ul:060e2b34.04010103.04010202.01100200
              + LEAF + MPEG-1 Unconstrained Coding + Identifies MPEG-1 with Unconstrained Coding + ISO/IEC 11172-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4Part2Video +
                urn:smpte:ul:060e2b34.04010103.04010202.01200000
              + NODE + MPEG-4 Part2 Video + Identifies MPEG-4 Part 2 Compressed Video (natural visual) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200201
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 1 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200202
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 2 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200203
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 3 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200204
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 4 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201001
              + LEAF + MPEG-4 Simple Studio Profile Level 1 + Identifies MPEG-4 Simple Studio Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201002
              + LEAF + MPEG-4 Simple Studio Profile Level 2 + Identifies MPEG-4 Simple Studio Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201003
              + LEAF + MPEG-4 Simple Studio Profile Level 3 + Identifies MPEG-4 Simple Studio Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201004
              + LEAF + MPEG-4 Simple Studio Profile Level 4 + Identifies MPEG-4 Simple Studio Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel5 +
                urn:smpte:ul:060e2b34.0401010b.04010202.01201005
              + LEAF + MPEG-4 Simple Studio Profile Level 5 + Identifies MPEG-4 Simple Studio Profile Level 5 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel6 +
                urn:smpte:ul:060e2b34.0401010b.04010202.01201006
              + LEAF + MPEG-4 Simple Studio Profile Level 6 + Identifies MPEG-4 Simple Studio Profile Level 6 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201101
              + LEAF + MPEG-4 Core Studio Profile Level 1 + Identifies MPEG-4 Core Studio Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201102
              + LEAF + MPEG-4 Core Studio Profile Level 2 + Identifies MPEG-4 Core Studio Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201103
              + LEAF + MPEG-4 Core Studio Profile Level 3 + Identifies MPEG-4 Core Studio Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201104
              + LEAF + MPEG-4 Core Studio Profile Level 4 + Identifies MPEG-4 Core Studio Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCVideo +
                urn:smpte:ul:060e2b34.0401010a.04010202.01300000
              + NODE + H.264/MPEG-4 AVC Video + Identifies H.264/MPEG-4 AVC Video + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCPredictiveProfiles +
                urn:smpte:ul:060e2b34.0401010d.04010202.01310000
              + NODE + H.264/MPEG-4 AVC Predictive Profiles + Identifies H.264/MPEG-4 AVC Predictive Profiles + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCBaselineProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311000
              + NODE + H.264/MPEG-4 AVC Baseline Profile + Identifies H.264/MPEG-4 AVC Baseline Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCBaselineProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311001
              + LEAF + H.264/MPEG-4 AVC Baseline Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Baseline Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCConstrainedBaselineProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311100
              + NODE + H.264/MPEG-4 AVC Constrained Baseline Profile + Identifies H.264/MPEG-4 AVC Constrained Baseline Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCConstrainedBaselineProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311101
              + LEAF + H.264/MPEG-4 AVC Constrained Baseline Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Constrained Baseline Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCMainProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01312000
              + NODE + H.264/MPEG-4 AVC Main Profile + Identifies H.264/MPEG-4 AVC Main Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCMainProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01312001
              + LEAF + H.264/MPEG-4 AVC Main Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Main Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCExtendedProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01313000
              + NODE + H.264/MPEG-4 AVC Extended Profile + Identifies H.264/MPEG-4 AVC Extended Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCExtendedProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01313001
              + LEAF + H.264/MPEG-4 AVC Extended Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Extended Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHighProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01314000
              + NODE + H.264/MPEG-4 AVC High Profile + Identifies H.264/MPEG-4 AVC High Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHighProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01314001
              + LEAF + H.264/MPEG-4 AVC High Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10Profile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01315000
              + NODE + H.264/MPEG-4 AVC High 10 Profile + Identifies H.264/MPEG-4 AVC High 10 Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10ProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01315001
              + LEAF + H.264/MPEG-4 AVC High 10 Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 10 Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422Profile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01316000
              + NODE + H.264/MPEG-4 AVC High 422 Profile + Identifies H.264/MPEG-4 AVC High 422 Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422ProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01316001
              + LEAF + H.264/MPEG-4 AVC High 422 Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 422 Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444PredictiveProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01317000
              + NODE + H.264/MPEG-4 AVC High 444 Predictive Profile + Identifies H.264/MPEG-4 AVC High 444 Predictive Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444PredictiveProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01317001
              + LEAF + H.264/MPEG-4 AVC High 444 Predictive Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 444 Predictive Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCIntraProfiles +
                urn:smpte:ul:060e2b34.0401010a.04010202.01320000
              + NODE + H.264/MPEG-4 AVC Intra Profiles + Identifies H.264/MPEG-4 AVC Intra Profiles + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322000
              + NODE + H.264/MPEG-4 AVC High 10 Intra Profile + Identifies H.264/MPEG-4 AVC High 10 Intra Profile + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322001
              + LEAF + H.264/MPEG-4 AVC High 10 Intra Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 10 Intra Unconstrained Coding + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322100
              + NODE + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5010805994iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322101
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50108050iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322102
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5010802997pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322103
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50108025pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322104
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass507205994pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322108
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5072050pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322109
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/50p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323000
              + NODE + H.264/MPEG-4 AVC High 422 Intra Profile + Identifies H.264/MPEG-4 AVC High 422 Intra Profile + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323001
              + LEAF + H.264/MPEG-4 AVC High 422 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 422 Intra Profile Unconstrained Coding + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323100
              + NODE + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10010805994iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323101
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100108050iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323102
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10010802997pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323103
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100108025pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323104
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass1007205994pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323108
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10072050pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323109
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/50p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200 +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323200
              + NODE + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20010805994iCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323201
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200108050iCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323202
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20010802997pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323203
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200108025pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323204
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass2007205994pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323208
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20072050pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323209
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/50p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444IntraProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01324000
              + NODE + H.264/MPEG-4 AVC High 444 Intra Profile + Identifies H.264/MPEG-4 AVC High 444 Intra Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01324001
              + LEAF + H.264/MPEG-4 AVC High 444 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 444 Intra Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCCAVLC444IntraProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01325000
              + NODE + H.264/MPEG-4 AVC CAVLC 444 Intra Profile + Identifies H.264/MPEG-4 AVC CAVLC 444 Intra Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCCAVLC444IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01325001
              + LEAF + H.264/MPEG-4 AVC CAVLC 444 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC CAVLC 444 Intra Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVVideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02000000
              + NODE + DV Video Compression + Identifies all variants of DV Video Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IEC61834Part2VideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02010000
              + NODE + IEC-61834 Part-2 Video Compression + Identifies IEC DV Part-2 Video Compression family + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02010100
              + LEAF + IEC-DV Video 25Mbps 525x60I + Identifies IEC-DV compressed to 25Mbps for a 525x60I source + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02010200
              + LEAF + IEC-DV Video 25Mbps 625x50I + Identifies IEC-DV compressed to 25Mbps for a 625x50I source + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps525x60ISMPTE305MType41h +
                urn:smpte:ul:060e2b34.04010101.04010202.02010300
              + LEAF + IEC-DV Video 25Mbps 525x60I SMPTE-305M Type-41h + Identifies IEC-DV compressed to 25Mbps for a 525x60I source as defined by SMPTE-305M + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps625x50ISMPTE305MType41h +
                urn:smpte:ul:060e2b34.04010101.04010202.02010400
              + LEAF + IEC-DV Video 25Mbps 625x50I SMPTE-305M Type-41h + Identifies IEC-DV compressed to 25Mbps for a 625x50I source as defined by SMPTE-305M + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02020000
              + NODE + DV-based Video Compression + Identifies DV-based Video Compression family + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo25Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020100
              + LEAF + DV-based Video 25Mbps 525x60I + Identifies DV-based compressed to 25Mbps for a 525x60I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo25Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020200
              + LEAF + DV-based Video 25Mbps 625x50I + Identifies DV-based compressed to 25Mbps for a 625x50I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo50Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020300
              + LEAF + DV-based Video 50Mbps 525x60I + Identifies DV-based compressed to 50Mbps for a 525x60I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo50Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020400
              + LEAF + DV-based Video 50Mbps 625x50I + Identifies DV-based compressed to 50Mbps for a 625x50I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps1080x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020500
              + LEAF + DV-based Video 100Mbps 1080x59.94I + Identifies DV-based compressed to 100Mbps for a 1080x59.94I source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps1080x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020600
              + LEAF + DV-based Video 100Mbps 1080x50I + Identifies DV-based compressed to 100Mbps for a 1080x50I source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps720x5994P +
                urn:smpte:ul:060e2b34.04010101.04010202.02020700
              + LEAF + DV-based Video 100Mbps 720x59.94P + Identifies DV-based compressed to 100Mbps for a 720x59.94P source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps720x50P +
                urn:smpte:ul:060e2b34.04010101.04010202.02020800
              + LEAF + DV-based Video 100Mbps 720x50P + Identifies DV-based compressed to 100Mbps for a 720x50P source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IndividualPictureCodingSchemes +
                urn:smpte:ul:060e2b34.04010107.04010202.03000000
              + NODE + Individual Picture Coding Schemes + Identifies Individual Picture Coding Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000PictureCodingScheme +
                urn:smpte:ul:060e2b34.04010107.04010202.03010000
              + NODE + JPEG 2000 Picture Coding Scheme + Identifies the JPEG 2000 picture coding scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ISOIEC154441JPEG2002 +
                urn:smpte:ul:060e2b34.04010107.04010202.03010100
              + NODE + ISO/IEC 15444-1 JPEG 2002 + Identifies JPEG 2000, ISO/IEC 15444-1:2002 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000DigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010107.04010202.03010101
              + LEAF + JPEG 2000 Digital Cinema Profile + Identifies a JPEG 2000, ISO/IEC 15444-1:2002 AMD 1, Digital Cinema Profile + ISO/IEC 15444-1:2002 AMD 1 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000Amd12KDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010109.04010202.03010103
              + LEAF + JPEG 2000 Amd-1 2K Digital Cinema Profile + Identifies a JPEG 2000 Amd-1 2K Digital Cinema Profile Bitstream + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000Amd14KDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010109.04010202.03010104
              + LEAF + JPEG 2000 Amd-1 4K Digital Cinema Profile + Identifies a JPEG 2000 Amd-1 4K Digital Cinema Profile Bitstream + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010111
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 1 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 1 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010112
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 2 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 2 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010113
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 3 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 3 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010114
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 4 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 4 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010115
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 5 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 5 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionMultiTileReversibleProfileLevel6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010116
              + LEAF + JPEG 2000 Broadcast Contribution Multi-tile Reversible Profile Level 6 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Multi-tile Reversible Profile Level 6 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionMultiTileReversibleProfileLevel7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010117
              + LEAF + JPEG 2000 Broadcast Contribution Multi-tile Reversible Profile Level 7 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Multi-tile Reversible Profile Level 7 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000UndefinedDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.0301017f
              + LEAF + JPEG 2000 Undefined Digital Cinema Profile + Identifies a JPEG 2000 Bitstream with an Undefined Digital Cinema Profile + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010200
              + NODE + 2K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010201
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010202
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010203
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010204
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010205
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010206
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010207
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010208
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010209
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010210
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010211
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010212
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010213
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010214
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010215
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010216
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010217
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010218
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010219
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010220
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010221
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010222
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010223
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010224
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010225
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010226
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010227
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010228
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010229
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010230
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010231
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010232
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010233
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010234
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010235
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010236
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010237
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010238
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010239
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301023a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301023b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010300
              + NODE + 4K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010301
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010302
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010303
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010304
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010305
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010306
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010307
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010308
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010309
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010310
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010311
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010312
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010313
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010314
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010315
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010316
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010317
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010318
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010319
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010320
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010321
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010322
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010323
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010324
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010325
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010326
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010327
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010328
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010329
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010330
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010331
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010332
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010333
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010334
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010335
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010336
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010337
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010338
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010339
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301033a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301033b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010400
              + NODE + 8K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010401
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010402
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010403
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010404
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010405
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010406
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010407
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010408
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010409
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010410
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010411
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010412
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010413
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010414
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010415
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010416
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010417
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010418
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010419
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010420
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010421
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010422
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010423
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010424
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010425
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010426
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010427
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010428
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010429
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010430
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010431
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010432
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010433
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010434
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010435
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010436
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010437
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010438
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010439
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301043a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301043b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010500
              + NODE + 2K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010501
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010502
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010503
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010504
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010505
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010506
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010507
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010508
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010509
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010510
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010511
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010512
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010513
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010514
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010515
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010516
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010517
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010518
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010519
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010520
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010521
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010522
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010523
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010524
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010525
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010526
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010527
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010528
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010529
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010530
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010531
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010532
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010533
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010534
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010535
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010536
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010537
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010538
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010539
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301053a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301053b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010600
              + NODE + 4K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010601
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010602
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010603
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010604
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010605
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010606
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010607
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010608
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010609
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010610
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010611
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010612
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010613
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010614
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010615
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010616
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010617
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010618
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010619
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010620
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010621
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010622
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010623
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010624
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010625
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010626
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010627
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010628
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010629
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010630
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010631
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010632
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010633
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010634
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010635
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010636
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010637
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010638
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010639
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301063a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301063b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010700
              + NODE + 8K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010701
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010702
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010703
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010704
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010705
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010706
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010707
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010708
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010709
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010710
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010711
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010712
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010713
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010714
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010715
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010716
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010717
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010718
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010719
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010720
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010721
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010722
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010723
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010724
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010725
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010726
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010727
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010728
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010729
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010730
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010731
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010732
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010733
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010734
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010735
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010736
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010737
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010738
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010739
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301073a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301073b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPPictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020000
              + NODE + TIFF/EP Picture Coding Scheme + Identifier for the TIFF/EP Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPProfile2PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020100
              + NODE + TIFF/EP Profile 2 Picture Coding Scheme + Identifier for the TIFF/EP Profile 2 Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPUncompressedCFA +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020101
              + LEAF + TIFF/EP Uncompressed CFA + Identifier for the TIFF/EP Uncompressed CFA format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPUncompressedLinearRaw +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020102
              + LEAF + TIFF/EP Uncompressed LinearRaw + Identifier for the TIFF/EP Uncompressed LinearRaw format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPCompressedCFA +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020103
              + LEAF + TIFF/EP Compressed CFA + Identifier for the TIFF/EP Compressed CFA format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPCompressedLinearRaw +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020104
              + LEAF + TIFF/EP Compressed LinearRaw + Identifier for the TIFF/EP Compressed LinearRaw format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC2PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03030000
              + NODE + VC-2 Picture Coding Scheme + Identifies the VC-2 Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC2Stream +
                urn:smpte:ul:060e2b34.0401010d.04010202.03030100
              + LEAF + VC-2 Stream + Identifies a bitstream as a VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESPictureCodingSchemes +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040000
              + NODE + ACES Picture Coding Schemes + Identifies ACES SMPTE ST 2065-4 Picture Coding Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESUncompressedMonoscopicWithoutAlpha +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040100
              + LEAF + ACES Uncompressed Monoscopic Without Alpha + Identifier for ACES SMPTE ST 2065-4 monoscopic uncompressed picture coding without alpha channel + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESUncompressedMonoscopicWithAlpha +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040200
              + LEAF + ACES Uncompressed Monoscopic With Alpha + Identifier for ACES SMPTE ST 2065-4 monoscopic uncompressed picture coding with alpha channel + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050000
              + NODE + VC-5 Picture Coding Scheme + Picture essence coding label for a VC-5 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050300
              + NODE + VC-5 Part 3 Picture Coding Scheme + Picture essence coding label for a VC-5 Part 3 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3RGBAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050301
              + LEAF + VC-5 Part 3 RGB(A) Picture + Picture essence coding label for a VC-5 Part 3 bitstream with image format RGB(A) + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3YCCAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050302
              + LEAF + VC-5 Part 3 YCC(A) Picture + Picture essence coding label for a VC-5 Part 3 bitstream with image format YCC(A) + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3BayerPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050303
              + LEAF + VC-5 Part 3 Bayer Picture + Picture essence coding label for a VC-5 Part 3 bitstream with Bayer image format + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part4PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050400
              + NODE + VC-5 Part 4 Picture Coding Scheme + Picture Essence Coding Label for a VC-5 Part 4 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part4YCCAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050402
              + LEAF + VC-5 Part 4 YCC(A) Picture + Picture essence coding label for a VC-5 Part 4 bitstream with subsampled color difference components + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060000
              + NODE + ProRes Picture Coding Scheme + Identifies ProRes Picture coding scheme + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422Proxy +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060100
              + LEAF + ProRes Picture Coding 422 Proxy + Identifies ProRes Picture coding for the 422 Proxy profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422LT +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060200
              + LEAF + ProRes Picture Coding 422 LT + Identifies ProRes Picture coding for the 422 LT profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060300
              + LEAF + ProRes Picture Coding 422 + Identifies ProRes Picture coding for the 422 profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422HQ +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060400
              + LEAF + ProRes Picture Coding 422 HQ + Identifies ProRes Picture coding for the 422 HQ profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding4444 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060500
              + LEAF + ProRes Picture Coding 4444 + Identifies ProRes Picture coding for the 4444 profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding4444XQ +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060600
              + LEAF + ProRes Picture Coding 4444 XQ + Identifies ProRes Picture coding for the 4444 XQ profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SpecialisedCompressionSchemes +
                urn:smpte:ul:060e2b34.04010101.04010202.70000000
              + NODE + Specialised Compression Schemes + Identifies Specialised or Custom Compression Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11Compression +
                urn:smpte:ul:060e2b34.04010101.04010202.70010000
              + NODE + SMPTE D-11 Compression + Identifies Type D-11 compressed (High Definition) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110802398PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010100
              + LEAF + SMPTE D-11 1080 23.98PsF + Identifies SMPTE compression of a 1080/23.98PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108024PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010200
              + LEAF + SMPTE D-11 1080 24PsF + Identifies SMPTE compression of a 1080/24PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108025PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010300
              + LEAF + SMPTE D-11 1080 25PsF + Identifies SMPTE compression of a 1080/25PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110802997PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010400
              + LEAF + SMPTE D-11 1080 29.97PsF + Identifies SMPTE compression of a 1080/29.97PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108050I +
                urn:smpte:ul:060e2b34.04010101.04010202.70010500
              + LEAF + SMPTE D-11 1080 50I + Identifies SMPTE compression of a 1080/50I source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110805994I +
                urn:smpte:ul:060e2b34.04010101.04010202.70010600
              + LEAF + SMPTE D-11 1080 59.94I + Identifies SMPTE compression of a 1080/59.94I source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3Compression +
                urn:smpte:ul:060e2b34.0401010a.04010202.71000000
              + NODE + SMPTE VC-3 Compression + Identifies SMPTE VC-3 Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1235 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71010000
              + LEAF + SMPTE VC-3 ID 1235 + Identifies SMPTE VC-3 Compression ID 1235 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1237 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71030000
              + LEAF + SMPTE VC-3 ID 1237 + Identifies SMPTE VC-3 Compression ID 1237 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1238 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71040000
              + LEAF + SMPTE VC-3 ID 1238 + Identifies SMPTE VC-3 Compression ID 1238 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1241 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71070000
              + LEAF + SMPTE VC-3 ID 1241 + Identifies SMPTE VC-3 Compression ID 1241 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1242 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71080000
              + LEAF + SMPTE VC-3 ID 1242 + Identifies SMPTE VC-3 Compression ID 1242 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1243 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71090000
              + LEAF + SMPTE VC-3 ID 1243 + Identifies SMPTE VC-3 Compression ID 1243 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1244 +
                urn:smpte:ul:060e2b34.0401010d.04010202.710a0000
              + LEAF + SMPTE VC-3 ID 1244 + Identifies SMPTE VC-3 Compression ID 1244 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1250 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71100000
              + LEAF + SMPTE VC-3 ID 1250 + Identifies SMPTE VC-3 Compression ID 1250 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1251 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71110000
              + LEAF + SMPTE VC-3 ID 1251 + Identifies SMPTE VC-3 Compression ID 1251 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1252 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71120000
              + LEAF + SMPTE VC-3 ID 1252 + Identifies SMPTE VC-3 Compression ID 1252 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1253 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71130000
              + LEAF + SMPTE VC-3 ID 1253 + Identifies SMPTE VC-3 Compression ID 1253 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1256 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71160000
              + LEAF + SMPTE VC-3 ID 1256 + Identifies SMPTE VC-3 Compression ID 1256 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1258 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71180000
              + LEAF + SMPTE VC-3 ID 1258 + Identifies SMPTE VC-3 Compression ID 1258 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1259 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71190000
              + LEAF + SMPTE VC-3 ID 1259 + Identifies SMPTE VC-3 Compression ID 1259 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1260 +
                urn:smpte:ul:060e2b34.0401010d.04010202.711a0000
              + LEAF + SMPTE VC-3 ID 1260 + Identifies SMPTE VC-3 Compression ID 1260 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1270 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71240000
              + LEAF + SMPTE VC-3 ID 1270 + Identifies SMPTE VC-3 Compression ID 1270 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1271 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71250000
              + LEAF + SMPTE VC-3 ID 1271 + Identifies SMPTE VC-3 Compression ID 1271 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1272 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71260000
              + LEAF + SMPTE VC-3 ID 1272 + Identifies SMPTE VC-3 Compression ID 1272 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1273 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71270000
              + LEAF + SMPTE VC-3 ID 1273 + Identifies SMPTE VC-3 Compression ID 1273 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1274 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71280000
              + LEAF + SMPTE VC-3 ID 1274 + Identifies SMPTE VC-3 Compression ID 1274 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1Compression +
                urn:smpte:ul:060e2b34.0401010a.04010202.72000000
              + NODE + SMPTE VC-1 Compression + Identifies SMPTE VC-1 Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72010000
              + LEAF + SMPTE VC-1 Coding SP@LL + Identifies SMPTE VC-1 Compression Coding SP@LL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.72020000
              + LEAF + SMPTE VC-1 Coding SP@ML + Identifies SMPTE VC-1 Compression Coding SP@ML + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72030000
              + LEAF + SMPTE VC-1 Coding MP@LL + Identifies SMPTE VC-1 Compression Coding MP@LL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.72040000
              + LEAF + SMPTE VC-1 Coding MP@ML + Identifies SMPTE VC-1 Compression Coding MP@ML + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72050000
              + LEAF + SMPTE VC-1 Coding MP@HL + Identifies SMPTE VC-1 Compression Coding MP@HL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL0 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72060000
              + LEAF + SMPTE VC-1 Coding AP@L0 + Identifies SMPTE VC-1 Compression Coding AP@L0 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL1 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72070000
              + LEAF + SMPTE VC-1 Coding AP@L1 + Identifies SMPTE VC-1 Compression Coding AP@L1 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL2 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72080000
              + LEAF + SMPTE VC-1 Coding AP@L2 + Identifies SMPTE VC-1 Compression Coding AP@L2 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL3 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72090000
              + LEAF + SMPTE VC-1 Coding AP@L3 + Identifies SMPTE VC-1 Compression Coding AP@L3 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL4 +
                urn:smpte:ul:060e2b34.0401010a.04010202.720a0000
              + LEAF + SMPTE VC-1 Coding AP@L4 + Identifies SMPTE VC-1 Compression Coding AP@L4 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureTrackLabeling +
                urn:smpte:ul:060e2b34.0401010d.04010210.00000000
              + NODE + Picture Track Labeling + Identifies Picture Track Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureTrackLabelingForSMPTEST2070 +
                urn:smpte:ul:060e2b34.0401010d.04010210.01000000
              + NODE + Picture Track Labeling for SMPTE ST 2070 + Identifies Picture Track Labeling SMPTE ST 2070 + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftEyePictureTrack +
                urn:smpte:ul:060e2b34.0401010d.04010210.01010000
              + LEAF + Left Eye Picture Track + Identifies Picture Track Corresponding to Left Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightEyePictureTrack +
                urn:smpte:ul:060e2b34.0401010d.04010210.01020000
              + LEAF + Right Eye Picture Track + Identifies Picture Track Corresponding to Right Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParametricSoundEssence +
                urn:smpte:ul:060e2b34.04010101.04020000.00000000
              + NODE + Sound Essence + Identifies sound essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundCodingCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04020200.00000000
              + NODE + Sound Coding Characteristics + Identifies sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020201.00000000
              + NODE + Uncompressed Sound Coding + Identifies uncompressed sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE382MDefaultUncompressedSoundCoding +
                urn:smpte:ul:060e2b34.0401010a.04020201.01000000
              + LEAF + SMPTE-382M Default Uncompressed Sound Coding + Identifies SMPTE-382M Default Uncompressed Sound Coding + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AIFFUncompressedCoding +
                urn:smpte:ul:060e2b34.04010107.04020201.7e000000
              + LEAF + AIFF Uncompressed Coding + Identifies uncompressed sound coded according to AIFF (big-endian samples) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UndefinedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020201.7f000000
              + LEAF + Undefined Sound Coding + Identifies uncompressed sound with no defined source coding standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.00000000
              + NODE + Compressed Sound Coding + Identifies compressed sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedAudioCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.03000000
              + NODE + Compressed Audio Coding + Identifies compression of all audio types + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompandedAudioCoding +
                urn:smpte:ul:060e2b34.04010103.04020202.03010000
              + NODE + Companded Audio Coding + Identifies sample-based companding schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ALawCodedAudioDefault +
                urn:smpte:ul:060e2b34.04010103.04020202.03010100
              + LEAF + A-law Coded Audio default + Identifies A-law 8-bit compressed audio - default value + ITU-T Rec G.711 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVCompressedAudio +
                urn:smpte:ul:060e2b34.04010103.04020202.03011000
              + LEAF + DV Compressed Audio + Identifies DV 12-bit compressed audio + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE338MAudioCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.03020000
              + NODE + SMPTE ST 338 Audio per ST 337 Coding + Identifies Compressed audio types identified by SMPTE ST 338 + SMPTE ST 337, SMPTE ST 338 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ATSCA52CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020100
              + LEAF + ATSC A-52 Compressed Audio + Identifies ATSC A/52 compressed audio + ATSC A/52A + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer1CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020400
              + LEAF + MPEG-1 Layer-1 Compressed Audio + Identifies compressed audio compliant to MPEG-1 layer 1 + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer1Or2CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020500
              + LEAF + MPEG-1 Layer-1 or 2 Compressed Audio + Identifies compressed audio compliant to MPEG-1 layer 2 or 3 or MPEG-2 data without extension (audio) + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer2HDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04020202.03020501
              + LEAF + MPEG-1 Layer-2 HDV Constrained + Identifies compressed audio compliant to MPEG-1 layer 2 stereo and constrained to the HDV specification + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2Layer1CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020600
              + LEAF + MPEG-2 Layer-1 Compressed Audio + Identifies compressed audio compliant to MPEG-2 data with extension (audio) + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DolbyECompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03021c00
              + LEAF + Dolby-E Compressed Audio + Identifies Dolby E compressed audio + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + NonSMPTE338MMPEG2Coding +
                urn:smpte:ul:060e2b34.04010103.04020202.03030000
              + NODE + Non SMPTE ST 338 MPEG-2 Coding + Identifies MPEG-2 Audio compression schemes not defined by SMPTE ST 338 + SMPTE ST 337, SMPTE ST 338 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2AACCompressedAudio +
                urn:smpte:ul:060e2b34.04010103.04020202.03030100
              + LEAF + MPEG-2 AAC Compressed Audio + Identifies MPEG-2 Advanced Audio Coding + ISO/IEC 13818-7 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_Compressed_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04000000
              + NODE + MPEG Audio Compression + Identifies MPEG Audio compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010000
              + NODE + MPEG-1 Audio Coding + Identifies compressed audio compliant to MPEG-1 audio coding + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_I +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010100
              + LEAF + MPEG-1 Layer I + Identifies compressed audio compliant to MPEG-1 Layer I + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_II +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010200
              + LEAF + MPEG-1 Layer II + Identifies compressed audio compliant to MPEG-1 Layer II + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_III +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010300
              + LEAF + MPEG-1 Layer III + Identifies compressed audio compliant to MPEG-1 Layer III + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020000
              + NODE + MPEG-2 Audio Coding + Identifies compressed audio compliant to MPEG-2 Audio Coding + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_I +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020100
              + LEAF + MPEG-2 Layer I + Identifies compressed audio compliant to MPEG-2 Layer I + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_II +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020200
              + LEAF + MPEG-2 Layer II + Identifies compressed audio compliant to MPEG-2 Layer II + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_III +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020300
              + LEAF + MPEG-2 Layer III + Identifies compressed audio compliant to MPEG-2 Layer III + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Advanced_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030000
              + NODE + MPEG-2 Advanced Audio Coding + Identifies compressed audio compliant to MPEG-2 Advanced Audio Coding + Refer to ISO/IEC 13818-7 + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_LC_AAC +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030100
              + LEAF + Low Complexity profile MPEG-2 AAC + Identifies compressed audio compliant to MPEG-2 AAC Low Complexity profile + Refer to ISO/IEC 13818-7, §7 "Profiles and Profile Interoperability" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_AAC_SBR +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030200
              + LEAF + Low Complexity profile MPEG-2 AAC+SBR + Identifies compressed audio compliant to MPEG-2 AAC Low Complexity + SBR + Refer to ISO/IEC 13818-7, §7 "Profiles and Profile Interoperability" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_Advanced_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040000
              + NODE + MPEG-4 Advanced Audio Coding + Identifies compressed audio compliant to MPEG-4 Advanced Audio Coding + Refer to ISO/IEC 14496-3 + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_AAC_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040100
              + LEAF + MPEG-4 AAC Profile + Identifies compressed audio compliant to MPEG-4 AAC LC Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_High_Efficiency_AAC_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040200
              + LEAF + MPEG-4 High Efficiency AAC Profile + Identifies compressed audio compliant to MPEG-4 High Efficiency AAC Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_High_Efficiency_AAC_v2_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040300
              + LEAF + MPEG-4 High Efficiency AAC v2 Profile + Identifies compressed audio compliant to MPEG-4 High Efficiency AAC v2 Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabeling +
                urn:smpte:ul:060e2b34.04010109.04020210.00000000
              + NODE + Sound Channel Labeling + Identifies Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE2035 +
                urn:smpte:ul:060e2b34.0401010b.04020210.01000000
              + NODE + Sound Channel Labeling SMPTE 2035 + Identifies SoundChannel Labeling SMPTE 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010000
              + NODE + SMPTE-2035 Mono Program Configurations + Identifies SMPTE-2035 Mono Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010100
              + LEAF + SMPTE-2035 Mono Program 1a + Identifies SMPTE-2035 Mono Program 1a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010200
              + LEAF + SMPTE-2035 Mono Program 1b + Identifies SMPTE-2035 Mono Program 1b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010300
              + LEAF + SMPTE-2035 Mono Program 1c + Identifies SMPTE-2035 Mono Program 1c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020000
              + NODE + SMPTE-2035 Stereo Program Configurations + Identifies SMPTE-2035 Stereo Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020100
              + LEAF + SMPTE-2035 Stereo Program 2a + Identifies SMPTE-2035 Stereo Program 2a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020200
              + LEAF + SMPTE-2035 Stereo Program 2b + Identifies SMPTE-2035 Stereo Program 2b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020300
              + LEAF + SMPTE-2035 Stereo Program 2c + Identifies SMPTE-2035 Stereo Program 2c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030000
              + NODE + SMPTE-2035 Dual Stereo Program Configurations + Identifies SMPTE-2035 Dual Stereo Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereo3a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030100
              + LEAF + SMPTE-2035 Dual Stereo 3a + Identifies SMPTE-2035 Dual Stereo 3a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereo3b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030200
              + LEAF + SMPTE-2035 Dual Stereo 3b + Identifies SMPTE-2035 Dual Stereo 3b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentaryProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040000
              + NODE + SMPTE-2035 Mono Commentary Program Configurations + Identifies SMPTE-2035 Mono Commentary Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040100
              + LEAF + SMPTE-2035 Mono Commentary 4a + Identifies SMPTE-2035 Mono Commentary 4a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040200
              + LEAF + SMPTE-2035 Mono Commentary 4b + Identifies SMPTE-2035 Mono Commentary 4b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040300
              + LEAF + SMPTE-2035 Mono Commentary 4c + Identifies SMPTE-2035 Mono Commentary 4c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSoundConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050000
              + NODE + SMPTE-2035 Stereo International Sound Configurations + Identifies SMPTE-2035 Stereo International Sound Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSound5a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050100
              + LEAF + SMPTE-2035 Stereo International Sound 5a + Identifies SMPTE-2035 Stereo International Sound 5a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSound5b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050200
              + LEAF + SMPTE-2035 Stereo International Sound 5b + Identifies SMPTE-2035 Stereo International Sound 5b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoCommentaryProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060000
              + NODE + SMPTE-2035 Stereo Commentary Program Configurations + Identifies SMPTE-2035 Stereo Commentary Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramSound6a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060100
              + LEAF + SMPTE-2035 Stereo Program Sound 6a + Identifies SMPTE-2035 Stereo Program Sound 6a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramSound6b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060200
              + LEAF + SMPTE-2035 Stereo Program Sound 6b + Identifies SMPTE-2035 Stereo Program Sound 6b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogueConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070000
              + NODE + SMPTE-2035 Mono Program Dialogue Configurations + Identifies SMPTE-2035 Mono Program Dialogue Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogue7a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070100
              + LEAF + SMPTE-2035 Mono Program Dialogue 7a + Identifies SMPTE-2035 Mono Program Dialogue 7a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogue7b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070200
              + LEAF + SMPTE-2035 Mono Program Dialogue 7b + Identifies SMPTE-2035 Mono Program Dialogue 7b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080000
              + NODE + SMPTE-2035 Mono Program Combo Configurations + Identifies SMPTE-2035 Mono Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080100
              + LEAF + SMPTE-2035 Mono Program Combo 8a + Identifies SMPTE-2035 Mono Program Combo 8a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080200
              + LEAF + SMPTE-2035 Mono Program Combo 8b + Identifies SMPTE-2035 Mono Program Combo 8b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080300
              + LEAF + SMPTE-2035 Mono Program Combo 8c + Identifies SMPTE-2035 Mono Program Combo 8c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8d +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080400
              + LEAF + SMPTE-2035 Mono Programs Combo 8d + Identifies SMPTE-2035 Mono Programs Combo 8d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8e +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080500
              + LEAF + SMPTE-2035 Mono Programs Combo 8e + Identifies SMPTE-2035 Mono Programs Combo 8e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8f +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080600
              + LEAF + SMPTE-2035 Mono Programs Combo 8f + Identifies SMPTE-2035 Mono Programs Combo 8f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8g +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080700
              + LEAF + SMPTE-2035 Mono Programs Combo 8g + Identifies SMPTE-2035 Mono Programs Combo 8g + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090000
              + NODE + SMPTE-2035 Stereo Program Combo Configurations + Identifies SMPTE-2035 Stereo Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090100
              + LEAF + SMPTE-2035 Stereo Program Combo 9a + Identifies SMPTE-2035 Stereo Program Combo 9a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090200
              + LEAF + SMPTE-2035 Stereo Program Combo 9b + Identifies SMPTE-2035 Stereo Program Combo 9b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090300
              + LEAF + SMPTE-2035 Stereo Program Combo 9c + Identifies SMPTE-2035 Stereo Program Combo 9c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9d +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090400
              + LEAF + SMPTE-2035 Stereo Program Combo 9d + Identifies SMPTE-2035 Stereo Program Combo 9d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9e +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090500
              + LEAF + SMPTE-2035 Stereo Program Combo 9e + Identifies SMPTE-2035 Stereo Program Combo 9e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramsCombo9f +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090600
              + LEAF + SMPTE-2035 Stereo Programs Combo 9f + Identifies SMPTE-2035 Stereo Programs Combo 9f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelChannelNonPCMAudio +
                urn:smpte:ul:060e2b34.0401010b.04020210.010a0000
              + NODE + SMPTE-2035 Multi-Channel Channel Non-PCM Audio + Identifies SMPTE-2035 Multi-Channel Channel Non-PCM Audio + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelChannelNonPCM10a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010a0100
              + LEAF + SMPTE-2035 Multi-Channel Channel Non-PCM 10a + Identifies SMPTE-2035 Multi-Channel Channel Non-PCM 10a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0000
              + NODE + SMPTE-2035 Multi-Channel Program Combo Configurations + Identifies SMPTE-2035 Multi-Channel Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0100
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11a + Identifies SMPTE-2035 Multi-Channel Program Combo 11a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11b +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0200
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11b + Identifies SMPTE-2035 Multi-Channel Program Combo 11b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11c +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0300
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11c + Identifies SMPTE-2035 Multi-Channel Program Combo 11c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11d +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0400
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11d + Identifies SMPTE-2035 Multi-Channel Program Combo 11d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11e +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0500
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11e + Identifies SMPTE-2035 Multi-Channel Program Combo 11e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11f +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0600
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11f + Identifies SMPTE-2035 Multi-Channel Program Combo 11f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11g +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0700
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11g + Identifies SMPTE-2035 Multi-Channel Program Combo 11g + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11h +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0800
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11h + Identifies SMPTE-2035 Multi-Channel Program Combo 11h + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11i +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0900
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11i + Identifies SMPTE-2035 Multi-Channel Program Combo 11i + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoMultiChannelConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010c0000
              + NODE + SMPTE-2035 Dual Stereo Multi-Channel Configurations + Identifies SMPTE-2035 Dual Stereo Multi-Channel Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoMultiChannel12a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010c0100
              + LEAF + SMPTE-2035 Dual Stereo Multi-Channel 12a + Identifies SMPTE-2035 Dual Stereo Multi-Channel 12a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackProgramTypeConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0000
              + NODE + SMPTE-2035 12-Track Program Type Configurations + Identifies SMPTE-2035 12-Track Program Type Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoProgramsPlusMultiChannelProgram13a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0100
              + LEAF + SMPTE-2035 12-Track Stereo Programs Plus Multi-Channel Program 13a + Identifies SMPTE-2035 12-Track Stereo Programs Plus Multi-Channel Program 13a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoDualLanguageProgramPlusMultiChannelProgram13b +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0200
              + LEAF + SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Program 13b + Identifies SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Program 13b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoDualLanguageProgramPlusMultiChannelCodedAudio13c +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0300
              + LEAF + SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Coded-Audio 13c + Identifies SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Coded-Audio 13c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackMultiChannelProgramPlusStereoPrograms13d +
                urn:smpte:ul:060e2b34.0401010d.04020210.010d0400
              + LEAF + SMPTE-2035 12-Track Multi-Channel Program plus Stereo Programs 13d + Identifies SMPTE-2035 12-Track Multi-Channel Program plus Stereo Programs 13d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackMultiChannelProgramPlusStereoProgram13e +
                urn:smpte:ul:060e2b34.0401010d.04020210.010d0500
              + LEAF + SMPTE-2035 12-Track Multi-Channel Program plus Stereo Program 13e + Identifies SMPTE-2035 12-Track Multi-Channel Program plus Stereo Program 13e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE320M +
                urn:smpte:ul:060e2b34.04010109.04020210.02000000
              + NODE + Sound Channel Labeling SMPTE320M + Identifies Sound Channel Labeling according to SMPTE320M + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE320M8ChannelModeA +
                urn:smpte:ul:060e2b34.04010109.04020210.02010000
              + LEAF + SMPTE-320M 8-Channel ModeA + Identifies SMPTE-320M 8-Channel ModeA + SMPTE ST 320 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE320M8ChannelModeB +
                urn:smpte:ul:060e2b34.04010109.04020210.02020000
              + LEAF + SMPTE-320M 8-Channel ModeB + Identifies SMPTE-320M 8-Channel ModeB + SMPTE ST 320 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE4292 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03000000
              + NODE + Sound Channel Labeling SMPTE 429-2 + Identifies Sound Channel Labeling according to SMPTE 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE4292Sets1 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010000
              + NODE + Sound Channel Labeling SMPTE 429-2 Sets-1 + Identifies Static Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration1 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010100
              + LEAF + SMPTE-429-2 Channel Configuration 1 + Identifies SMPTE-429-2 Channel Configuration 1 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration2 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010200
              + LEAF + SMPTE-429-2 Channel Configuration 2 + Identifies SMPTE-429-2 Channel Configuration 2 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration3 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010300
              + LEAF + SMPTE-429-2 Channel Configuration 3 + Identifies SMPTE-429-2 Channel Configuration 3 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration4 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010400
              + LEAF + SMPTE-429-2 Channel Configuration 4 + Identifies SMPTE-429-2 Channel Configuration 4 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration5 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010500
              + LEAF + SMPTE-429-2 Channel Configuration 5 + Identifies SMPTE-429-2 Channel Configuration 5 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292DCinemaApplicationOfTheMultichannelAudioFramework +
                urn:smpte:ul:060e2b34.0401010d.04020210.03020000
              + LEAF + SMPTE-429-2 D-Cinema Application of the Multichannel Audio Framework + Identifies SMPTE-429-2 D-Cinema Application of the Multichannel Audio Framework + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTEST20672 +
                urn:smpte:ul:060e2b34.0401010d.04020210.04000000
              + NODE + Sound Channel Labeling SMPTE ST 2067-2 + Identifies Sound Channel Labeling SMPTE ST 2067-2 + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20672ApplicationOfTheMXFMultichannelAudioFramework +
                urn:smpte:ul:060e2b34.0401010d.04020210.04010000
              + LEAF + SMPTE ST 2067-2 Application of the MXF Multichannel Audio Framework + Identifies SMPTE ST 2067-2 Application of the MXF Multichannel Audio Framework + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssence +
                urn:smpte:ul:060e2b34.04010101.04030000.00000000
              + NODE + Data Essence + Identifies data essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericEventTextEssence +
                urn:smpte:ul:060e2b34.0401010d.04030100.00000000
              + NODE + Generic Event Text Essence + Identifies Generic Event Text Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericSubtitleEssence +
                urn:smpte:ul:060e2b34.0401010d.04030101.00000000
              + NODE + Generic Subtitle Essence + Identifies Generic Subtitle Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EBUT3264STLSubtitleEssence +
                urn:smpte:ul:060e2b34.0401010d.04030101.01000000
              + LEAF + EBU-t3264 STL Subtitle Essence + Identifies EBU-t3264 STL Subtitle Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericCaptionsEssence +
                urn:smpte:ul:060e2b34.0401010d.04030102.00000000
              + NODE + Generic Captions Essence + Identifies Generic Captions Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EBUT3264STLCaptionsEssence +
                urn:smpte:ul:060e2b34.0401010d.04030102.01000000
              + LEAF + EBU-t3264 STL Captions Essence + Identifies EBU-t3264 STL Captions Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssenceCodingCharacteristics +
                urn:smpte:ul:060e2b34.0401010d.04030200.00000000
              + NODE + Data Essence Coding Characteristics + Identifies Data Essence Coding Characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataTrackLabeling +
                urn:smpte:ul:060e2b34.0401010d.04030210.00000000
              + NODE + Data Track Labeling + Identifies Data Track Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataTrackLabelingSMPTEST2070 +
                urn:smpte:ul:060e2b34.0401010d.04030210.01000000
              + NODE + Data Track Labeling SMPTE ST 2070 + Identifies Data Track Labeling SMPTE ST 2070 + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftEyeDataTrack +
                urn:smpte:ul:060e2b34.0401010d.04030210.01010000
              + LEAF + Left Eye Data Track + Identifies Data Track Corresponding to Left Eye + SMTPE ST 2070 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightEyeDataTrack +
                urn:smpte:ul:060e2b34.0401010d.04030210.01020000
              + LEAF + Right Eye Data Track + Identifies Data Track Corresponding to Right Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + Metadata +
                urn:smpte:ul:060e2b34.04010101.04040000.00000000
              + NODE + Metadata + Identifies metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FundamentalMetadataCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04040100.00000000
              + NODE + Fundamental Metadata Characteristics + Identifies fundamental metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + StaticMetadata +
                urn:smpte:ul:060e2b34.04010101.04040101.00000000
              + NODE + Static Metadata + Identifies static metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DynamicMetadata +
                urn:smpte:ul:060e2b34.04010101.04040102.00000000
              + NODE + Dynamic Metadata + Identifies dynamic metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RepetitiveTimingMetadata +
                urn:smpte:ul:060e2b34.04010101.04040102.01000000
              + NODE + Repetitive Timing Metadata + Identifies repetitive timing metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MInactiveUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01010000
              + NODE + SMPTE-12M Inactive User Bits + Identifies SMPTE 12M timecode with inactive user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsInactiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010100
              + LEAF + SMPTE-12M 23.98fps Inactive User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Inactive User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsInactiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010101
              + LEAF + SMPTE-12M 23.98fps Inactive User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Inactive User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010200
              + LEAF + SMPTE-12M 24fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010300
              + LEAF + SMPTE-12M 25fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsInactiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010400
              + LEAF + SMPTE-12M 29.97fps Inactive User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Inactive User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsInactiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010401
              + LEAF + SMPTE-12M 29.97fps Inactive User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Inactive User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010500
              + LEAF + SMPTE-12M 30fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MActiveUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01020000
              + NODE + SMPTE-12M Active User Bits + Identifies SMPTE 12M timecode with active user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsActiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020100
              + LEAF + SMPTE-12M 23.98fps Active User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Active User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsActiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020101
              + LEAF + SMPTE-12M 23.98fps Active User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Active User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020200
              + LEAF + SMPTE-12M 24fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020300
              + LEAF + SMPTE-12M 25fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsActiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020400
              + LEAF + SMPTE-12M 29.97fps Active User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Active User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsActiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020401
              + LEAF + SMPTE-12M 29.97fps Active User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Active User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020500
              + LEAF + SMPTE-12M 30fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MDatecodeUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01030000
              + NODE + SMPTE-12M Datecode User Bits + Identifies SMPTE 12M timecode with datecode user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsDatecodeUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030100
              + LEAF + SMPTE-12M 23.98fps Datecode User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Datecode User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsDatecodeUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030101
              + LEAF + SMPTE-12M 23.98fps Datecode User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Datecode User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030200
              + LEAF + SMPTE-12M 24fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030300
              + LEAF + SMPTE-12M 25fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsDatecodeUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030400
              + LEAF + SMPTE-12M 29.97fps Datecode User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Datecode User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsDatecodeUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030401
              + LEAF + SMPTE-12M 29.97fps Datecode User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Datecode User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030500
              + LEAF + SMPTE-12M 30fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTDataCoding +
                urn:smpte:ul:060e2b34.0401010d.04040102.02000000
              + NODE + DMCVT Data Coding + Identifies DMCVT Data Coding + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication1 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02010000
              + LEAF + DMCVT Application 1 + Identifies DMCVT Application 1 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication2 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02020000
              + LEAF + DMCVT Application 2 + Identifies DMCVT Application 2 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication3 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02030000
              + LEAF + DMCVT Application 3 + Identifies DMCVT Application 3 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication4 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02040000
              + LEAF + DMCVT Application 4 + Identifies DMCVT Application 4 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompoundEssence +
                urn:smpte:ul:060e2b34.04010101.04050000.00000000
              + NODE + Compound Essence + SMPTE Label identifiers for compound essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GeneralData +
                urn:smpte:ul:060e2b34.04010101.04100000.00000000
              + NODE + General Data + SMPTE Label identifiers for general data parameters (neither essence nor metadata) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PROCESS +
                urn:smpte:ul:060e2b34.04010101.05000000.00000000
              + NODE + PROCESS + SMPTE Label identifiers for Process Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + Settings +
                urn:smpte:ul:060e2b34.0401010b.05100000.00000000
              + NODE + Settings + Identifies Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DeviceSettings +
                urn:smpte:ul:060e2b34.0401010b.05100100.00000000
              + NODE + Device Settings + Identifies Device Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CameraSettings +
                urn:smpte:ul:060e2b34.0401010b.05100101.00000000
              + NODE + Camera Settings + Identifies Camera Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ExposureSettings +
                urn:smpte:ul:060e2b34.0401010b.05100101.01000000
              + NODE + Exposure Settings + Identifies Exposure Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ManualExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01010000
              + LEAF + Manual Exposure + Identifies Manual Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FullAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01020000
              + LEAF + Full Auto Exposure + Identifies Full Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GainPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01030000
              + LEAF + Gain Priority Auto Exposure + Identifies Gain Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IrisPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01040000
              + LEAF + Iris Priority Auto Exposure + Identifies Iris Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ShutterPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01050000
              + LEAF + Shutter Priority Auto Exposure + Identifies Shutter Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RELATIONAL +
                urn:smpte:ul:060e2b34.04010101.06000000.00000000
              + NODE + RELATIONAL + SMPTE Label identifiers for Relational Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SPATIOTEMPORAL +
                urn:smpte:ul:060e2b34.04010101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + SMPTE Label identifiers for Spatio-Temporal Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + COMPOUND +
                urn:smpte:ul:060e2b34.04010101.0c000000.00000000
              + NODE + COMPOUND + SMPTE Label identifiers for Compound Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.04010101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.04010101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFStructuralMetadata +
                urn:smpte:ul:060e2b34.04010101.0d010100.00000000
              + NODE + AAF Structural Metadata + Identifiers for AAF Structural Metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFStructuralMetadataVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010101.00000000
              + NODE + AAF Structural Metadata Version 1 + Identifiers for AAF Structural Metadata Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFVersion1Standard +
                urn:smpte:ul:060e2b34.04010101.0d010101.01000000
              + NODE + AAF Version 1 Standard + Identifiers for AAF Version 1 Standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFVersion1StandardKinds +
                urn:smpte:ul:060e2b34.04010101.0d010101.01010000
              + NODE + AAF Version 1 Standard Kinds + Identifiers for AAF Version 1 Standard Kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + OperationCategory_Effect +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010100
              + LEAF + OperationCategory Effect + Identifier for OperationCategory Effect + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Effect +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010200
              + LEAF + PluginCategory Effect + Identifier for PluginCategory Effect + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Codec +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010300
              + LEAF + PluginCategory Codec + Identifier for PluginCategory Codec + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Interpolation +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010400
              + LEAF + PluginCategory Interpolation + Identifier for PluginCategory Interpolation + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_SubClip +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010500
              + LEAF + Usage SubClip + Identifier for Usage SubClip + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_AdjustedClip +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010600
              + LEAF + Usage AdjustedClip + Identifier for Usage AdjustedClip + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_TopLevel +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010700
              + LEAF + Usage TopLevel + Identifier for Usage TopLevel + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_LowerLevel +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010800
              + LEAF + Usage LowerLevel + Identifier for Usage LowerLevel + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_Template +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010900
              + LEAF + Usage Template + Identifier for Usage Template + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOperationalPatternApplication +
                urn:smpte:ul:060e2b34.04010101.0d010200.00000000
              + NODE + MXF Operational Pattern Application + Identifiers for MXF Operational Patterns + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPStructureVersion +
                urn:smpte:ul:060e2b34.04010101.0d010201.00000000
              + NODE + MXF OP Structure Version + Identifiers for MXF OPs with Structure Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1xSingleItemAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.01000000
              + NODE + MXF OP1x SingleItem AnyPackage + Identifiers for MXF OP1x, SingleItem AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010000
              + NODE + MXF OP1a SingleItem SinglePackage + Identifiers for MXF: OP1a, SingleItem SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010100
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack Stream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack Stream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010300
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack Stream External + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack Stream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010500
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack NonStream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack NonStream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010700
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack NonStream External + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack NonStream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010900
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack Stream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack Stream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010b00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack Stream External + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack Stream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010d00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack NonStream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010f00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack NonStream External + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack NonStream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020000
              + NODE + MXF OP1b SingleItem GangedPackages + Identifiers for MXF: OP1b, SingleItem GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020100
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack Stream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack Stream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020300
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack Stream External + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack Stream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020500
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack NonStream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack NonStream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020700
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack NonStream External + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack NonStream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020900
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack Stream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack Stream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020b00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack Stream External + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack Stream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020d00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack NonStream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020f00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack NonStream External + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack NonStream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030000
              + NODE + MXF OP1c SingleItem AlternatePackages + Identifiers for MXF: OP1c, SingleItem AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030100
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack Stream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack Stream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030300
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack Stream External + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack Stream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030500
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack NonStream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack NonStream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030700
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack NonStream External + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack NonStream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030900
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack Stream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack Stream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030b00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack Stream External + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack Stream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030d00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack NonStream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030f00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack NonStream External + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack NonStream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2xPlaylistItemsAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.02000000
              + NODE + MXF OP2x PlaylistItems AnyPackage + Identifiers for MXF: OP2x, PlaylistItems AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010000
              + NODE + MXF OP2a PlaylistItems SinglePackage + Identifiers for MXF: OP2a, PlaylistItems SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010100
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010110
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010300
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010310
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010500
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010510
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010700
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010710
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010900
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010910
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010b00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010b10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010d00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010d10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010f00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010f10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020000
              + NODE + MXF OP2b PlaylistItems GangedPackages + Identifiers for MXF: OP2b, PlaylistItems GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020100
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020110
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020300
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020310
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020500
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020510
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020700
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020710
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020900
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020910
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020b00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020b10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020d00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020d10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020f00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020f10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030000
              + NODE + MXF OP2c PlaylistItems AlternatePackages + Identifiers for MXF: OP2c, PlaylistItems AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030100
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030110
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030300
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030310
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030500
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030510
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030700
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030710
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030900
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030910
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030b00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030b10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030d00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030d10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030f00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030f10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3xEditItemsAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.03000000
              + NODE + MXF OP3x EditItems AnyPackage + Identifiers for MXF: OP3x, EditItems AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010000
              + NODE + MXF OP3a EditItems SinglePackage + Identifiers for MXF: OP3a, EditItems SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010100
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010110
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010300
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010310
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010500
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010510
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010700
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010710
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010900
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010910
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010b00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010b10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010d00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010d10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010f00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010f10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020000
              + NODE + MXF OP3b EditItems GangedPackages + Identifiers for MXF: OP3b, EditItems GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020100
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020110
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020300
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020310
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020500
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020510
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020700
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020710
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020900
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020910
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020b00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020b10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020d00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020d10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020f00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020f10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030000
              + NODE + MXF OP3c EditItems AlternatePackages + Identifiers for MXF: OP3c, EditItems AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030100
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030110
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030300
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030310
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030500
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030510
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030700
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030710
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030900
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030910
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030b00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030b10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030d00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030d10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030f00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030f10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtom1Track1SourceClip +
                urn:smpte:ul:060e2b34.04010102.0d010201.10000000
              + LEAF + MXF-OP Atom 1 Track 1 SourceClip + Identifier for MXF-OP Atom file, where the Material Package contains 1 Track that has 1 SourceClip + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtom1TrackNSourceClips +
                urn:smpte:ul:060e2b34.04010102.0d010201.10010000
              + LEAF + MXF-OP Atom 1 Track N SourceClips + Identifier for MXF-OP Atom file, where the Material Package contains 1 Track that has N>1 SourceClips + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtomNTracks1SourceClip +
                urn:smpte:ul:060e2b34.04010102.0d010201.10020000
              + LEAF + MXF-OP Atom N Tracks 1 SourceClip + Identifier for MXF-OP Atom file, where the Material Package contains N Tracks that has 1 SourceClip + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtomNTracksNSourceClips +
                urn:smpte:ul:060e2b34.04010102.0d010201.10030000
              + LEAF + MXF-OP Atom N Tracks N SourceClips + Identifier for MXF-OP Atom file, where the Material Package contains N Tracks that has N>1 SourceClips + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEssenceContainers +
                urn:smpte:ul:060e2b34.04010101.0d010300.00000000
              + NODE + MXF Essence Containers + Identifiers for MXF Essence Containers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEssenceContainersVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010301.00000000
              + NODE + MXF Essence Containers Version-1 + Identifiers for MXF Essence Containers Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericContainerDeprecated +
                urn:smpte:ul:060e2b34.04010101.0d010301.01000000
              + NODE + MXF Generic Container (Deprecated) + Identifiers for the MXF Generic Container - for experimental and heritage versions (deprecated for future use) + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericContainer +
                urn:smpte:ul:060e2b34.04010101.0d010301.02000000
              + NODE + MXF Generic Container + Identifiers for the MXF Generic Container + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED10Mappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010000
              + NODE + MXF-GC SMPTE D-10 Mappings + Identifiers for mappings using the MXF-GC SMPTE D-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED10625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010100
              + NODE + MXF-GC SMPTE D-10 625x50I 50Mbps + Identifiers for mapping SMPTE D-10 with 625x50I at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010101
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010102
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201017f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010200
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 50Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010201
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010202
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201027f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10625x50I40Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010300
              + NODE + MXF-GC SMPTE Type-D10 625x50I 40Mbps + Identifiers for mapping SMPTE Type-D10 with 625x50I at 40Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010301
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010302
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201037f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I40Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010400
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 40Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 40Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010401
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010402
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201047f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10625x50I30Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010500
              + NODE + MXF-GC SMPTE Type-D10 625x50I 30Mbps + Identifiers for mapping SMPTE Type-D10 with 625x50I at 30Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010501
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010502
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201057f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I30Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010600
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 30Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 30Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010601
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010602
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201067f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVDIFMappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020000
              + NODE + MXF-GC DV-DIF Mappings + Identifiers for mappings using the MXF-GC: DV-DIF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020100
              + NODE + MXF-GC IEC-DV 525x59.94I 25Mbps + Identifiers for mappings using the MXF-GC IEC-DV compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020101
              + LEAF + MXF-GC Frame-wrapped IEC-DV 525x59.94I 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020102
              + LEAF + MXF-GC Clip-wrapped IEC-DV 525x59.94I 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020200
              + NODE + MXF-GC IEC DV 625x50I 25Mbps + Identifiers for mappings using the MXF-GC IEC DV compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020201
              + LEAF + MXF-GC Frame-wrapped IEC-DV 625x50I 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020202
              + LEAF + MXF-GC Clip-wrapped IEC-DV 625x50I 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020300
              + NODE + MXF-GC IEC DV 525x59.94I 25Mbps SMPTE-322M + Identifiers for mappings using the MXF-GC IEC DV compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020301
              + LEAF + MXF-GC Frame-wrapped IEC-DV 525x59.94I 25Mbps SMPTE-322M + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020302
              + LEAF + MXF-GC Clip-wrapped IEC-DV 525x59.94I 25Mbps SMPTE-322M + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020400
              + NODE + MXF-GC IEC DV 625x50I 25Mbps SMPTE-322M + Identifiers for mappings using the MXF-GC IEC DV compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020401
              + LEAF + MXF-GC Frame-wrapped IEC-DV 625x50I 25Mbps SMPTE-322M + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020402
              + LEAF + MXF-GC Clip-wrapped IEC-DV 625x50I 25Mbps SMPTE-322M + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDVUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f00
              + NODE + MXF-GC IEC DV UndefinedSource + Identifiers for mappings using the MXF-GC IEC DV compression of an undefined source + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDVUndefinedSource25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f01
              + LEAF + MXF-GC Frame-wrapped IEC-DV UndefinedSource 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDVUndefinedSource25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f02
              + LEAF + MXF-GC Clip-wrapped IEC-DV UndefinedSource 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024000
              + NODE + MXF-GC DV-based 525x59.94I 25Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024001
              + LEAF + MXF-GC Frame-wrapped DV-based 525x59.94I 25Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024002
              + LEAF + MXF-GC Clip-wrapped DV-based 525x59.94I 25Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024100
              + NODE + MXF-GC DV-based 625x50I 25Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024101
              + LEAF + MXF-GC Frame-wrapped DV-based 625x50I 25Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024102
              + LEAF + MXF-GC Clip-wrapped DV-based 625x50I 25Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025000
              + NODE + MXF-GC DV-based 525x59.94I 50Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 525x59.94I source at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025001
              + LEAF + MXF-GC Frame-wrapped DV-based 525x59.94I 50Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025002
              + LEAF + MXF-GC Clip-wrapped DV-based 525x59.94I 50Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025100
              + NODE + MXF-GC DV-based 625x50I 50Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 625x50I source at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025101
              + LEAF + MXF-GC Frame-wrapped DV-based 625x50I 50Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025102
              + LEAF + MXF-GC Clip-wrapped DV-based 625x50I 50Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026000
              + NODE + MXF-GC DV-based 1080x59.94I 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 1080x59.94I source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026001
              + LEAF + MXF-GC Frame-wrapped DV-based 1080x59.94I 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 1080x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026002
              + LEAF + MXF-GC Clip-wrapped DV-based 1080x59.94I 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 1080x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026100
              + NODE + MXF-GC DV-based 1080x50I 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 1080x50I source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026101
              + LEAF + MXF-GC Frame-wrapped DV-based 1080x50I 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 1080x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026102
              + LEAF + MXF-GC Clip-wrapped DV-based 1080x50I 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 1080x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026200
              + NODE + MXF-GC DV-based 720x59.94P 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 720x59.94P source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026201
              + LEAF + MXF-GC Frame-wrapped DV-based 720x59.94P 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 720x59.94P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026202
              + LEAF + MXF-GC Clip-wrapped DV-based 720x59.94P 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 720x59.94P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026300
              + NODE + MXF-GC DV-based 720x50P 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 720x50P source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026301
              + LEAF + MXF-GC Frame-wrapped DV-based 720x50P 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 720x50P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026302
              + LEAF + MXF-GC Clip-wrapped DV-based 720x50P 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 720x50P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f00
              + NODE + MXF-GC DV-based UndefinedSource + Identifiers for mappings using the MXF-GC DV-based compression of an undefined source + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f01
              + LEAF + MXF-GC Frame-wrapped DV-based UndefinedSource + Identifier for MXF MXF-GC Frame-wrapped compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f02
              + LEAF + MXF-GC Clip-wrapped DV-based UndefinedSource + Identifier for MXF MXF-GC Clip-wrapped compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED11Mappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030000
              + NODE + MXF-GC SMPTE D-11 Mappings + Identifiers for MXF mappings of SMPTE 367M (Type D11) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED111080x2398PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030100
              + NODE + MXF-GC SMPTE D-11 1080x23.98PsF + Identifiers for MXF mapping of SMPTE D-11 for 1080x23.98PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030101
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030102
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203017f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x2398PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030200
              + NODE + MXF-GC SMPTE Type-D11 1080x23.98PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x23.98PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030201
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030202
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203027f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x25PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030300
              + NODE + MXF-GC SMPTE Type-D11 1080x25PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x25PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030301
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030302
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the extended template + SMPTEST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203037f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x2997PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030400
              + NODE + MXF-GC SMPTE Type-D11 1080x29.97PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x29.97PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030401
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030402
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203047f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x50I +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030500
              + NODE + MXF-GC SMPTE Type-D11 1080x50I + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x50I + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030501
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the defined template + SMPTEST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030502
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203057f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x5994I +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030600
              + NODE + MXF-GC SMPTE Type-D11 1080x59.94I + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x59.94I + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030601
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030602
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203067f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGES +
                urn:smpte:ul:060e2b34.04010102.0d010301.02040000
              + NODE + MXF-GC MPEG ES + Identifiers for MXF Mappings of MPEG Elementary Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c00
              + NODE + MXF-GC MPEG ES ProgStreamMap SID + Identifiers for MXF mappings of MPEG ES with a ProgStreamMap SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d00
              + NODE + MXF-GC MPEG ES PrivateStream-1 SID + Identifiers for MXF mappings of MPEG ES with a PrivateStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e00
              + NODE + MXF-GC MPEG ES PaddingStream SID + Identifiers for MXF mappings of MPEG ES with a PaddingStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f00
              + NODE + MXF-GC MPEG ES PrivateStream-2 SID + Identifiers for MXF mappings of MPEG ES with a PrivateStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044000
              + NODE + MXF-GC MPEG ES AudioStream-0 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204407f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044100
              + NODE + MXF-GC MPEG ES AudioStream-1 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204417f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044200
              + NODE + MXF-GC MPEG ES AudioStream-2 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204427f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044300
              + NODE + MXF-GC MPEG ES AudioStream-3 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204437f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044400
              + NODE + MXF-GC MPEG ES AudioStream-4 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204447f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044500
              + NODE + MXF-GC MPEG ES AudioStream-5 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204457f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044600
              + NODE + MXF-GC MPEG ES AudioStream-6 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204467f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044700
              + NODE + MXF-GC MPEG ES AudioStream-7 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204477f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044800
              + NODE + MXF-GC MPEG ES AudioStream-8 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044807
              + LEAF + MXF-GC Custom ClosedGOP-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Custom ClosedGOP-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204487f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044900
              + NODE + MXF-GC MPEG ES AudioStream-9 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204497f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a00
              + NODE + MXF-GC MPEG ES AudioStream-10 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b00
              + NODE + MXF-GC MPEG ES AudioStream-11 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c00
              + NODE + MXF-GC MPEG ES AudioStream-12 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d00
              + NODE + MXF-GC MPEG ES AudioStream-13 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e00
              + NODE + MXF-GC MPEG ES AudioStream-14 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f00
              + NODE + MXF-GC MPEG ES AudioStream-15 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f03
              + LEAF + MXF-GC Custom Stripe-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Custom Stripe-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045000
              + NODE + MXF-GC MPEG ES AudioStream-16 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-16 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204507f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045100
              + NODE + MXF-GC MPEG ES AudioStream-17 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-17 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204517f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045200
              + NODE + MXF-GC MPEG ES AudioStream-18 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-18 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204527f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045300
              + NODE + MXF-GC MPEG ES AudioStream-19 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-19 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204537f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045400
              + NODE + MXF-GC MPEG ES AudioStream-20 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-20 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204547f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045500
              + NODE + MXF-GC MPEG ES AudioStream-21 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-21 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204557f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045600
              + NODE + MXF-GC MPEG ES AudioStream-22 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-22 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204567f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045700
              + NODE + MXF-GC MPEG ES AudioStream-23 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-23 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204577f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045800
              + NODE + MXF-GC MPEG ES AudioStream-24 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-24 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204587f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045900
              + NODE + MXF-GC MPEG ES AudioStream-25 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-25 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204597f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a00
              + NODE + MXF-GC MPEG ES AudioStream-26 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-26 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b00
              + NODE + MXF-GC MPEG ES AudioStream-27 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-27 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c00
              + NODE + MXF-GC MPEG ES AudioStream-28 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-28 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d00
              + NODE + MXF-GC MPEG ES AudioStream-29 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-29 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e00
              + NODE + MXF-GC MPEG ES AudioStream-30 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-30 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f00
              + NODE + MXF-GC MPEG ES AudioStream-31 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-31 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046000
              + NODE + MXF-GC MPEG ES VideoStream-0 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204607f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046100
              + NODE + MXF-GC MPEG ES VideoStream-1 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204617f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046200
              + NODE + MXF-GC MPEG ES VideoStream-2 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204627f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046300
              + NODE + MXF-GC MPEG ES VideoStream-3 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204637f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046400
              + NODE + MXF-GC MPEG ES VideoStream-4 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204647f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046500
              + NODE + MXF-GC MPEG ES VideoStream-5 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204657f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046600
              + NODE + MXF-GC MPEG ES VideoStream-6 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204667f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046700
              + NODE + MXF-GC MPEG ES VideoStream-7 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204677f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046800
              + NODE + MXF-GC MPEG ES VideoStream-8 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204687f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046900
              + NODE + MXF-GC MPEG ES VideoStream-9 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204697f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a00
              + NODE + MXF-GC MPEG ES VideoStream-10 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b00
              + NODE + MXF-GC MPEG ES VideoStream-11 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c00
              + NODE + MXF-GC MPEG ES VideoStream-12 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d00
              + NODE + MXF-GC MPEG ES VideoStream-13 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e00
              + NODE + MXF-GC MPEG ES VideoStream-14 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f00
              + NODE + MXF-GC MPEG ES VideoStream-15 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047000
              + NODE + MXF-GC MPEG ES ECMStream SID + Identifiers for MXF mappings of MPEG ES with a ECMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204707f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047100
              + NODE + MXF-GC MPEG ES EMMStream SID + Identifiers for MXF mappings of MPEG ES with a EMMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204717f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047200
              + NODE + MXF-GC MPEG ES DSMCCStream SID + Identifiers for MXF mappings of MPEG ES with a DSMCCStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204727f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047300
              + NODE + MXF-GC MPEG ES 13522Stream SID + Identifiers for MXF mappings of MPEG ES with a 13522Stream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204737f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047400
              + NODE + MXF-GC MPEG ES ITURec222-A SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-A SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204747f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047500
              + NODE + MXF-GC MPEG ES ITURec222-B SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-B SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204757f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047600
              + NODE + MXF-GC MPEG ES ITURec222-C SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-C SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204767f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047700
              + NODE + MXF-GC MPEG ES ITURec222-D SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-D SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204777f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047800
              + NODE + MXF-GC MPEG ES ITURec222-E SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-E SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204787f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047900
              + NODE + MXF-GC MPEG ES AncStream SID + Identifiers for MXF mappings of MPEG ES with a AncStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204797f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a00
              + NODE + MXF-GC MPEG ES SLPackStream SID + Identifiers for MXF mappings of MPEG ES with a SLPackStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b00
              + NODE + MXF-GC MPEG ES FlexMuxStream SID + Identifiers for MXF mappings of MPEG ES with a FlexMuxStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f00
              + NODE + MXF-GC MPEG ES ProgStreamDir SID + Identifiers for MXF mappings of MPEG ES with a ProgStreamDir SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressedPictures +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050000
              + NODE + MXF-GC Uncompressed Pictures + Identifiers for MXF GC Uncompressed Picture Mappings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed525625SD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050100
              + NODE + MXF-GC Uncompressed 525+625 SD + Identifiers for MXF-GC Uncompressed Standard Definition video + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050101
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050102
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050103
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050105
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050106
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050107
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050109
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010b
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010d
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010e
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010f
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050111
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050112
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050113
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050115
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050116
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050117
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050119
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011b
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011d
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011e
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011f
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050121
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050122
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050123
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050125
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050126
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050127
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed1080HD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050200
              + NODE + MXF-GC Uncompressed 1080 HD + Identifiers for MXF-GC Uncompressed High Definition video using 1080 active lines + SMPTE ST 274 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050201
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050202
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050203
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050205
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050206
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050207
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050211
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050212
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050213
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050215
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050216
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050217
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050221
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050222
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050223
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050225
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050226
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050227
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050229
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205022a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205022b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050231
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050232
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050233
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050235
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050236
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050237
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050239
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205023a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205023b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050241
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050242
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050243
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050245
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050246
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050247
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050249
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205024a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205024b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050251
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050252
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050253
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050259
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205025a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205025b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050261
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050262
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050263
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed720HD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050300
              + NODE + MXF-GC Uncompressed 720 HD + Identifiers for MXF-GC Uncompressed High Definition video using 720 active lines + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050301
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050302
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050303
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050305
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050306
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050307
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050309
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205030a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205030b
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050311
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050312
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050313
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050315
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050316
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050317
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050319
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205031a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205031b
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050321
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050322
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050323
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050325
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050326
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050327
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressedNonStandardFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f00
              + NODE + MXF-GC Uncompressed Non-standard Format + Identifiers for non-standardised uncompressed video formats. Parameters to be determined from the appropriate Essence Descriptor + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f01
              + LEAF + MXF-GC Frame-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Frame-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f02
              + LEAF + MXF-GC Clip-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Clip-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f03
              + LEAF + MXF-GC Line-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Line-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAESBWFAudio +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060000
              + NODE + MXF-GC AES-BWF Audio + Identifiers for MXF-GC Mappings of AES3 and Broadcast Wave audio data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060100
              + LEAF + MXF-GC Frame-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Frame-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060200
              + LEAF + MXF-GC Clip-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Clip-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060300
              + LEAF + MXF-GC Frame-wrapped AES3 audio data + Identifier for MXF-GC, Frame-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060400
              + LEAF + MXF-GC Clip-wrapped AES3 audio data + Identifier for MXF-GC, Clip-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010105.0d010301.02060800
              + LEAF + MXF-GC Custom-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Custom-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010105.0d010301.02060900
              + LEAF + MXF-GC Custom-wrapped AES3 audio data + Identifier for MXF-GC, Custom-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCConstantDurationCustomWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02060a00
              + LEAF + MXF-GC Constant duration Custom-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Constant duration Custom-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCConstantDurationCustomWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02060b00
              + LEAF + MXF-GC Constant duration Custom-wrapped AES3 audio data + Identifier for MXF-GC, Constant duration Custom-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPES +
                urn:smpte:ul:060e2b34.04010102.0d010301.02070000
              + NODE + MXF-GC MPEG PES + Identifiers for Mappings using MPEG Packetised Elementary Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESProgStreamMap +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c00
              + NODE + MXF-GC MPEG PES ProgStreamMap + Identifiers for MXF mappings of MPEG PES with a ProgStreamMap SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c06
              + LEAF + MXF-GC CustomSplice MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d00
              + NODE + MXF-GC MPEG PES PrivateStream1 SID + Identifiers for MXF mappings of MPEG PES with a PrivateStream1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d06
              + LEAF + MXF-GC CustomSplice MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e00
              + NODE + MXF-GC MPEG PES PaddingStream SID + Identifiers for MXF mappings of MPEG PES with a PaddingStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e06
              + LEAF + MXF-GC CustomSplice MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f00
              + NODE + MXF-GC MPEG PES PrivateStream2 SID + Identifiers for MXF mappings of MPEG PES with a PrivateStream2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f06
              + LEAF + MXF-GC CustomSplice MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074000
              + NODE + MXF-GC MPEG PES AudioStream-0 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074006
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207407f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074100
              + NODE + MXF-GC MPEG PES AudioStream-1 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074106
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207417f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074200
              + NODE + MXF-GC MPEG PES AudioStream-2 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074206
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207427f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074300
              + NODE + MXF-GC MPEG PES AudioStream-3 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074306
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207437f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074400
              + NODE + MXF-GC MPEG PES AudioStream-4 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074406
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207447f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074500
              + NODE + MXF-GC MPEG PES AudioStream-5 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074506
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207457f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074600
              + NODE + MXF-GC MPEG PES AudioStream-6 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074606
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207467f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074700
              + NODE + MXF-GC MPEG PES AudioStream-7 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074706
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207477f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074800
              + NODE + MXF-GC MPEG PES AudioStream-8 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074806
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207487f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074900
              + NODE + MXF-GC MPEG PES AudioStream-9 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074906
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207497f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a00
              + NODE + MXF-GC MPEG PES AudioStream-10 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b00
              + NODE + MXF-GC MPEG PES AudioStream-11 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c00
              + NODE + MXF-GC MPEG PES AudioStream-12 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d00
              + NODE + MXF-GC MPEG PES AudioStream-13 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e00
              + NODE + MXF-GC MPEG PES AudioStream-14 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f00
              + NODE + MXF-GC MPEG PES AudioStream-15 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075000
              + NODE + MXF-GC MPEG PES AudioStream-16 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-16 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075006
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207507f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075100
              + NODE + MXF-GC MPEG PES AudioStream-17 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-17 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075106
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207517f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075200
              + NODE + MXF-GC MPEG PES AudioStream-18 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-18 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075206
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207527f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075300
              + NODE + MXF-GC MPEG PES AudioStream-19 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-19 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075306
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207537f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075400
              + NODE + MXF-GC MPEG PES AudioStream-20 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-20 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075406
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207547f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075500
              + NODE + MXF-GC MPEG PES AudioStream-21 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-21 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075506
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207557f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075600
              + NODE + MXF-GC MPEG PES AudioStream-22 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-22 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075606
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207567f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075700
              + NODE + MXF-GC MPEG PES AudioStream-23 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-23 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075706
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207577f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075800
              + NODE + MXF-GC MPEG PES AudioStream-24 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-24 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075806
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207587f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075900
              + NODE + MXF-GC MPEG PES AudioStream-25 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-25 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075906
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207597f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a00
              + NODE + MXF-GC MPEG PES AudioStream-26 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-26 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b00
              + NODE + MXF-GC MPEG PES AudioStream-27 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-27 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c00
              + NODE + MXF-GC MPEG PES AudioStream-28 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-28 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d00
              + NODE + MXF-GC MPEG PES AudioStream-29 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-29 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e00
              + NODE + MXF-GC MPEG PES AudioStream-30 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-30 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f00
              + NODE + MXF-GC MPEG PES AudioStream-31 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-31 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076000
              + NODE + MXF-GC MPEG PES VideoStream-0 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076006
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207607f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076100
              + NODE + MXF-GC MPEG PES VideoStream-1 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076106
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207617f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076200
              + NODE + MXF-GC MPEG PES VideoStream-2 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076206
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207627f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076300
              + NODE + MXF-GC MPEG PES VideoStream-3 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076306
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207637f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076400
              + NODE + MXF-GC MPEG PES VideoStream-4 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076406
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207647f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076500
              + NODE + MXF-GC MPEG PES VideoStream-5 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076506
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207657f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076600
              + NODE + MXF-GC MPEG PES VideoStream-6 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076606
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207667f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076700
              + NODE + MXF-GC MPEG PES VideoStream-7 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076706
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207677f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076800
              + NODE + MXF-GC MPEG PES VideoStream-8 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076806
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207687f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076900
              + NODE + MXF-GC MPEG PES VideoStream-9 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076906
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207697f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a00
              + NODE + MXF-GC MPEG PES VideoStream-10 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b00
              + NODE + MXF-GC MPEG PES VideoStream-11 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c00
              + NODE + MXF-GC MPEG PES VideoStream-12 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d00
              + NODE + MXF-GC MPEG PES VideoStream-13 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e00
              + NODE + MXF-GC MPEG PES VideoStream-14 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f00
              + NODE + MXF-GC MPEG PES VideoStream-15 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077000
              + NODE + MXF-GC MPEG PES ECMStream SID + Identifiers for MXF mappings of MPEG PES with a ECMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077006
              + LEAF + MXF-GC CustomSplice MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207707f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077100
              + NODE + MXF-GC MPEG PES EMMStream SID + Identifiers for MXF mappings of MPEG PES with a EMMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077106
              + LEAF + MXF-GC CustomSplice MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207717f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077200
              + NODE + MXF-GC MPEG PES DSMCCStream SID + Identifiers for MXF mappings of MPEG PES with a DSMCCStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077206
              + LEAF + MXF-GC CustomSplice MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207727f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077300
              + NODE + MXF-GC MPEG PES 13522Stream SID + Identifiers for MXF mappings of MPEG PES with a 13522Stream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077306
              + LEAF + MXF-GC CustomSplice MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207737f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077400
              + NODE + MXF-GC MPEG PES ITURec222-A SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-A SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077406
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207747f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077500
              + NODE + MXF-GC MPEG PES ITURec222-B SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-B SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077506
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207757f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077600
              + NODE + MXF-GC MPEG PES ITURec222-C SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-C SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077606
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207767f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077700
              + NODE + MXF-GC MPEG PES ITURec222-D SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-D SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077706
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207777f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077800
              + NODE + MXF-GC MPEG PES ITURec222-E SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-E SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077806
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207787f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077900
              + NODE + MXF-GC MPEG PES AncStream SID + Identifiers for MXF mappings of MPEG PES with a AncStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077906
              + LEAF + MXF-GC CustomSplice MPEG-PES AncStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207797f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a00
              + NODE + MXF-GC MPEG PES SLPackStream SID + Identifiers for MXF mappings of MPEG PES with a SLPackStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a06
              + LEAF + MXF-GC CustomSplice MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b00
              + NODE + MXF-GC MPEG PES FlexMuxStream SID + Identifiers for MXF mappings of MPEG PES with a FlexMuxStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b06
              + LEAF + MXF-GC CustomSplice MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f00
              + NODE + MXF-GC MPEG PES ProgStreamDir SID + Identifiers for MXF mappings of MPEG PES with a ProgStreamDir SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f06
              + LEAF + MXF-GC CustomSplice MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPS +
                urn:smpte:ul:060e2b34.04010102.0d010301.02080000
              + NODE + MXF-GC MPEG PS + Identifiers for MXF-GC Mappings using MPEG Programme Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPS13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGTS +
                urn:smpte:ul:060e2b34.04010102.0d010301.02090000
              + NODE + MXF-GC MPEG TS + Identifiers for MXF-GC Mappings using MPEG Transport Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTS13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCALawAudioMappings +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0000
              + NODE + MXF-GC A-law Audio Mappings + Identifiers for MXF-GC Mappings using A-law Compressed Audio + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0100
              + LEAF + MXF-GC Frame-wrapped A-law Audio + Identifier for MXF-GC, Frame-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0200
              + LEAF + MXF-GC Clip-wrapped A-law Audio + Identifier for MXF-GC, Clip-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0300
              + LEAF + MXF-GC Custom-wrapped A-law Audio + Identifier for MXF-GC, Custom-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCEncryptedDataMappings +
                urn:smpte:ul:060e2b34.04010107.0d010301.020b0000
              + NODE + MXF-GC Encrypted Data Mappings + Identifiers for MXF Encrypted Generic Container + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedEncryptedData +
                urn:smpte:ul:060e2b34.04010107.0d010301.020b0100
              + LEAF + MXF-GC Frame-wrapped Encrypted Data + Identifier for a MXF-GC, Frame wrapped generic container encrypted according to the DC28 specification + SMPTE ST 423 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCJPEG2000PictureMappings +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0000
              + NODE + MXF-GC JPEG-2000 Picture Mappings + Identifiers for MXF-GC Mappings using JPEG2000 compressed pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFUFrameWrappedUndefinedInterlacePictureElement +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0100
              + LEAF + MXF-GC FU Frame-wrapped Undefined Interlace Picture Element + Identifier for MXF-GC JPEG 2000 frame wrapped pictures (each frame comprising a single JPEG 2000 codestream) + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCnClipWrappedPictureElement +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0200
              + LEAF + MXF-GC Cn Clip-wrapped Picture Element + Identifier for MXF-GC JPEG 2000 clip wrapped picture sequence (containing a sequence of 1 or more JPEG2000 codestreams) + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCI1InterlacedFrame1FieldKLV +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0300
              + LEAF + MXF-GC I1 Interlaced Frame 1 field/KLV + Identifier for a MXF-GC I1 Interlaced Frame 1 field/KLV JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCI2InterlacedFrame2FieldsKLV +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0400
              + LEAF + MXF-GC I2 Interlaced Frame 2 fields/KLV + Identifier for a MXF-GC I2 Interlaced Frame 2 fields/KLV JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCF1FieldWrappedPictureElement +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0500
              + LEAF + MXF-GC F1 Field-Wrapped Picture Element + Identifier for a MXF-GC F1 Field-Wrapped Picture Element JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCP1FrameWrappedPictureElement +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0600
              + LEAF + MXF-GC P1 Frame-Wrapped Picture Element + Identifier for a MXF-GC P1 Frame-Wrapped Picture Element JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericVBIDataMappingUndefinedPayload +
                urn:smpte:ul:060e2b34.04010109.0d010301.020d0000
              + LEAF + MXF-GC Generic VBI Data Mapping Undefined Payload + Identifier for the MXF-GC frame wrapped Generic VBI data mapping with an undefined payload + SMPTE ST 436 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericANCDataMappingUndefinedPayload +
                urn:smpte:ul:060e2b34.04010109.0d010301.020e0000
              + LEAF + MXF-GC Generic ANC Data Mapping Undefined Payload + Identifier for the MXF-GC frame wrapped Generic Anc data mapping. Payload identification is defined within the Anc Packet data structure. + SMPTE ST 436 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f0000
              + NODE + MXF-GC AVC NAL Unit Stream + Identifier for a MXF-GC AVC NAL Unit Stream + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6000
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6001
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6002
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6003
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6005
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6006
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6007
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6008
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6009
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f607f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6100
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6101
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6102
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6103
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6105
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6106
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6107
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6108
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6109
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f617f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6200
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6201
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6202
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6203
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6205
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6206
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6207
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6208
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6209
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f627f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6300
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6301
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6302
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6303
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6305
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6306
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6307
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6308
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6309
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f637f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6400
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6401
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6402
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6403
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6405
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6406
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6407
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6408
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6409
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f647f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6500
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6501
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6502
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6503
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6505
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6506
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6507
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6508
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6509
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f657f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6600
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6601
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6602
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6603
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6605
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6606
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6607
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6608
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6609
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f667f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6700
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6701
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6702
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6703
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6705
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6706
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6707
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6708
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6709
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f677f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6800
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6801
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6802
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6803
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6805
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6806
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6807
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6808
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6809
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f687f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6900
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6901
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6902
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6903
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6905
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6906
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6907
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6908
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6909
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f697f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6a09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6b09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6c09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6d09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6e09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6f09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02100000
              + NODE + MXF-GC AVC Byte Stream + Identifier for a MXF-GC AVC Byte Stream + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106000
              + NODE + MXF-GC AVC Byte Stream With VideoStream-0 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106001
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106002
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106003
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106005
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106006
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106007
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106008
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106009
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210607f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106100
              + NODE + MXF-GC AVC Byte Stream With VideoStream-1 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106101
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106102
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106103
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106105
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106106
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106107
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106108
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106109
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210617f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106200
              + NODE + MXF-GC AVC Byte Stream With VideoStream-2 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106201
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106202
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106203
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106205
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106206
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106207
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106208
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106209
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210627f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106300
              + NODE + MXF-GC AVC Byte Stream With VideoStream-3 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106301
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106302
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106303
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106305
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106306
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106307
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106308
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106309
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210637f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106400
              + NODE + MXF-GC AVC Byte Stream With VideoStream-4 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106401
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106402
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106403
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106405
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106406
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106407
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106408
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106409
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210647f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106500
              + NODE + MXF-GC AVC Byte Stream With VideoStream-5 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106501
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106502
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106503
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106505
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106506
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106507
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106508
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106509
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210657f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106600
              + NODE + MXF-GC AVC Byte Stream With VideoStream-6 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106601
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106602
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106603
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106605
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106606
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106607
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106608
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106609
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210667f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106700
              + NODE + MXF-GC AVC Byte Stream With VideoStream-7 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106701
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106702
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106703
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106705
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106706
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106707
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106708
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106709
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210677f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106800
              + NODE + MXF-GC AVC Byte Stream With VideoStream-8 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106801
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106802
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106803
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106805
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106806
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106807
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106808
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106809
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210687f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106900
              + NODE + MXF-GC AVC Byte Stream With VideoStream-9 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106901
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106902
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106903
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106905
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106906
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106907
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106908
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106909
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210697f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-10 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106a09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-11 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106b09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-12 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106c09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-13 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106d09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-14 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106e09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-15 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106f09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110000
              + NODE + MXF-GC VC-3 Pictures + Essence Container Identifier for MXF-GC, VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110100
              + LEAF + MXF-GC Frame-wrapped VC-3 Pictures + Essence Container Identifier for MXF-GC, Frame-wrapped VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110200
              + LEAF + MXF-GC Clip-wrapped VC-3 Pictures + Essence Container Identifier for MXF-GC, Clip-wrapped VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120000
              + NODE + MXF-GC VC-1 Pictures + Essence Container Identifier for MXF-GC, VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120100
              + LEAF + MXF-GC Frame-wrapped VC-1 Pictures + Essence Container Identifier for MXF-GC, Frame-wrapped VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120200
              + LEAF + MXF-GC Clip-wrapped VC-1 Pictures + Essence Container Identifier for MXF-GC, Clip-wrapped VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericData +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130000
              + NODE + MXF-GC Generic Data + Essence Identifier Node for MXF-GC Generic Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericTextStreams +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130100
              + NODE + MXF-GC Generic Text Streams + Essence Identifier Node for MXF-GC Generic Text Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDCinemaTimedTextStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130101
              + LEAF + MXF-GC D-Cinema Timed Text Stream + Identifier for a MXF-GC D-Cinema Timed Text Stream + SMPTE ST 429-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericDataStreams +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02130200
              + NODE + MXF-GC Generic Data Streams + Essence Identifier Node for MXF-GC Generic Data Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDCinemaAuxDataEssence +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02130201
              + LEAF + MXF-GC D-Cinema Aux Data Essence + Identifier for a MXF-GC D-Cinema Aux Data Essence + SMPTE ST 429-14 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCTIFFEP +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140000
              + NODE + MXF-GC TIFF/EP + Essence Identifier Node for MXF-GC TIFF/EP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedTIFFEPProfile2Pictures +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140100
              + LEAF + MXF-GC Frame-wrapped TIFF/EP Profile 2 Pictures + Identifier for a MXF-GC Frame-wrapped TIFF/EP Profile 2 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedTIFFEPProfile2Pictures +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140200
              + LEAF + MXF-GC Clip-wrapped TIFF/EP Profile 2 Pictures + Identifier for a MXF-GC Clip-wrapped TIFF/EP Profile 2 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150000
              + NODE + MXF-GC VC-2 Pictures + Identifiers for MXF-GC mappings of VC-2 Pictures (as defined in SMPTE ST 2042-1) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150100
              + LEAF + MXF-GC Frame-wrapped VC-2 Pictures + Identifier for a MXF-GC Frame-wrapped VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150200
              + LEAF + MXF-GC Clip-wrapped VC-2 Pictures + Identifier for a MXF-GC Clip-wrapped VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160000
              + NODE + MXF-GC AAC ADIF + Identifies container for MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160100
              + LEAF + MXF-GC AAC ADIF Frame Wrapped + Identifies container for Frame Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160200
              + LEAF + MXF-GC AAC ADIF Clip Wrapped + Identifies container for Clip Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160300
              + LEAF + MXF-GC AAC ADIF Custom Wrapped + Identifies container for Custom Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170000
              + NODE + MXF-GC AAC ADTS + Identifies container for MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170100
              + LEAF + MXF-GC AAC ADTS Frame Wrapped + Identifies container for Frame Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170200
              + LEAF + MXF-GC AAC ADTS Clip Wrapped + Identifies container for Clip Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170300
              + LEAF + MXF-GC AAC ADTS Custom Wrapped + Identifies container for Custom Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180000
              + NODE + MXF-GC AAC LATM-LOAS + Identifies container for MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180100
              + LEAF + MXF-GC AAC LATM-LOAS Frame Wrapped + Identifies container for Frame Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180200
              + LEAF + MXF-GC AAC LATM-LOAS Clip Wrapped + Identifies container for Clip Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180300
              + LEAF + MXF-GC AAC LATM-LOAS Custom Wrapped + Identifies container for Custom Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190000
              + NODE + MXF-GC ACES Pictures + Identifiers for MXF-GC mappings of ACES SMPTE ST 2065-4 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190100
              + LEAF + MXF-GC Frame-wrapped ACES Pictures + Identifier for MXF-GC, Frame-wrapped ACES SMPTE ST 2065-4 images + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190200
              + LEAF + MXF-GC Clip-wrapped ACES Pictures + Identifier for MXF-GC, Clip-wrapped ACES SMPTE ST 2065-4 images + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDMCVTData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021a0000
              + NODE + MXF-GC DMCVT Data + Identifies MXF-GC DMCVT Data + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDMCVTData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021a0100
              + LEAF + MXF-GC Frame-Wrapped DMCVT Data + Identifies MXF-GC Frame-Wrapped DMCVT Data + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5EssenceContainerLabel +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0000
              + NODE + MXF-GC VC-5 Essence Container Label (SMPTE ST 2073-10) + Image Wrapping Type VC-5 Essence Container Label defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5FrameWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0100
              + LEAF + MXF-GC VC-5 Essence Container Label (Frame-Wrapped) + Indicates a VC-5 frame-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5ClipWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0200
              + LEAF + MXF-GC VC-5 Essence Container Label (Clip-Wrapped) + Indicates a VC-5 clip-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5CustomWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0300
              + LEAF + MXF-GC VC-5 Essence Container Label (Custom-Wrapped) + Indicates a VC-5 custom-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCEssenceContainerProResPicture +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021c0000
              + NODE + MXF-GC Essence Container ProRes Picture + Identifier for MXF-GC Essence Container ProRes Picture + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedEssenceContainerProResPicture +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021c0100
              + LEAF + MXF-GC Frame-Wrapped Essence Container ProRes Picture + Identifier for MXF-GC Frame-Wrapped Essence Container ProRes Picture + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericEssenceMappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.027f0000
              + NODE + MXF-GC Generic Essence Mappings + Identifiers for any combination of essence and metadata elements not otherwise covered under the MXF Generic Container node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericEssenceMultipleMappings +
                urn:smpte:ul:060e2b34.04010103.0d010301.027f0100
              + LEAF + MXF-GC Generic Essence Multiple Mappings + Identifier for MXF-GC multiple wrappings not otherwise covered under the MXF Generic Container node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamEssenceMappings +
                urn:smpte:ul:060e2b34.0401010a.0d010301.03000000
              + NODE + MXF Generic Stream Essence Mappings + Identifier for MXF Generic Stream Essence Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGSEBUT3264STLByteStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.03010000
              + LEAF + MXF-GS EBU-t3264 STL Byte Stream + Identifier for MXF-GS EBU-t3264 STL Byte Stream + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDescriptiveMetadataSchemes +
                urn:smpte:ul:060e2b34.04010101.0d010400.00000000
              + NODE + MXF Descriptive Metadata Schemes + Identifiers for MXF Descriptive Metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMSStructureVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.00000000
              + NODE + MXF-DMS Structure Version-1 + Identifiers for MXF-DMS Structure Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.01000000
              + NODE + MXF DMS-1 + Identifiers for MXF Descriptive Metadata Scheme 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010000
              + NODE + MXF DMS-1 Version-1 + Identifiers for MXF DMS-1 version 1 + Deprecated + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1Constrained +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010100
              + LEAF + MXF DMS-1 Version-1 constrained + The scheme is constrained to the defined version + SMPTE ST 380 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1Extended +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010200
              + LEAF + MXF DMS-1 Version-1 extended + The scheme has private, but backwards compatible, extensions to the defined version + SMPTE ST 380 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version2 +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020000
              + NODE + MXF DMS-1 Version-2 + Identifies the MXF DMS-1 version Version-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + DMS1FrameworkIdentifier +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020100
              + NODE + DMS-1 Framework Identifier + Identifies the DMS-1 Frameworks + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ProductionFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020101
              + LEAF + MXF DMS-1 Production Framework standard + Identifies the MXF DMS-1 Production Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ProductionFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020102
              + LEAF + MXF DMS-1 Production Framework extended + Identifies the MXF DMS-1 Production Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ClipFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020201
              + LEAF + MXF DMS-1 Clip Framework standard + Identifies the MXF DMS-1 Clip Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ClipFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020202
              + LEAF + MXF DMS-1 Clip Framework extended + Identifies the MXF DMS-1 Clip Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1SceneFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020301
              + LEAF + MXF DMS-1 Scene Framework standard + Identifies the MXF DMS-1 Scene Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1SceneFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020302
              + LEAF + MXF DMS-1 Scene Framework extended + Identifies the MXF DMS-1 Scene Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicDMScheme +
                urn:smpte:ul:060e2b34.04010107.0d010401.02000000
              + NODE + MXF Cryptographic DM Scheme + Identifies the MXF Cryptographic DMS + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicSchemeVersion1 +
                urn:smpte:ul:060e2b34.04010107.0d010401.02010000
              + NODE + MXF Cryptographic Scheme Version-1 + Identifies version 1 of the MXF Cryptographic DMS + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicFrameworkLabel +
                urn:smpte:ul:060e2b34.04010107.0d010401.02010100
              + LEAF + MXF Cryptographic Framework Label + Identifies the cryptographic framework for the DC28 MXF cryptographic DM scheme + SMPTE ST 423 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.04010101.0d010401.03000000
              + NODE + DMS AS-03 + Metadata for AS_03 Delivery Format + AMWA Application Specification AS-03 MXF Program Delivery + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedDMScheme +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04000000
              + NODE + MXF Text-Based DM Scheme + Identifies the MXF Text-Based DM Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedDMSchemeVersion1 +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04010000
              + NODE + MXF Text-Based DM Scheme Version-1 + Identifies the MXF Text-Based DM Scheme Version-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedFramework +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04010100
              + LEAF + MXF Text-Based Framework + Identifies the MXF Text-Based Framework + SMPTE RP 2057 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEIDRDMScheme +
                urn:smpte:ul:060e2b34.0401010d.0d010401.05000000
              + NODE + MXF EIDR DM Scheme + Identifies the MXF EIDR DM Scheme + SMPTE RP 2089 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEIDRDMSchemeVersion1 +
                urn:smpte:ul:060e2b34.0401010d.0d010401.05010000
              + LEAF + MXF EIDR DM Scheme Version 1 + Identifies the MXF EIDR DM Scheme Version 1 + SMPTE RP 2089 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamMetadataMappings +
                urn:smpte:ul:060e2b34.0401010a.0d010500.00000000
              + NODE + MXF Generic Stream Metadata Mappings + Identifies MXF Generic Stream Metadata Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamMetadataVersion1Mappings +
                urn:smpte:ul:060e2b34.0401010a.0d010501.00000000
              + NODE + MXF Generic Stream Metadata Version-1 Mappings + Identifies MXF Generic Stream Metadata Version-1 Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFApplicationMetadataSchemes +
                urn:smpte:ul:060e2b34.0401010d.0d010600.00000000
              + NODE + MXF Application Metadata Schemes + Identifies MXF Application Metadata Schemes + SMPTE ST 377-1 Amendment 2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + ApplicationMetadataSchemesVersion1 +
                urn:smpte:ul:060e2b34.0401010d.0d010601.00000000
              + NODE + Application Metadata Schemes Version 1 + Identifies Application Metadata Schemes Version 1 + SMPTE ST 377-1 Amendment 2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.04010101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.04010101.0d010701.0a010000
              + LEAF + DMS AS-10 Core + AS-10 Metadata Scheme + AMWA Application Specification AS-10 MXF for Production + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b010000
              + LEAF + DM_AS_11_Core + AS-11 core metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b020000
              + LEAF + DM_AS_11_Segmentation + AS-11 segmentation metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0c010000
              + LEAF + DMS_AS_12 + AS_12 metadata for advertising content identification + AMWA Application Specification AS-12 Commercial Delivery + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.04010101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + InterpretiveSoundEssence +
                urn:smpte:ul:060e2b34.04010101.0d010801.01000000
              + NODE + Sound Essence + SMPTE Label identifiers for Sound Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioChannel +
                urn:smpte:ul:060e2b34.04010101.0d010801.01010000
              + NODE + Audio Channel + SMPTE Label identifiers for Audio Channel interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionStudioSignalDataChannel +
                urn:smpte:ul:060e2b34.04010101.0d010801.01010100
              + LEAF + Audio Description Studio Signal Data Channel + Identifies an Audio Channel carrying a data signal in the format defined by BBC R&D White Paper WHP 198, intended to be used to control the fade and pan of the Main Program audio when it is being mixed with a Visually Impaired Narrative Audio Channel + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + SoundfieldGroup +
                urn:smpte:ul:060e2b34.04010101.0d010801.01020000
              + NODE + Soundfield Group + SMPTE Label identifiers for Soundfield Groups interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionStudioSignal +
                urn:smpte:ul:060e2b34.04010101.0d010801.01020100
              + LEAF + Audio Description Studio Signal + Identifies an Soundfield Group carrying a Visually Impaired Narrative Audio Channel and an Audio Description Studio Signal Data Channel - this is the two-channel Audio Description Studio Signal defined by BBC R&D White Paper WHP 198 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + GroupOfSoundfieldGroups +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030000
              + NODE + Group of Soundfield Groups + SMPTE Label identifiers for Groups of Soundfield Groups interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AlternativeProgram +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030100
              + LEAF + Alternative Program + Identifies an alternative, complete audio program + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionProgramMix +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030200
              + LEAF + Audio Description Program Mix + Identifies a mix of the program audio with audio description audio + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescription +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030300
              + LEAF + Audio Description + Identifies a verbal description of the visual scene + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + MusicAndEffects +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030400
              + LEAF + Music and Effects + Identifies a mix of the Main Program with no dialogue + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + UnusedAudio +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030500
              + LEAF + Unused Audio + Identifies audio that is not used. The audio could be present for backward compatibility with devices and systems that require a set number of channels, beyond what is actually required to carry the content. + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + SoundChannelLabeling +
                urn:smpte:ul:060e2b34.04010101.0d010801.02000000
              + NODE + Labels for Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + ConstrainedMultichannelAudioLabelingFramework +
                urn:smpte:ul:060e2b34.04010101.0d010801.02010000
              + LEAF + Constrained Multichannel Audio Labeling Framework + Identifies a specific application of the MXF Multichannel Audio Framework + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + ConstrainedMultichannelAudioLabelingFramework_with_Default_Audio_Layout_A +
                urn:smpte:ul:060e2b34.04010101.0d010801.02020000
              + LEAF + ConstrainedMultichannelAudioLabelingFramework with Default Audio Layout A + Identifies a specific application of the MXF Multichannel Audio Framework with default audio layout 'A' + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Default_Audio_Layout_A_without_MCA_Labeling +
                urn:smpte:ul:060e2b34.04010101.0d010801.02030000
              + LEAF + Default Audio Layout A without MCA Labeling + Identifies default audio layout A without use of the MXF Multichannel Audio Framework + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Specification_Identification_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03000000
              + NODE + Specification Identification (Work In Progress) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_0_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03010000
              + LEAF + Blocks File Format 0 WIP + Blocks File Format 0 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_1_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03020000
              + LEAF + Blocks File Format 1 WIP + Blocks File Format 1 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_2_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03030000
              + LEAF + Blocks File Format 2 WIP + Blocks File Format 2 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_5_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03060000
              + LEAF + Blocks File Format 5 WIP + Blocks File Format 5 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_6_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03070000
              + LEAF + Blocks File Format 6 WIP + Blocks File Format 6 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_7_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03080000
              + LEAF + Blocks File Format 7 WIP + Blocks File Format 7 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_10_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03090000
              + LEAF + Blocks File Format 10 WIP + Blocks File Format 10 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_9_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.030a0000
              + LEAF + Blocks File Format 9 WIP + Blocks File Format 9 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_11_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.030b0000
              + LEAF + Blocks File Format 11 WIP + Blocks File Format 11 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + MetadataPayloadSchemes +
                urn:smpte:ul:060e2b34.04010101.0d010801.04000000
              + NODE + Metadata Payload Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + DM_XML_Document +
                urn:smpte:ul:060e2b34.04010101.0d010801.04010000
              + LEAF + DM_XML_Document + Descriptive Metadata XML Document in Header Metadata + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Specification_Identification +
                urn:smpte:ul:060e2b34.04010101.0d010801.05000000
              + NODE + Specification Identification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_0 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05010000
              + LEAF + Blocks File Format 0 + Blocks File Format 0 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_2 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05030000
              + LEAF + Blocks File Format 2 + Blocks File Format 2 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_7 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05080000
              + LEAF + Blocks File Format 7 + Blocks File Format 7 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + OperationalPatternApplication +
                urn:smpte:ul:060e2b34.04010105.0d011200.00000000
              + NODE + Operational Pattern Application + Identifies AAF Operational Patterns + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFOPStructureVersion +
                urn:smpte:ul:060e2b34.04010105.0d011201.00000000
              + NODE + AAF OP-Structure Version + Identifies AAF OP Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFEditProtocol +
                urn:smpte:ul:060e2b34.04010105.0d011201.01000000
              + LEAF + AAF Edit Protocol + Identifies the AAF Edit Protocol + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFUnconstrainedOP +
                urn:smpte:ul:060e2b34.04010109.0d011201.02000000
              + LEAF + AAF Unconstrained OP + Identifies an AAF file that is unconstrained by an OP (i.e. that one needs a general decoder) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainers +
                urn:smpte:ul:060e2b34.04010106.0d011300.00000000
              + NODE + AAF Containers + Identifies AAF Containers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainersVersion1 +
                urn:smpte:ul:060e2b34.04010106.0d011301.00000000
              + NODE + AAF Containers Version-1 + Identifies AAF Containers, version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainersV1Physical +
                urn:smpte:ul:060e2b34.04010106.0d011301.01000000
              + NODE + AAF Containers V1-Physical + Identifies AAF Physical Containers, version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFRIFFContainer +
                urn:smpte:ul:060e2b34.04010106.0d011301.01010000
              + NODE + AAF RIFF Container + Identifies any essence elements stored according to the RIFF specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + RIFFWAVEContainer +
                urn:smpte:ul:060e2b34.04010106.0d011301.01010100
              + LEAF + RIFF WAVE Container + Identifier for audio essence elements stored according to the RIFF WAVE specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020000
              + NODE + AAF JFIF Container + Identifies any AAF essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFFrameWrappedJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020100
              + LEAF + AAF Frame-wrapped JFIF Container + Identifier for AAF frame wrapped essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFClipWrappedJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020200
              + LEAF + AAF Clip-wrapped JFIF Container + Identifier for AAF clip wrapped essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFNITFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01030000
              + NODE + AAF NITF Container + Identifies any AAF essence elements stored according to Mil STD 2500B or similar + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFClipWrappedNITFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01030200
              + LEAF + AAF Clip-wrapped NITF Container + Identifier for AAF clip-wrapped essence elements stored according to Mil STD 2500B or similar + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFAIFFAIFCContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01040000
              + NODE + AAF AIFF-AIFC Container + Identifies any AAF essence elements stored according to the AIFC specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFAIFFAIFCAudioContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01040100
              + LEAF + AAF AIFF-AIFC Audio Container + Identifier for AAF AIFF or AIFC Audio essence elements stored according to the AIFC specification + false +
              + + Labels + http://www.ebu.ch/metadata/smpte/class13/label + EBU_UER +
                urn:smpte:ul:060e2b34.04010103.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Labels + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/label + ebucore +
                urn:smpte:ul:060e2b34.04010101.0d020100.00000000
              + LEAF + ebucore + The EBUCore is the EBU core set of metadata so-called the Dublin Core for media + EBU Tech 3293 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.04010103.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.04010105.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.04010101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_DescriptiveSchemes +
                urn:smpte:ul:060e2b34.04010101.0d040101.01000000
              + NODE + APP Descriptive Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_DescriptiveSchemesVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d040101.01010000
              + NODE + APP Descriptive Schemes Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_PreservationDescriptiveScheme +
                urn:smpte:ul:060e2b34.04010101.0d040101.01010100
              + LEAF + APP Preservation Descriptive Scheme + APP Preservation Descriptive Scheme + BBC Research White Paper WHP 167 D3 Preservation File Format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.04010106.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.04010107.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.0401010a.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.0401010a.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.0401010c.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.0401010c.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.0401010b.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.0401010c.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.04010101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12/as11 + AS_11_UKDPP +
                urn:smpte:ul:060e2b34.04010101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.04010101.0d0c0101.01000000
              + LEAF + DM_AS_11_UKDPP + AS-11 UK DPP metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.0401010c.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.04010101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.04010103.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.04010103.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.04010103.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.04010103.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.04010103.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.04010103.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.04010104.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.04010104.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.04010105.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.04010105.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.04010105.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.04010107.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.04010107.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.04010108.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.0401010a.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.0401010a.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.0401010a.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.0401010a.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.0401010c.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.0401010c.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.0401010c.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.0401010c.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.0401010c.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.0401010c.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.0401010c.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.0401010c.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.0401010d.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.0401010d.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.0401010d.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.0401010d.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.0401010d.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.04010101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/src/test/resources/registers/ponzu/Types.xml b/src/test/resources/registers/ponzu/Types.xml new file mode 100644 index 0000000..0a4422a --- /dev/null +++ b/src/test/resources/registers/ponzu/Types.xml @@ -0,0 +1,10201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Types + http://www.smpte-ra.org/reg/2003/2012 + TYPES +
                urn:smpte:ul:060e2b34.01040101.00000000.00000000
              + NODE + TYPES + Register of Basic Data Types and Composed Types + AAF + SMPTE ST 2003 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BasicTypes +
                urn:smpte:ul:060e2b34.01040101.01000000.00000000
              + NODE + Basic Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IntegerTypes +
                urn:smpte:ul:060e2b34.01040101.01010000.00000000
              + NODE + Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8 +
                urn:smpte:ul:060e2b34.01040101.01010100.00000000
              + LEAF + UInt8 + AAF + false + UnknownContext + Integer + 1 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt16 +
                urn:smpte:ul:060e2b34.01040101.01010200.00000000
              + LEAF + UInt16 + AAF + false + UnknownContext + Integer + 2 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32 +
                urn:smpte:ul:060e2b34.01040101.01010300.00000000
              + LEAF + UInt32 + AAF + false + UnknownContext + Integer + 4 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt64 +
                urn:smpte:ul:060e2b34.01040101.01010400.00000000
              + LEAF + UInt64 + AAF + false + UnknownContext + Integer + 8 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int8 +
                urn:smpte:ul:060e2b34.01040101.01010500.00000000
              + LEAF + Int8 + AAF + false + UnknownContext + Integer + 1 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int16 +
                urn:smpte:ul:060e2b34.01040101.01010600.00000000
              + LEAF + Int16 + AAF + false + UnknownContext + Integer + 2 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int32 +
                urn:smpte:ul:060e2b34.01040101.01010700.00000000
              + LEAF + Int32 + AAF + false + UnknownContext + Integer + 4 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int64 +
                urn:smpte:ul:060e2b34.01040101.01010800.00000000
              + LEAF + Int64 + AAF + false + UnknownContext + Integer + 8 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.01012000.00000000
              + NODE + Renamed Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PositionType +
                urn:smpte:ul:060e2b34.01040101.01012001.00000000
              + LEAF + PositionType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LengthType +
                urn:smpte:ul:060e2b34.01040101.01012002.00000000
              + LEAF + LengthType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + JPEGTableIDType +
                urn:smpte:ul:060e2b34.01040101.01012003.00000000
              + LEAF + JPEGTableIDType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagType +
                urn:smpte:ul:060e2b34.01040101.01012004.00000000
              + LEAF + LocalTagType + MXF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S309M +
                urn:smpte:ul:060e2b34.01040101.01012005.00000000
              + LEAF + S309M + ASPA + big endian + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S12M +
                urn:smpte:ul:060e2b34.01040101.01012006.00000000
              + LEAF + S12M + ASPA + big endian + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MicroTime197001010000 +
                urn:smpte:ul:060e2b34.01040101.01012007.00000000
              + LEAF + MicroTime197001010000 + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Fix32Dec3 +
                urn:smpte:ul:060e2b34.01040101.01012008.00000000
              + LEAF + Fix32Dec3 + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CompactAdIDIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01012009.00000000
              + LEAF + Compact Ad-ID Identifier Type + Compact Ad-ID Identifier Type + AdID + SMPTE RP 2092-1 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PhaseFrameType +
                urn:smpte:ul:060e2b34.01040101.01012300.00000000
              + LEAF + PhaseFrameType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NumberTypes +
                urn:smpte:ul:060e2b34.01040101.01020000.00000000
              + NODE + Number Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Float +
                urn:smpte:ul:060e2b34.01040101.01020100.00000000
              + LEAF + float + ASPA + false + UnknownContext + Integer + 4 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InseparableBytestrings +
                urn:smpte:ul:060e2b34.01040101.01030000.00000000
              + NODE + Inseparable Bytestrings + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUID +
                urn:smpte:ul:060e2b34.01040101.01030100.00000000
              + LEAF + AUID + AAF + MXF was UL harmonized to AAF AUID + false + UnknownContext + Record + + + Data1 + Data1 + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + AAF + false + + + Data2 + Data2 + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF + false + + + Data3 + Data3 + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF + false + + + Data4 + Data4 + urn:smpte:ul:060e2b34.01040101.04010800.00000000 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageIDType +
                urn:smpte:ul:060e2b34.01040101.01030200.00000000
              + LEAF + PackageIDType + AAF~MobIDType + AAF was MobIDType harmonized to MXF PackageIDType + false + UnknownContext + Record + + + SMPTELabel + SMPTELabel + urn:smpte:ul:060e2b34.01040101.04010200.00000000 + AAF~SMPTELabel + false + + + Length + Length + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~length + false + + + InstanceHigh + InstanceHigh + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceHigh + false + + + InstanceMid + InstanceMid + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceMid + false + + + InstanceLow + InstanceLow + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceLow + false + + + Material + Material + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + AAF~material + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UUID +
                urn:smpte:ul:060e2b34.01040101.01030300.00000000
              + LEAF + UUID + AAF[1.2:] + false + UnknownContext + FixedArray + 16 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BooleanTypes +
                urn:smpte:ul:060e2b34.01040101.01040000.00000000
              + NODE + Boolean Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Boolean +
                urn:smpte:ul:060e2b34.01040101.01040100.00000000
              + LEAF + Boolean + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + False + False + 0 + AAF + false + + + True + True + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CharacterTypes +
                urn:smpte:ul:060e2b34.01040101.01100000.00000000
              + NODE + Character Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Character +
                urn:smpte:ul:060e2b34.01040101.01100100.00000000
              + LEAF + Character + A single "UTF-16" code unit + AAF + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF16String +
                urn:smpte:ul:060e2b34.01040101.01100200.00000000
              + LEAF + UTF16String + AAF~String + MXF was UTF16 AAF was String harmonized to UTF16String + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Char +
                urn:smpte:ul:060e2b34.01040101.01100300.00000000
              + LEAF + Char + A single "US-ASCII" code unit + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO7 +
                urn:smpte:ul:060e2b34.01040101.01100400.00000000
              + LEAF + ISO7 + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100300.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF8Character +
                urn:smpte:ul:060e2b34.01040101.01100500.00000000
              + LEAF + UTF8Character + A single "UTF-8" code unit + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF8String +
                urn:smpte:ul:060e2b34.01040101.01100600.00000000
              + LEAF + UTF8String + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100500.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedCharacterTypes +
                urn:smpte:ul:060e2b34.01040101.01200000.00000000
              + NODE + Renamed Character Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO3166_Country +
                urn:smpte:ul:060e2b34.01040101.01200100.00000000
              + LEAF + ISO3166_Country + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO3166_Region +
                urn:smpte:ul:060e2b34.01040101.01200200.00000000
              + LEAF + ISO3166_Region + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO639 +
                urn:smpte:ul:060e2b34.01040101.01200300.00000000
              + LEAF + ISO639 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO639_Ext +
                urn:smpte:ul:060e2b34.01040101.01200400.00000000
              + LEAF + ISO639_Ext + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RFC2152 +
                urn:smpte:ul:060e2b34.01040101.01200500.00000000
              + LEAF + RFC2152 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTCmilliseconds +
                urn:smpte:ul:060e2b34.01040101.01200600.00000000
              + LEAF + UTCmilliseconds + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalDOINameType +
                urn:smpte:ul:060e2b34.01040101.01200700.00000000
              + LEAF + Canonical DOI Name Type + DOI name as specified in Section 4.1 of ISO/IEC 26324 + EIDR + SMPTE RP 2079 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalEIDRIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01200800.00000000
              + LEAF + Canonical EIDR Identifier Type + Canonical EIDR Identifier as specified in RP 2079 + EIDR + SMPTE RP 2079 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01200700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalFullAdIDIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01200900.00000000
              + LEAF + Canonical Full Ad-ID Identifier Type + Canonical Full Ad-ID Identifier Type + AdID + SMPTE RP 2092-1 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedOtherTypes +
                urn:smpte:ul:060e2b34.01040101.01300000.00000000
              + NODE + Renamed Other Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UMID +
                urn:smpte:ul:060e2b34.01040101.01300100.00000000
              + LEAF + UMID + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01030200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedTypes +
                urn:smpte:ul:060e2b34.01040101.02000000.00000000
              + NODE + Enumerated Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.02010000.00000000
              + NODE + Enumerated Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedUInt8Types +
                urn:smpte:ul:060e2b34.01040101.02010100.00000000
              + NODE + Enumerated UInt8 Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ProductReleaseType +
                urn:smpte:ul:060e2b34.01040101.02010101.00000000
              + LEAF + ProductReleaseType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VersionUnknown + VersionUnknown + 0 + AAF + false + + + VersionReleased + VersionReleased + 1 + AAF + false + + + VersionDebug + VersionDebug + 2 + AAF + false + + + VersionPatched + VersionPatched + 3 + AAF + false + + + VersionBeta + VersionBeta + 4 + AAF + false + + + VersionPrivateBuild + VersionPrivateBuild + 5 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TapeFormatType +
                urn:smpte:ul:060e2b34.01040101.02010102.00000000
              + LEAF + TapeFormatType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeFormatNull + TapeFormatNull + 0 + AAF + false + + + BetacamFormat + BetacamFormat + 1 + AAF + false + + + BetacamSPFormat + BetacamSPFormat + 2 + AAF + false + + + VHSFormat + VHSFormat + 3 + AAF + false + + + SVHSFormat + SVHSFormat + 4 + AAF + false + + + EightMillimeterFormat + EightMillimeterFormat + 5 + AAF~8mmFormat + false + + + Hi8Format + Hi8Format + 6 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VideoSignalType +
                urn:smpte:ul:060e2b34.01040101.02010103.00000000
              + LEAF + VideoSignalType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VideoSignalNull + VideoSignalNull + 0 + AAF + false + + + NTSCSignal + NTSCSignal + 1 + AAF + false + + + PALSignal + PALSignal + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TapeCaseType +
                urn:smpte:ul:060e2b34.01040101.02010104.00000000
              + LEAF + TapeCaseType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeCaseNull + TapeCaseNull + 0 + AAF + false + + + ThreeFourthInchVideoTape + ThreeFourthInchVideoTape + 1 + AAF + false + + + VHSVideoTape + VHSVideoTape + 2 + AAF + false + + + EightMillimeterVideoTape + EightMillimeterVideoTape + 3 + AAF~8mmVideoTape + false + + + BetacamVideoTape + BetacamVideoTape + 4 + AAF + false + + + CompactCassette + CompactCassette + 5 + AAF + false + + + DATCartridge + DATCartridge + 6 + AAF + false + + + NagraAudioTape + NagraAudioTape + 7 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorSitingType +
                urn:smpte:ul:060e2b34.01040101.02010105.00000000
              + LEAF + ColorSitingType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + CoSiting + CoSiting + 0 + AAF + false + + + HorizontalMidpoint + HorizontalMidpoint + 1 + AAF + false + + + ThreeTap + ThreeTap + 2 + AAF + false + + + Quincunx + Quincunx + 3 + AAF[1.12:] + false + + + Rec601 + Rec601 + 4 + AAF[1.12:] + false + + + LineAlternating + LineAlternating + 5 + AAF[1.12:] + false + + + VerticalMidpoint + VerticalMidpoint + 6 + AAF[1.12:] + false + + + UnknownSiting + UnknownSiting + 255 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EditHintType +
                urn:smpte:ul:060e2b34.01040101.02010106.00000000
              + LEAF + EditHintType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + NoEditHint + NoEditHint + 0 + AAF + false + + + Proportional + Proportional + 1 + AAF + false + + + RelativeLeft + RelativeLeft + 2 + AAF + false + + + RelativeRight + RelativeRight + 3 + AAF + false + + + RelativeFixed + RelativeFixed + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FadeType +
                urn:smpte:ul:060e2b34.01040101.02010107.00000000
              + LEAF + FadeType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FadeNone + FadeNone + 0 + AAF + false + + + FadeLinearAmp + FadeLinearAmp + 1 + AAF + false + + + FadeLinearPower + FadeLinearPower + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LayoutType +
                urn:smpte:ul:060e2b34.01040101.02010108.00000000
              + LEAF + LayoutType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FullFrame + FullFrame + 0 + AAF + false + + + SeparateFields + SeparateFields + 1 + AAF + false + + + OneField + OneField + 2 + AAF + false + + + MixedFields + MixedFields + 3 + AAF + false + + + SegmentedFrame + SegmentedFrame + 4 + AAF[1.02:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TCSource +
                urn:smpte:ul:060e2b34.01040101.02010109.00000000
              + LEAF + TCSource + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TimecodeLTC + TimecodeLTC + 0 + AAF + false + + + TimecodeVITC + TimecodeVITC + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PulldownDirectionType +
                urn:smpte:ul:060e2b34.01040101.0201010a.00000000
              + LEAF + PulldownDirectionType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeToFilmSpeed + TapeToFilmSpeed + 0 + AAF + false + + + FilmToTapeSpeed + FilmToTapeSpeed + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PulldownKindType +
                urn:smpte:ul:060e2b34.01040101.0201010b.00000000
              + LEAF + PulldownKindType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TwoThreePD + TwoThreePD + 0 + AAF + false + + + PALPD + PALPD + 1 + AAF + false + + + OneToOneNTSC + OneToOneNTSC + 2 + AAF + false + + + OneToOnePAL + OneToOnePAL + 3 + AAF[1.02:] + false + + + VideoTapNTSC + VideoTapNTSC + 4 + AAF[1.12:] + false + + + OneToOneHDSixty + OneToOneHDSixty + 5 + AAF[1.12:] + false + + + TwentyFourToSixtyPD + TwentyFourToSixtyPD + 6 + AAF[1.12:] + false + + + TwoToOnePD + TwoToOnePD + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EdgeType +
                urn:smpte:ul:060e2b34.01040101.0201010c.00000000
              + LEAF + EdgeType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + EtNull + EtNull + 0 + AAF + false + + + EtKeycode + EtKeycode + 1 + AAF + false + + + EtEdgenum4 + EtEdgenum4 + 2 + AAF + false + + + EtEdgenum5 + EtEdgenum5 + 3 + AAF + false + + + EtHeaderSize + EtHeaderSize + 8 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FilmType +
                urn:smpte:ul:060e2b34.01040101.0201010d.00000000
              + LEAF + FilmType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FtNull + FtNull + 0 + AAF + false + + + Ft35MM + Ft35MM + 1 + AAF + false + + + Ft16MM + Ft16MM + 2 + AAF + false + + + Ft8MM + Ft8MM + 3 + AAF + false + + + Ft65MM + Ft65MM + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBAComponentKind +
                urn:smpte:ul:060e2b34.01040101.0201010e.00000000
              + LEAF + RGBAComponentKind + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + CompNone + CompNone + 48 + AAF + false + + + CompAlpha + CompAlpha + 65 + AAF + false + + + CompBlue + CompBlue + 66 + AAF + false + + + CompFill + CompFill + 70 + AAF + false + + + CompGreen + CompGreen + 71 + AAF + false + + + CompPalette + CompPalette + 80 + AAF + false + + + CompRed + CompRed + 82 + AAF + false + + + CompNull + CompNull + 0 + AAF[1.02:] + false + + + CompRedLSBs + CompRedLSBs + 114 + AAF[1.02:] + false + + + CompGreenLSBs + CompGreenLSBs + 103 + AAF[1.02:] + false + + + CompBlueLSBs + CompBlueLSBs + 98 + AAF[1.02:] + false + + + CompAlphaLSBs + CompAlphaLSBs + 97 + AAF[1.02:] + false + + + CompColorDifferenceU + CompColorDifferenceU + 85 + AAF[1.02:] + false + + + CompColorDifferenceV + CompColorDifferenceV + 86 + AAF[1.02:] + false + + + CompComposite + CompComposite + 87 + AAF[1.02:] + false + + + CompNonCoSitedLuma + CompNonCoSitedLuma + 88 + AAF[1.02:] + false + + + CompLuma + CompLuma + 89 + AAF[1.02:] + false + + + CompDepth + CompDepth + 90 + AAF[1.02:] + false + + + CompColorDifferenceULSBs + CompColorDifferenceULSBs + 117 + AAF[1.02:] + false + + + CompColorDifferenceVLSBs + CompColorDifferenceVLSBs + 118 + AAF[1.02:] + false + + + CompCompositeLSBs + CompCompositeLSBs + 119 + AAF[1.02:] + false + + + CompNonCoSitedLumaLSBs + CompNonCoSitedLumaLSBs + 120 + AAF[1.02:] + false + + + CompLumaLSBs + CompLumaLSBs + 121 + AAF[1.02:] + false + + + CompDepthLSBs + CompDepthLSBs + 122 + AAF[1.02:] + false + + + CompColorX + CompColorX + 216 + AAF[1.02:] + false + + + CompColorY + CompColorY + 217 + AAF[1.02:] + false + + + CompColorZ + CompColorZ + 218 + AAF[1.02:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ReferenceType +
                urn:smpte:ul:060e2b34.01040101.0201010f.00000000
              + LEAF + ReferenceType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + RefLimitMinimum + RefLimitMinimum + 0 + AAF + false + + + RefLimitMaximum + RefLimitMaximum + 1 + AAF + false + + + RefMinimum + RefMinimum + 2 + AAF + false + + + RefMaximum + RefMaximum + 3 + AAF + false + + + RefEnumvalue + RefEnumvalue + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AlphaTransparencyType +
                urn:smpte:ul:060e2b34.01040101.02010120.00000000
              + LEAF + AlphaTransparencyType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + MinValueTransparent + MinValueTransparent + 0 + AAF + false + + + MaxValueTransparent + MaxValueTransparent + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FieldNumber +
                urn:smpte:ul:060e2b34.01040101.02010121.00000000
              + LEAF + FieldNumber + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + UnspecifiedField + UnspecifiedField + 0 + AAF + false + + + FieldOne + FieldOne + 1 + AAF + false + + + FieldTwo + FieldTwo + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ElectroSpatialFormulation +
                urn:smpte:ul:060e2b34.01040101.02010122.00000000
              + LEAF + ElectroSpatialFormulation + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ElectroSpatialFormulation_Default + ElectroSpatialFormulation_Default + 0 + AAF[1.1:] + false + + + ElectroSpatialFormulation_TwoChannelMode + ElectroSpatialFormulation_TwoChannelMode + 1 + AAF[1.1:] + false + + + ElectroSpatialFormulation_SingleChannelMode + ElectroSpatialFormulation_SingleChannelMode + 2 + AAF[1.1:] + false + + + ElectroSpatialFormulation_PrimarySecondaryMode + ElectroSpatialFormulation_PrimarySecondaryMode + 3 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereophonicMode + ElectroSpatialFormulation_StereophonicMode + 4 + AAF[1.1:] + false + + + ElectroSpatialFormulation_SingleChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_SingleChannelDoubleSamplingFrequencyMode + 7 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereoLeftChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_StereoLeftChannelDoubleSamplingFrequencyMode + 8 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereoRightChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_StereoRightChannelDoubleSamplingFrequencyMode + 9 + AAF[1.1:] + false + + + ElectroSpatialFormulation_MultiChannelMode + ElectroSpatialFormulation_MultiChannelMode + 15 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EmphasisType +
                urn:smpte:ul:060e2b34.01040101.02010123.00000000
              + LEAF + EmphasisType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Emphasis_Unknown + Emphasis_Unknown + 0 + AAF[1.12:] + false + + + Emphasis_Reserved0 + Emphasis_Reserved0 + 1 + AAF[1.12:] + false + + + Emphasis_Reserved1 + Emphasis_Reserved1 + 2 + AAF[1.12:] + false + + + Emphasis_Reserved2 + Emphasis_Reserved2 + 3 + AAF[1.12:] + false + + + Emphasis_None + Emphasis_None + 4 + AAF[1.12:] + false + + + Emphasis_Reserved3 + Emphasis_Reserved3 + 5 + AAF[1.12:] + false + + + Emphasis_15and50 + Emphasis_15and50 + 6 + AAF[1.12:] + false + + + Emphasis_ITU + Emphasis_ITU + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AuxBitsModeType +
                urn:smpte:ul:060e2b34.01040101.02010124.00000000
              + LEAF + AuxBitsModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AuxBitsMode_NotDefined + AuxBitsMode_NotDefined + 0 + AAF[1.12:] + false + + + AuxBitsMode_MainAudioSampleData + AuxBitsMode_MainAudioSampleData + 1 + AAF[1.12:] + false + + + AuxBitsMode_SingleCoordinationSignal + AuxBitsMode_SingleCoordinationSignal + 2 + AAF[1.12:] + false + + + AuxBitsMode_UserDefined + AuxBitsMode_UserDefined + 3 + AAF[1.12:] + false + + + AuxBitsMode_Reserved0 + AuxBitsMode_Reserved0 + 4 + AAF[1.12:] + false + + + AuxBitsMode_Reserved1 + AuxBitsMode_Reserved1 + 5 + AAF[1.12:] + false + + + AuxBitsMode_Reserved2 + AuxBitsMode_Reserved2 + 6 + AAF[1.12:] + false + + + AuxBitsMode_Reserved3 + AuxBitsMode_Reserved3 + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ChannelStatusModeType +
                urn:smpte:ul:060e2b34.01040101.02010125.00000000
              + LEAF + ChannelStatusModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ChannelStatusMode_None + ChannelStatusMode_None + 0 + AAF[1.12:] + false + + + ChannelStatusMode_Minimum + ChannelStatusMode_Minimum + 1 + AAF[1.12:] + false + + + ChannelStatusMode_Standard + ChannelStatusMode_Standard + 2 + AAF[1.12:] + false + + + ChannelStatusMode_Fixed + ChannelStatusMode_Fixed + 3 + AAF[1.12:] + false + + + ChannelStatusMode_Stream + ChannelStatusMode_Stream + 4 + AAF[1.12:] + false + + + ChannelStatusMode_Essence + ChannelStatusMode_Essence + 5 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UserDataModeType +
                urn:smpte:ul:060e2b34.01040101.02010126.00000000
              + LEAF + UserDataModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + UserDataMode_NotDefined + UserDataMode_NotDefined + 0 + AAF[1.12:] + false + + + UserDataMode_192BitBlockStructure + UserDataMode_192BitBlockStructure + 1 + AAF[1.12:] + false + + + UserDataMode_AES18 + UserDataMode_AES18 + 2 + AAF[1.12:] + false + + + UserDataMode_UserDefined + UserDataMode_UserDefined + 3 + AAF[1.12:] + false + + + UserDataMode_IEC + UserDataMode_IEC + 4 + AAF[1.12:] + false + + + UserDataMode_Metadata + UserDataMode_Metadata + 5 + AAF[1.12:] + false + + + UserDataMode_Reserved0 + UserDataMode_Reserved0 + 6 + AAF[1.12:] + false + + + UserDataMode_Reserved1 + UserDataMode_Reserved1 + 7 + AAF[1.12:] + false + + + UserDataMode_Reserved2 + UserDataMode_Reserved2 + 8 + AAF[1.12:] + false + + + UserDataMode_Reserved3 + UserDataMode_Reserved3 + 9 + AAF[1.12:] + false + + + UserDataMode_Reserved4 + UserDataMode_Reserved4 + 10 + AAF[1.12:] + false + + + UserDataMode_Reserved5 + UserDataMode_Reserved5 + 11 + AAF[1.12:] + false + + + UserDataMode_Reserved6 + UserDataMode_Reserved6 + 12 + AAF[1.12:] + false + + + UserDataMode_Reserved7 + UserDataMode_Reserved7 + 13 + AAF[1.12:] + false + + + UserDataMode_Reserved8 + UserDataMode_Reserved8 + 14 + AAF[1.12:] + false + + + UserDataMode_Reserved9 + UserDataMode_Reserved9 + 15 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SignalStandardType +
                urn:smpte:ul:060e2b34.01040101.02010127.00000000
              + LEAF + SignalStandardType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + SignalStandard_None + SignalStandard_None + 0 + AAF[1.1:] + false + + + SignalStandard_ITU601 + SignalStandard_ITU601 + 1 + AAF[1.1:] + false + + + SignalStandard_ITU1358 + SignalStandard_ITU1358 + 2 + AAF[1.1:] + false + + + SignalStandard_SMPTE347M + SignalStandard_SMPTE347M + 3 + AAF[1.1:] + false + + + SignalStandard_SMPTE274M + SignalStandard_SMPTE274M + 4 + AAF[1.1:] + false + + + SignalStandard_SMPTE296M + SignalStandard_SMPTE296M + 5 + AAF[1.1:] + false + + + SignalStandard_SMPTE349M + SignalStandard_SMPTE349M + 6 + AAF[1.1:] + false + + + SignalStandard_SMPTE428_1 + SignalStandard_SMPTE428_1 + 7 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ScanningDirectionType +
                urn:smpte:ul:060e2b34.01040101.02010128.00000000
              + LEAF + ScanningDirectionType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ScanningDirection_LeftToRightTopToBottom + ScanningDirection_LeftToRightTopToBottom + 0 + AAF[1.1:] + false + + + ScanningDirection_RightToLeftTopToBottom + ScanningDirection_RightToLeftTopToBottom + 1 + AAF[1.1:] + false + + + ScanningDirection_LeftToRightBottomToTop + ScanningDirection_LeftToRightBottomToTop + 2 + AAF[1.1:] + false + + + ScanningDirection_RightToLeftBottomToTop + ScanningDirection_RightToLeftBottomToTop + 3 + AAF[1.1:] + false + + + ScanningDirection_TopToBottomLeftToRight + ScanningDirection_TopToBottomLeftToRight + 4 + AAF[1.1:] + false + + + ScanningDirection_TopToBottomRightToLeft + ScanningDirection_TopToBottomRightToLeft + 5 + AAF[1.1:] + false + + + ScanningDirection_BottomToTopLeftToRight + ScanningDirection_BottomToTopLeftToRight + 6 + AAF[1.1:] + false + + + ScanningDirection_BottomToTopRightToLeft + ScanningDirection_BottomToTopRightToLeft + 7 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ToleranceModeType +
                urn:smpte:ul:060e2b34.01040101.02010129.00000000
              + LEAF + ToleranceModeType + ASPA AAF[1.2:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ToleranceMode_Estimated + Estimated + 0 + ASPA AAF[1.2:] + false + + + ToleranceMode_Assumed + Assumed + 1 + ASPA AAF[1.2:] + false + + + ToleranceMode_Precise + Precise + 2 + ASPA AAF[1.2:] + false + + + ToleranceMode_Window + Window + 3 + ASPA AAF[1.2:] + false + + + ToleranceMode_Interpolated + Interpolated + 4 + ASPA AAF[1.2:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContentScanningType +
                urn:smpte:ul:060e2b34.01040101.0201012a.00000000
              + LEAF + ContentScanningType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ContentScanning_NotKnown + ContentScanning_NotKnown + 0 + AAF[1.12:] + false + + + ContentScanning_Progressive + ContentScanning_Progressive + 1 + AAF[1.12:] + false + + + ContentScanning_Interlace + ContentScanning_Interlace + 2 + AAF[1.12:] + false + + + ContentScanning_Mixed + ContentScanning_Mixed + 3 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TitleAlignmentType +
                urn:smpte:ul:060e2b34.01040101.0201012b.00000000
              + LEAF + TitleAlignmentType + AAF[1.14:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TitleAlignment_Left + TitleAlignment_Left + 0 + AAF[1.14:] + false + + + TitleAlignment_Center + TitleAlignment_Center + 1 + AAF[1.14:] + false + + + TitleAlignment_Right + TitleAlignment_Right + 2 + AAF[1.14:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AVCContentScanningType +
                urn:smpte:ul:060e2b34.01040101.0201012c.00000000
              + LEAF + AVCContentScanningType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AVCContentScanning_NotKnown + AVCContentScanning_NotKnown + 0 + AAF[1.12:] + false + + + AVCContentScanning_ProgressiveFramePicture + AVCContentScanning_ProgressiveFramePicture + 1 + AAF[1.12:] + false + + + AVCContentScanning_InterlaceFieldPicture + AVCContentScanning_InterlaceFieldPicture + 2 + AAF[1.12:] + false + + + AVCContentScanning_InterlaceFramePicture + AVCContentScanning_InterlaceFramePicture + 3 + AAF[1.12:] + false + + + AVCContentScanning_Interlace_FrameFieldPicture + AVCContentScanning_Interlace_FrameFieldPicture + 4 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MPEG4VisualCodedContentType +
                urn:smpte:ul:060e2b34.01040101.0201012d.00000000
              + LEAF + MPEG4VisualCodedContentType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + MPEG4VisualCodedContent_Unknown + MPEG4VisualCodedContent_Unknown + 0 + false + + + MPEG4VisualCodedContent_Progressive + MPEG4VisualCodedContent_Progressive + 1 + false + + + MPEG4VisualCodedContent_Interlaced + MPEG4VisualCodedContent_Interlaced + 2 + false + + + MPEG4VisualCodedContent_Mixed + MPEG4VisualCodedContent_Mixed + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VC2WaveletType +
                urn:smpte:ul:060e2b34.01040101.0201012e.00000000
              + LEAF + VC2 Wavelet Type + MXF + SMPTE ST 2042-4 + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VC2Wavelet_DeslauriersDubuc_9_7 + Deslauriers-Dubuc (9,7) + 0 + false + + + VC2Wavelet_LeGall_5_3 + LeGall (5,3) + 1 + false + + + VC2Wavelet_DeslauriersDubuc_13_7 + Deslauriers-Dubuc (13,7) + 2 + false + + + VC2Wavelet_HaarNoShift + Haar with no shift + 3 + false + + + VC2Wavelet_HaarSingleShiftPerLevel + Haar with single shift per level + 4 + false + + + VC2Wavelet_FidelityFilter + Fidelity filter + 5 + false + + + VC2Wavelet_Daubechies_9_7_IntegerApproximation + Daubechies (9,7) integer approximation + 6 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorCorrectionFilterWheelSettingType +
                urn:smpte:ul:060e2b34.01040101.0201012f.00000000
              + LEAF + ColorCorrectionFilterWheelSettingType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ColorCorrectionFilterWheelSetting_CrossEffectFilter + ColorCorrectionFilterWheelSetting_CrossEffectFilter + 0 + false + + + ColorCorrectionFilterWheelSetting_CCFilter3200K + ColorCorrectionFilterWheelSetting_CCFilter3200K + 1 + false + + + ColorCorrectionFilterWheelSetting_CCFilter4300K + ColorCorrectionFilterWheelSetting_CCFilter4300K + 2 + false + + + ColorCorrectionFilterWheelSetting_CCFilter6300K + ColorCorrectionFilterWheelSetting_CCFilter6300K + 3 + false + + + ColorCorrectionFilterWheelSetting_CCFilter5600K + ColorCorrectionFilterWheelSetting_CCFilter5600K + 4 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ImageSensorReadoutModeType +
                urn:smpte:ul:060e2b34.01040101.02010130.00000000
              + LEAF + ImageSensorReadoutModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ImageSensorReadoutMode_InterlacedField + ImageSensorReadoutMode_InterlacedField + 0 + false + + + ImageSensorReadoutMode_InterlacedFrame + ImageSensorReadoutMode_InterlacedFrame + 1 + false + + + ImageSensorReadoutMode_ProgressiveFrame + ImageSensorReadoutMode_ProgressiveFrame + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoWhiteBalanceModeType +
                urn:smpte:ul:060e2b34.01040101.02010131.00000000
              + LEAF + AutoWhiteBalanceModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AutoWhiteBalanceMode_PresetWhiteBalanceSetup + AutoWhiteBalanceMode_PresetWhiteBalanceSetup + 0 + false + + + AutoWhiteBalanceMode_AutomaticWhiteBalanceSetup + AutoWhiteBalanceMode_AutomaticWhiteBalanceSetup + 1 + false + + + AutoWhiteBalanceMode_HoldWhiteBalanceSetup + AutoWhiteBalanceMode_HoldWhiteBalanceSetup + 2 + false + + + AutoWhiteBalanceMode_OnePushWhiteBalanceSetup + AutoWhiteBalanceMode_OnePushWhiteBalanceSetup + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoFocusSensingAreaSettingType +
                urn:smpte:ul:060e2b34.01040101.02010132.00000000
              + LEAF + AutoFocusSensingAreaSettingType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AutoFocusSensingAreaSetting_ManualFocusMode + AutoFocusSensingAreaSetting_ManualFocusMode + 0 + false + + + AutoFocusSensingAreaSetting_CenterSensitiveAutoFocusMode + AutoFocusSensingAreaSetting_CenterSensitiveAutoFocusMode + 1 + false + + + AutoFocusSensingAreaSetting_FullScreenSensingAutoFocusMode + AutoFocusSensingAreaSetting_FullScreenSensingAutoFocusMode + 2 + false + + + AutoFocusSensingAreaSetting_MultiSpotSensingAutoFocusMode + AutoFocusSensingAreaSetting_MultiSpotSensingAutoFocusMode + 3 + false + + + AutoFocusSensingAreaSetting_SingleSpotSensingAutoFocusMode + AutoFocusSensingAreaSetting_SingleSpotSensingAutoFocusMode + 4 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedUInt16Types +
                urn:smpte:ul:060e2b34.01040101.02010200.00000000
              + NODE + Enumerated UInt16 Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFByteOrderType +
                urn:smpte:ul:060e2b34.01040101.02010201.00000000
              + LEAF + TIFFByteOrderType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFByteOrder_BigEndian + TIFFByteOrder_BigEndian + 7777 + false + + + TIFFByteOrder_LittleEndian + TIFFByteOrder_LittleEndian + 7373 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFCompressionKindType +
                urn:smpte:ul:060e2b34.01040101.02010202.00000000
              + LEAF + TIFFCompressionKindType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFCompressionKind_NoCompression + TIFFCompressionKind_NoCompression + 1 + false + + + TIFFCompressionKind_LosslessHuffmanJPEG + TIFFCompressionKind_LosslessHuffmanJPEG + 7 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFPhotometricInterpretationKindType +
                urn:smpte:ul:060e2b34.01040101.02010203.00000000
              + LEAF + TIFFPhotometricInterpretationKindType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFPhotometricInterpretationKind_ColorFilterArray + TIFFPhotometricInterpretationKind_ColorFilterArray + 32803 + false + + + TIFFPhotometricInterpretationKind_LinearRaw + TIFFPhotometricInterpretationKind_LinearRaw + 34892 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedInseparableBytestrings +
                urn:smpte:ul:060e2b34.01040101.02020000.00000000
              + NODE + Enumerated Inseparable Bytestrings + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtendibleEnumerations +
                urn:smpte:ul:060e2b34.01040101.02020100.00000000
              + NODE + Extendible Enumerations + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationCategoryType +
                urn:smpte:ul:060e2b34.01040101.02020101.00000000
              + LEAF + OperationCategoryType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010100 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TransferCharacteristicType +
                urn:smpte:ul:060e2b34.01040101.02020102.00000000
              + LEAF + TransferCharacteristicType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.04010101.01010000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01020000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01030000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01040000 + AAF + true + + + urn:smpte:ul:060e2b34.04010106.04010101.01050000 + AAF + false + + + urn:smpte:ul:060e2b34.04010106.04010101.01060000 + AAF + false + + + urn:smpte:ul:060e2b34.04010108.04010101.01070000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.01080000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010e.04010101.01090000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010a0000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010b0000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginCategoryType +
                urn:smpte:ul:060e2b34.01040101.02020103.00000000
              + LEAF + PluginCategoryType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010200 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010300 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010400 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UsageType +
                urn:smpte:ul:060e2b34.01040101.02020104.00000000
              + LEAF + UsageType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010500 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010600 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010700 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010800 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010900 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorPrimariesType +
                urn:smpte:ul:060e2b34.01040101.02020105.00000000
              + LEAF + ColorPrimariesType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010106.04010101.03010000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.03020000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.03030000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03040000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03050000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03060000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03070000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03080000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodingEquationsType +
                urn:smpte:ul:060e2b34.01040101.02020106.00000000
              + LEAF + CodingEquationsType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.04010101.02010000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.04010101.02020000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.02030000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02040000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02050000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02060000 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoExposureModeType +
                urn:smpte:ul:060e2b34.01040101.02020107.00000000
              + LEAF + AutoExposureModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.0401010b.05100101.01010000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01020000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01030000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01040000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01050000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedISO7 +
                urn:smpte:ul:060e2b34.01040101.02020200.00000000
              + NODE + EnumeratedISO7 + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContractTypeCode +
                urn:smpte:ul:060e2b34.01040101.02020201.00000000
              + LEAF + ContractTypeCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContractLineCode +
                urn:smpte:ul:060e2b34.01040101.02020202.00000000
              + LEAF + ContractLineCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PublishingMediumCode +
                urn:smpte:ul:060e2b34.01040101.02020203.00000000
              + LEAF + PublishingMediumCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + JobFunctionCode +
                urn:smpte:ul:060e2b34.01040101.02020204.00000000
              + LEAF + JobFunctionCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ObjectTypeCode +
                urn:smpte:ul:060e2b34.01040101.02020205.00000000
              + LEAF + ObjectTypeCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GammaCode +
                urn:smpte:ul:060e2b34.01040101.02020206.00000000
              + LEAF + GammaCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SamplingStructureCode +
                urn:smpte:ul:060e2b34.01040101.02020207.00000000
              + LEAF + SamplingStructureCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RecordTypes +
                urn:smpte:ul:060e2b34.01040101.03000000.00000000
              + NODE + Record Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleRecordTypes +
                urn:smpte:ul:060e2b34.01040101.03010000.00000000
              + NODE + Simple Record Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Rational +
                urn:smpte:ul:060e2b34.01040101.03010100.00000000
              + LEAF + Rational + AAF + false + UnknownContext + Record + + + Numerator + Numerator + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + AAF + false + + + Denominator + Denominator + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ProductVersionType +
                urn:smpte:ul:060e2b34.01040101.03010200.00000000
              + LEAF + ProductVersionType + AAF~ProductVersion + false + UnknownContext + Record + + + Major + Major + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~major + false + + + Minor + Minor + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~minor + false + + + Tertiary + Tertiary + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~tertiary + false + + + PatchLevel + PatchLevel + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~patchLevel + false + + + BuildType + BuildType + urn:smpte:ul:060e2b34.01040101.02010101.00000000 + AAF~type + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VersionType +
                urn:smpte:ul:060e2b34.01040101.03010300.00000000
              + LEAF + VersionType + AAF + false + UnknownContext + Record + + + VersionMajor + VersionMajor + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + AAF~major + false + + + VersionMinor + VersionMinor + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + AAF~minor + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBAComponent +
                urn:smpte:ul:060e2b34.01040101.03010400.00000000
              + LEAF + RGBAComponent + AAF + false + UnknownContext + Record + + + Code + Code + urn:smpte:ul:060e2b34.01040101.0201010e.00000000 + AAF + false + + + ComponentSize + ComponentSize + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~Size + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DateStruct +
                urn:smpte:ul:060e2b34.01040101.03010500.00000000
              + LEAF + DateStruct + AAF + false + UnknownContext + Record + + + Year + Year + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + AAF~year + false + + + Month + Month + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~month + false + + + Day + Day + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~day + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TimeStruct +
                urn:smpte:ul:060e2b34.01040101.03010600.00000000
              + LEAF + TimeStruct + AAF + false + UnknownContext + Record + + + Hour + Hour + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~hour + false + + + Minute + Minute + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~minute + false + + + Second + Second + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~second + false + + + Fraction + Fraction + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~fraction + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TimeStamp +
                urn:smpte:ul:060e2b34.01040101.03010700.00000000
              + LEAF + TimeStamp + AAF + false + UnknownContext + Record + + + Date + Date + urn:smpte:ul:060e2b34.01040101.03010500.00000000 + AAF~date + false + + + Time + Time + urn:smpte:ul:060e2b34.01040101.03010600.00000000 + AAF~time + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagEntry +
                urn:smpte:ul:060e2b34.01040101.03010800.00000000
              + LEAF + LocalTagEntry + MXF + false + UnknownContext + Record + + + LocalTag + LocalTag + urn:smpte:ul:060e2b34.01040101.01012004.00000000 + MXF + false + + + UID + UID + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + MXF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicCoordinate +
                urn:smpte:ul:060e2b34.01040101.03010900.00000000
              + LEAF + GeographicCoordinate + ASPA + false + UnknownContext + Record + + + Latitude + Latitude + urn:smpte:ul:060e2b34.01040101.01012008.00000000 + ASPA + false + + + Longitude + Longitude + urn:smpte:ul:060e2b34.01040101.01012008.00000000 + ASPA + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + J2KComponentSizing +
                urn:smpte:ul:060e2b34.01040101.03010a00.00000000
              + LEAF + J2K Component Sizing + false + UnknownContext + Record + + + Ssiz + Ssiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + + XRSiz + XRSiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + + YRSiz + YRSiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ASMLEKeyIDMapping +
                urn:smpte:ul:060e2b34.01040101.03010b00.00000000
              + LEAF + ASMLEKeyIDMapping + false + UnknownContext + Record + + + ASMLEKeyID + ASM LE Key ID + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + false + + + ASMKey + ASM Key + urn:smpte:ul:060e2b34.01040101.04011100.00000000 + false + + + ASMExpireTime + ASM Expire Time + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + false + + + ASMAttributeData + ASM Attribute Data + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorPrimary +
                urn:smpte:ul:060e2b34.01040101.03010c00.00000000
              + LEAF + Color Primary + SMPTE ST 2067-21 + false + UnknownContext + Record + + + X + X Color Coordinate + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + false + + + Y + Y Color Coordinate + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Multiples +
                urn:smpte:ul:060e2b34.01040101.04000000.00000000
              + NODE + Multiples + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleArrays +
                urn:smpte:ul:060e2b34.01040101.04010000.00000000
              + NODE + Simple Arrays + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array +
                urn:smpte:ul:060e2b34.01040101.04010100.00000000
              + LEAF + UInt8Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array12 +
                urn:smpte:ul:060e2b34.01040101.04010200.00000000
              + LEAF + UInt8Array12 + AAF + false + UnknownContext + FixedArray + 12 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int32Array +
                urn:smpte:ul:060e2b34.01040101.04010300.00000000
              + LEAF + Int32Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int64Array +
                urn:smpte:ul:060e2b34.01040101.04010400.00000000
              + LEAF + Int64Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF16StringArray +
                urn:smpte:ul:060e2b34.01040101.04010500.00000000
              + LEAF + UTF16StringArray + AAF~StringArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01100100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUIDArray +
                urn:smpte:ul:060e2b34.01040101.04010600.00000000
              + LEAF + AUIDArray + AAF ASPA + MXF was ULArray harmonized to AAF AUIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PositionArray +
                urn:smpte:ul:060e2b34.01040101.04010700.00000000
              + LEAF + PositionArray + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array8 +
                urn:smpte:ul:060e2b34.01040101.04010800.00000000
              + LEAF + UInt8Array8 + AAF + false + UnknownContext + FixedArray + 8 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32Array +
                urn:smpte:ul:060e2b34.01040101.04010900.00000000
              + LEAF + UInt32Array + AAF[1.1:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ChannelStatusModeArray +
                urn:smpte:ul:060e2b34.01040101.04010a00.00000000
              + LEAF + ChannelStatusModeArray + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.02010125.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UserDataModeArray +
                urn:smpte:ul:060e2b34.01040101.04010b00.00000000
              + LEAF + UserDataModeArray + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.02010126.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array6 +
                urn:smpte:ul:060e2b34.01040101.04010c00.00000000
              + LEAF + UInt8Array6 + false + UnknownContext + FixedArray + 6 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array3 +
                urn:smpte:ul:060e2b34.01040101.04010d00.00000000
              + LEAF + UInt8Array3 + false + UnknownContext + FixedArray + 3 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S352M +
                urn:smpte:ul:060e2b34.01040101.04010e00.00000000
              + LEAF + S352M + false + UnknownContext + FixedArray + 4 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S330M_Spatial +
                urn:smpte:ul:060e2b34.01040101.04010f00.00000000
              + LEAF + S330M_Spatial + false + UnknownContext + FixedArray + 12 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtUMID +
                urn:smpte:ul:060e2b34.01040101.04011000.00000000
              + LEAF + ExtUMID + false + UnknownContext + FixedArray + 32 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array16 +
                urn:smpte:ul:060e2b34.01040101.04011100.00000000
              + LEAF + UInt8Array16 + false + UnknownContext + FixedArray + 16 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt16Array +
                urn:smpte:ul:060e2b34.01040101.04011200.00000000
              + LEAF + UInt16Array + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VC2WaveletArray +
                urn:smpte:ul:060e2b34.01040101.04011400.00000000
              + LEAF + VC2 Wavelet Array + MXF + SMPTE ST 2042-4 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.0201012e.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UUIDArray +
                urn:smpte:ul:060e2b34.01040101.04011500.00000000
              + LEAF + UUIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RecordArrays +
                urn:smpte:ul:060e2b34.01040101.04020000.00000000
              + NODE + Record Arrays + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBALayout +
                urn:smpte:ul:060e2b34.01040101.04020100.00000000
              + LEAF + RGBALayout + AAF + false + UnknownContext + FixedArray + 8 + urn:smpte:ul:060e2b34.01040101.03010400.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RationalArray +
                urn:smpte:ul:060e2b34.01040101.04020200.00000000
              + LEAF + RationalArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicCoordinateArray +
                urn:smpte:ul:060e2b34.01040101.04020300.00000000
              + LEAF + GeographicCoordinateArray + ASPA + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S309MArray +
                urn:smpte:ul:060e2b34.01040101.04020400.00000000
              + LEAF + S309MArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UMIDArray +
                urn:smpte:ul:060e2b34.01040101.04020500.00000000
              + LEAF + UMIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtUMIDArray +
                urn:smpte:ul:060e2b34.01040101.04020600.00000000
              + LEAF + ExtUMIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04011000.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IndexEntryArray +
                urn:smpte:ul:060e2b34.01040101.04020700.00000000
              + LEAF + IndexEntryArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04100600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DeltaEntryArray +
                urn:smpte:ul:060e2b34.01040101.04020800.00000000
              + LEAF + DeltaEntryArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04100a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + J2KComponentSizingArray +
                urn:smpte:ul:060e2b34.01040101.04020900.00000000
              + LEAF + J2KComponentSizingArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ThreeColorPrimaries +
                urn:smpte:ul:060e2b34.01040101.04020a00.00000000
              + LEAF + Three-Color Primaries + SMPTE ST 2067-21 + false + UnknownContext + FixedArray + 3 + urn:smpte:ul:060e2b34.01040101.03010c00.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleSets +
                urn:smpte:ul:060e2b34.01040101.04030000.00000000
              + NODE + Simple Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUIDSet +
                urn:smpte:ul:060e2b34.01040101.04030100.00000000
              + LEAF + AUIDSet + AAF[1.12:] + MXF was ULBatch harmonized to AAF AUIDSet + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32Set +
                urn:smpte:ul:060e2b34.01040101.04030200.00000000
              + LEAF + UInt32Set + AAF[1.12:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagEntryBatch +
                urn:smpte:ul:060e2b34.01040101.04030300.00000000
              + LEAF + LocalTagEntryBatch + MXF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.03010800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ASMLEKeyIDMappingSet +
                urn:smpte:ul:060e2b34.01040101.04030400.00000000
              + LEAF + ASMLEKeyIDMappingSet + MXF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.03010b00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BytestreamTypes +
                urn:smpte:ul:060e2b34.01040101.04100000.00000000
              + NODE + Bytestream Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataValue +
                urn:smpte:ul:060e2b34.01040101.04100100.00000000
              + LEAF + DataValue + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Stream +
                urn:smpte:ul:060e2b34.01040101.04100200.00000000
              + LEAF + Stream + AAF + false + UnknownContext + Stream +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Indirect +
                urn:smpte:ul:060e2b34.01040101.04100300.00000000
              + LEAF + Indirect + AAF + false + UnknownContext + Indirect +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Opaque +
                urn:smpte:ul:060e2b34.01040101.04100400.00000000
              + LEAF + Opaque + AAF + false + UnknownContext + Opaque +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IndexEntry +
                urn:smpte:ul:060e2b34.01040101.04100600.00000000
              + LEAF + IndexEntry + MXF + SMPTE ST 377-1 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S312M +
                urn:smpte:ul:060e2b34.01040101.04100700.00000000
              + LEAF + S312M + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S327M +
                urn:smpte:ul:060e2b34.01040101.04100800.00000000
              + LEAF + S327M + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BiM +
                urn:smpte:ul:060e2b34.01040101.04100900.00000000
              + LEAF + BiM + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DeltaEntry +
                urn:smpte:ul:060e2b34.01040101.04100a00.00000000
              + LEAF + DeltaEntry + MXF + SMPTE ST 377-1 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ReferenceTypes +
                urn:smpte:ul:060e2b34.01040101.05000000.00000000
              + NODE + Reference Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferences +
                urn:smpte:ul:060e2b34.01040101.05010000.00000000
              + NODE + Weak References + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010100.00000000
              + LEAF + ClassDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02010000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.07000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010200.00000000
              + LEAF + ContainerDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05080000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010300.00000000
              + LEAF + DataDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05050000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DefinitionObjectWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010400.00000000
              + LEAF + DefinitionObjectWeakReference + AAF[1.2:] + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010500.00000000
              + LEAF + InterpolationDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012100 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05090000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010600.00000000
              + LEAF + PackageWeakReference + AAF~WeakReferenceMob + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02010000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05010000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010700.00000000
              + LEAF + OperationDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05030000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010800.00000000
              + LEAF + ParameterDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05040000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010900.00000000
              + LEAF + TypeDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.08000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010a00.00000000
              + LEAF + PluginDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05060000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010b00.00000000
              + LEAF + CodecDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05070000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010c00.00000000
              + LEAF + PropertyDefinitionWeakReference + AAF[1.1:] + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.07000000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.02000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionExtendibleEnumerationWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010d00.00000000
              + LEAF + TypeDefinitionExtendibleEnumerationWeakReference + SMPTE ST 377-2 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02200000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferences +
                urn:smpte:ul:060e2b34.01040101.05020000.00000000
              + NODE + Strong References + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContentStorageStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020100.00000000
              + LEAF + ContentStorageStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DictionaryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020200.00000000
              + LEAF + DictionaryStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020300.00000000
              + LEAF + EssenceDescriptorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NetworkLocatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020400.00000000
              + LEAF + NetworkLocatorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020500.00000000
              + LEAF + OperationGroupStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010a00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SegmentStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020600.00000000
              + LEAF + SegmentStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceClipStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020700.00000000
              + LEAF + SourceClipStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceReferenceStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020800.00000000
              + LEAF + SourceReferenceStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020900.00000000
              + LEAF + ClassDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02010000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020a00.00000000
              + LEAF + CodecDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ComponentStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020b00.00000000
              + LEAF + ComponentStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020c00.00000000
              + LEAF + ContainerDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ControlPointStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020d00.00000000
              + LEAF + ControlPointStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011900 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020e00.00000000
              + LEAF + DataDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020f00.00000000
              + LEAF + EssenceDataStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IdentificationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021000.00000000
              + LEAF + IdentificationStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021100.00000000
              + LEAF + InterpolationDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021200.00000000
              + LEAF + LocatorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021300.00000000
              + LEAF + PackageStrongReference + AAF~StrongReferenceMob + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TrackStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021400.00000000
              + LEAF + TrackStrongReference + AAF~StrongReferenceMobSlot + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021500.00000000
              + LEAF + OperationDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021600.00000000
              + LEAF + ParameterStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021700.00000000
              + LEAF + ParameterDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021800.00000000
              + LEAF + PluginDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021900.00000000
              + LEAF + PropertyDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021a00.00000000
              + LEAF + TaggedValueStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021b00.00000000
              + LEAF + TypeDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021c00.00000000
              + LEAF + KLVDataStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FileDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021d00.00000000
              + LEAF + FileDescriptorStrongReference + AAF[1.12:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RIFFChunkStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021e00.00000000
              + LEAF + RIFFChunkStrongReference + AAF[1.12:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveFrameworkStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021f00.00000000
              + LEAF + DescriptiveFrameworkStrongReference + AAF[1.1:] ASPA[:0.8] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022000.00000000
              + LEAF + KLVDataDefinitionStrongReference + AAF[1.1:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014d00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022100.00000000
              + LEAF + TaggedValueDefinitionStrongReference + AAF[1.1:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022200.00000000
              + LEAF + DescriptiveObjectStrongReference + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CueWordsStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022300.00000000
              + LEAF + CueWordsStrongReference + DMS-1 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.01170800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicAreaStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022400.00000000
              + LEAF + GeographicAreaStrongReference + ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicPolygonStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022500.00000000
              + LEAF + GeographicPolygonStrongReference + ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SubDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022600.00000000
              + LEAF + SubDescriptorStrongReference + AAF[1.2:] AAF[:1.13] ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDictionaryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022700.00000000
              + LEAF + MetaDictionaryStrongReference + AAF[1.2:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PrefaceStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022800.00000000
              + LEAF + PrefaceStrongReference + AAF[1.2:]~StrongReferenceHeader + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NameValueStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022900.00000000
              + LEAF + NameValueStrongReference + DMS-1 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011f0100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TextBasedObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022a00.00000000
              + LEAF + TextBasedObjectStrongReference + DMS-Text + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EntryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022b00.00000000
              + LEAF + EntryStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RegisterAdministrationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022c00.00000000
              + LEAF + RegisterAdministrationStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EntryAdministrationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022d00.00000000
              + LEAF + EntryAdministrationStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageMarkerStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022e00.00000000
              + LEAF + PackageMarkerStrongReference + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022f00.00000000
              + LEAF + ApplicationPluginObjectStrongReference + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtensionSchemeStrongReference +
                urn:smpte:ul:060e2b34.01040101.05023000.00000000
              + LEAF + ExtensionSchemeStrongReference + SMPTE ST 377-2 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02260000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05023100.00000000
              + LEAF + MetaDefinitionStrongReference + SMPTE ST 377-2 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05030000.00000000
              + NODE + Weak Reference Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030d00.00000000
              + LEAF + DataDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030e00.00000000
              + LEAF + ParameterDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030f00.00000000
              + LEAF + PluginDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010a00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05031000.00000000
              + LEAF + PropertyDefinitionWeakReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010c00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionExtendibleEnumerationWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05031100.00000000
              + LEAF + TypeDefinitionExtendibleEnumerationWeakReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010d00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05040000.00000000
              + NODE + Weak Reference Vectors + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040100.00000000
              + LEAF + OperationDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010700.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040200.00000000
              + LEAF + TypeDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040300.00000000
              + LEAF + DataDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05050000.00000000
              + NODE + Strong Reference Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050100.00000000
              + LEAF + ClassDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050200.00000000
              + LEAF + CodecDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020a00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050300.00000000
              + LEAF + ContainerDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020c00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050400.00000000
              + LEAF + DataDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020e00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDataStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050500.00000000
              + LEAF + EssenceDataStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020f00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050600.00000000
              + LEAF + InterpolationDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050700.00000000
              + LEAF + PackageStrongReferenceSet + AAF~StrongReferenceSetMob + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050800.00000000
              + LEAF + OperationDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021500.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050900.00000000
              + LEAF + ParameterDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021700.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050a00.00000000
              + LEAF + PluginDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050b00.00000000
              + LEAF + PropertyDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050c00.00000000
              + LEAF + TypeDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021b00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050d00.00000000
              + LEAF + KLVDataDefinitionStrongReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022000.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050e00.00000000
              + LEAF + TaggedValueDefinitionStrongReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050f00.00000000
              + LEAF + DescriptiveObjectStrongReferenceSet + AAF[1.12:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NameValueStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051000.00000000
              + LEAF + NameValueStrongReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051100.00000000
              + LEAF + ApplicationPluginObjectStrongReferenceSet + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022f00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtensionSchemeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051200.00000000
              + LEAF + ExtensionSchemeStrongReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05023000.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051300.00000000
              + LEAF + MetaDefinitionStrongReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05023100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05060000.00000000
              + NODE + Strong Reference Vectors + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ComponentStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060100.00000000
              + LEAF + ComponentStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020b00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ControlPointStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060200.00000000
              + LEAF + ControlPointStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020d00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IdentificationStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060300.00000000
              + LEAF + IdentificationStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021000.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocatorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060400.00000000
              + LEAF + LocatorStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TrackStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060500.00000000
              + LEAF + TrackStrongReferenceVector + AAF~StrongReferenceVectorMobSlot + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021400.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SegmentStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060600.00000000
              + LEAF + SegmentStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceReferenceStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060700.00000000
              + LEAF + SourceReferenceStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060800.00000000
              + LEAF + TaggedValueStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060900.00000000
              + LEAF + KLVDataStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021c00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060a00.00000000
              + LEAF + ParameterStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FileDescriptorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060b00.00000000
              + LEAF + FileDescriptorStrongReferenceVector + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021d00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RIFFChunkStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060c00.00000000
              + LEAF + RIFFChunkStrongReferenceVector + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021e00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060d00.00000000
              + LEAF + DescriptiveObjectStrongReferenceVector + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SubDescriptorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060e00.00000000
              + LEAF + SubDescriptorStrongReferenceVector + AAF[1.2:] AAF[:1.13] ASPA + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RegisterEntryStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060f00.00000000
              + LEAF + RegisterEntryStrongReferenceVector + RIF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022b00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05070000.00000000
              + NODE + Global Reference Sets + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070100.00000000
              + LEAF + ParticipantGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070200.00000000
              + LEAF + OrganizationGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090200.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070300.00000000
              + LEAF + LocationGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05080000.00000000
              + NODE + Global Reference Vectors + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080100.00000000
              + LEAF + ParticipantGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080200.00000000
              + LEAF + OrganizationGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080300.00000000
              + LEAF + LocationGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferences +
                urn:smpte:ul:060e2b34.01040101.05090000.00000000
              + NODE + Global References + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090100.00000000
              + LEAF + ParticipantGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.01180100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090200.00000000
              + LEAF + OrganizationGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011a0300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090300.00000000
              + LEAF + LocationGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011a0400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090400.00000000
              + LEAF + ApplicationPluginObjectGlobalReference + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveMarkerGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090500.00000000
              + LEAF + DescriptiveMarkerGlobalReference + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassTypes +
                urn:smpte:ul:060e2b34.01040101.07000000.00000000
              + NODE + Class Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.01040101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.01040101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.01040101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11_Captions_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010100
              + LEAF + Captions Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Captions_Hard_of_Hearing + Hard of Hearing + 0 + false + + + Captions_Translation + Translation + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11_Audio_Track_Layout_Enum +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010200
              + LEAF + Audio Track Layout Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Layout_EBU_R_48_1a + EBU R 48: 1a + 0 + false + + + Layout_EBU_R_48_1b + EBU R 48: 1b + 1 + false + + + Layout_EBU_R_48_1c + EBU R 48: 1c + 2 + false + + + Layout_EBU_R_48_2a + EBU R 48: 2a + 3 + false + + + Layout_EBU_R_48_2b + EBU R 48: 2b + 4 + false + + + Layout_EBU_R_48_2c + EBU R 48: 2c + 5 + false + + + Layout_EBU_R_48_3a + EBU R 48: 3a + 6 + false + + + Layout_EBU_R_48_3b + EBU R 48: 3b + 7 + false + + + Layout_EBU_R_48_4a + EBU R 48: 4a + 8 + false + + + Layout_EBU_R_48_4b + EBU R 48: 4b + 9 + false + + + Layout_EBU_R_48_4c + EBU R 48: 4c + 10 + false + + + Layout_EBU_R_48_5a + EBU R 48: 5a + 11 + false + + + Layout_EBU_R_48_5b + EBU R 48: 5b + 12 + false + + + Layout_EBU_R_48_6a + EBU R 48: 6a + 13 + false + + + Layout_EBU_R_48_6b + EBU R 48: 6b + 14 + false + + + Layout_EBU_R_48_7a + EBU R 48: 7a + 15 + false + + + Layout_EBU_R_48_7b + EBU R 48: 7b + 16 + false + + + Layout_EBU_R_48_8a + EBU R 48: 8a + 17 + false + + + Layout_EBU_R_48_8b + EBU R 48: 8b + 18 + false + + + Layout_EBU_R_48_8c + EBU R 48: 8c + 19 + false + + + Layout_EBU_R_48_9a + EBU R 48: 9a + 20 + false + + + Layout_EBU_R_48_9b + EBU R 48: 9b + 21 + false + + + Layout_EBU_R_48_10a + EBU R 48: 10a + 22 + false + + + Layout_EBU_R_48_11a + EBU R 48: 11a + 23 + false + + + Layout_EBU_R_48_11b + EBU R 48: 11b + 24 + false + + + Layout_EBU_R_48_11c + EBU R 48: 11c + 25 + false + + + Layout_EBU_R_123_2a + EBU R 123: 2a + 26 + false + + + Layout_EBU_R_123_4a + EBU R 123: 4a + 27 + false + + + Layout_EBU_R_123_4b + EBU R 123: 4b + 28 + false + + + Layout_EBU_R_123_4c + EBU R 123: 4c + 29 + false + + + Layout_EBU_R_123_8a + EBU R 123: 8a + 30 + false + + + Layout_EBU_R_123_8b + EBU R 123: 8b + 31 + false + + + Layout_EBU_R_123_8c + EBU R 123: 8c + 32 + false + + + Layout_EBU_R_123_8d + EBU R 123: 8d + 33 + false + + + Layout_EBU_R_123_8e + EBU R 123: 8e + 34 + false + + + Layout_EBU_R_123_8f + EBU R 123: 8f + 35 + false + + + Layout_EBU_R_123_8g + EBU R 123: 8g + 36 + false + + + Layout_EBU_R_123_8h + EBU R 123: 8h + 37 + false + + + Layout_EBU_R_123_8i + EBU R 123: 8i + 38 + false + + + Layout_EBU_R_123_12a + EBU R 123: 12a + 39 + false + + + Layout_EBU_R_123_12b + EBU R 123: 12b + 40 + false + + + Layout_EBU_R_123_12c + EBU R 123: 12c + 41 + false + + + Layout_EBU_R_123_12d + EBU R 123: 12d + 42 + false + + + Layout_EBU_R_123_12e + EBU R 123: 12e + 43 + false + + + Layout_EBU_R_123_12f + EBU R 123: 12f + 44 + false + + + Layout_EBU_R_123_12g + EBU R 123: 12g + 45 + false + + + Layout_EBU_R_123_12h + EBU R 123: 12h + 46 + false + + + Layout_EBU_R_123_16a + EBU R 123: 16a + 47 + false + + + Layout_EBU_R_123_16b + EBU R 123: 16b + 48 + false + + + Layout_EBU_R_123_16c + EBU R 123: 16c + 49 + false + + + Layout_EBU_R_123_16d + EBU R 123: 16d + 50 + false + + + Layout_EBU_R_123_16e + EBU R 123: 16e + 51 + false + + + Layout_EBU_R_123_16f + EBU R 123: 16f + 52 + false + + + Layout_Undefined + Undefined + 255 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + ISO_639_2_Language_Code +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010300
              + LEAF + ISO-639-2 Language Code + A three-letter (alpha-3) ISO 639-2 code to represent a language + Be aware that ISO 639-2 defines: both bibliographic and terminologic language codes; that language codes are case insensitive + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + AS_12_DescriptiveObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c010100
              + LEAF + AS_12_DescriptiveObjectStrongReference + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.01040101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Types + http://www.ebu.ch/metadata/smpte/class13/type + EBU_UER +
                urn:smpte:ul:060e2b34.01040101.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + EBU_Schemes +
                urn:smpte:ul:060e2b34.01040101.0d020100.00000000
              + NODE + EBU Schemes + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + EBUCore +
                urn:smpte:ul:060e2b34.01040101.0d020101.00000000
              + NODE + EBUCore + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + StrongReferences +
                urn:smpte:ul:060e2b34.01040101.0d020101.01000000
              + NODE + StrongReferences + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coreMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01010000
              + LEAF + coreMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020102.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataSchemaInformationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01020000
              + LEAF + metadataSchemaInformationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020103.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + versionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01030000
              + LEAF + versionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationHistoryStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01040000
              + LEAF + publicationHistoryStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + planningStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01050000
              + LEAF + planningStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01060000
              + LEAF + typeGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01070000
              + LEAF + formatGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + statusGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01080000
              + LEAF + statusGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.03000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + spatialStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01090000
              + LEAF + spatialStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020114.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + temporalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010a0000
              + LEAF + temporalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020117.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coordinatesStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010b0000
              + LEAF + coordinatesStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020116.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coverageStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010c0000
              + LEAF + coverageStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020113.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationMediumStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010d0000
              + LEAF + publicationMediumStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationChannelStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010e0000
              + LEAF + publicationChannelStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationServiceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010f0000
              + LEAF + publicationServiceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020120.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + departmentStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01100000
              + LEAF + departmentStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020124.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + addressStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01110000
              + LEAF + addressStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020126.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rationalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01120000
              + LEAF + rationalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + mediumStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01130000
              + LEAF + mediumStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + packageInfoStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01140000
              + LEAF + packageInfoStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + codecStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01150000
              + LEAF + codecStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dimensionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01160000
              + LEAF + dimensionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + hashStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01170000
              + LEAF + hashStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020146.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01180000
              + LEAF + partMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020144.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + loudnessMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01190000
              + LEAF + loudnessMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioMXFLookupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011a0000
              + LEAF + audioMXFLookupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020156.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011b0000
              + LEAF + locatorStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020147.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + containerFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011c0000
              + LEAF + containerFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020148.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011d0000
              + LEAF + audioBlockMatrixStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020157.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + identifierStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011e0000
              + LEAF + identifierStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020104.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + titleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011f0000
              + LEAF + titleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020105.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + alternativeTitleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01200000
              + LEAF + alternativeTitleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020106.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + entityStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01210000
              + LEAF + entityStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020121.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01220000
              + LEAF + subjectStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020108.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + descriptionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01230000
              + LEAF + descriptionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020109.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01240000
              + LEAF + dateStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01250000
              + LEAF + typeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + languageStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01260000
              + LEAF + languageStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020112.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rightsStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01270000
              + LEAF + rightsStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020119.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ratingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01280000
              + LEAF + ratingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + customRelationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01290000
              + LEAF + customRelationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012b.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicRelationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012a0000
              + LEAF + basicRelationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012b.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012b0000
              + LEAF + formatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020130.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012c0000
              + LEAF + partStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020143.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + textualAnnotationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012d0000
              + LEAF + textualAnnotationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012e0000
              + LEAF + dateTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + objectTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012f0000
              + LEAF + objectTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + genreStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01300000
              + LEAF + genreStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020110.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + targetAudienceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01310000
              + LEAF + targetAudienceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020111.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + regionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01320000
              + LEAF + regionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020127.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01330000
              + LEAF + locationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020115.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + periodOfTimeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01340000
              + LEAF + periodOfTimeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020118.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + contactStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01350000
              + LEAF + contactStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020122.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationEventStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01360000
              + LEAF + publicationEventStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + organizationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01370000
              + LEAF + organizationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020123.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + roleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01380000
              + LEAF + roleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020129.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicLinkStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01390000
              + LEAF + basicLinkStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + compoundNameStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013a0000
              + LEAF + compoundNameStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020128.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + detailsStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013b0000
              + LEAF + detailsStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020125.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + countryTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013c0000
              + LEAF + countryTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013e0000
              + LEAF + audioFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020133.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013f0000
              + LEAF + videoFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020131.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + imageFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01400000
              + LEAF + imageFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020132.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dataFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01410000
              + LEAF + dataFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020135.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + signingFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01420000
              + LEAF + signingFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020139.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeStringStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01430000
              + LEAF + technicalAttributeStringStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt8StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01440000
              + LEAF + technicalAttributeInt8StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt16StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01450000
              + LEAF + technicalAttributeInt16StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.03000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt32StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01460000
              + LEAF + technicalAttributeInt32StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.04000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt64StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01470000
              + LEAF + technicalAttributeInt64StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.05000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt8StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01480000
              + LEAF + technicalAttributeUInt8StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.06000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt16StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01490000
              + LEAF + technicalAttributeUInt16StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.07000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt32StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014a0000
              + LEAF + technicalAttributeUInt32StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.08000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt64StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014b0000
              + LEAF + technicalAttributeUInt64StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.09000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeFloatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014c0000
              + LEAF + technicalAttributeFloatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0a000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeRationalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014d0000
              + LEAF + technicalAttributeRationalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0b000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeAnyURIStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014e0000
              + LEAF + technicalAttributeAnyURIStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0c000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeBooleanStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014f0000
              + LEAF + technicalAttributeBooleanStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0d000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatExtendedStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01500000
              + LEAF + audioFormatExtendedStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020149.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + aspectRatioStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01510000
              + LEAF + aspectRatioStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020140.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + heightStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01520000
              + LEAF + heightStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020141.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + widthStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01530000
              + LEAF + widthStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020142.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + trackStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01540000
              + LEAF + trackStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020134.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + captioningStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01550000
              + LEAF + captioningStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020136.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subtitlingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01560000
              + LEAF + subtitlingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020137.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ancillaryDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01570000
              + LEAF + ancillaryDataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020138.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioProgrammeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01580000
              + LEAF + audioProgrammeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01590000
              + LEAF + audioContentStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015a0000
              + LEAF + audioObjectStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioPackFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015b0000
              + LEAF + audioPackFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioChannelFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015c0000
              + LEAF + audioChannelFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020150.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015d0000
              + LEAF + audioBlockFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020151.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioStreamFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015e0000
              + LEAF + audioStreamFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020153.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015f0000
              + LEAF + audioTrackFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020154.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackUIDStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01600000
              + LEAF + audioTrackUIDStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020155.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + IDRefStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01610000
              + LEAF + IDRefStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixCoefficientStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01620000
              + LEAF + audioBlockMatrixCoefficientStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020152.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01630000
              + LEAF + timeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020158.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoNoiseFilterStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01640000
              + LEAF + videoNoiseFilterStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01650000
              + LEAF + metadataFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020159.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timecodeFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01660000
              + LEAF + timecodeFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audienceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01670000
              + LEAF + audienceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + eventStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01680000
              + LEAF + eventStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + awardStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01690000
              + LEAF + awardStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + affiliationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016a0000
              + LEAF + affiliationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016b0000
              + LEAF + filterStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016c0000
              + LEAF + referenceScreenStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020160.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentDialogueStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016d0000
              + LEAF + audioContentDialogueStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020163.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectInteractionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016e0000
              + LEAF + audioObjectInteractionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020164.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockDivergenceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016f0000
              + LEAF + audioBlockObjectDivergenceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020168.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneExclusionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01700000
              + LEAF + audioBlockZoneExclusionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020169.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockPositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01710000
              + LEAF + audioBlockPositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020167.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockJumpPositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01720000
              + LEAF + audioBlockJumpPositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterSettingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01730000
              + LEAF + filterSettingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenCentrePositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01740000
              + LEAF + referenceScreenCentrePositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020161.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenWidthStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01750000
              + LEAF + referenceScreenWidthStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020162.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + gainInteractionRangeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01760000
              + LEAF + gainInteractionRangeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020165.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + positionInteractionRangeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01770000
              + LEAF + positionInteractionRangeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020166.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01780000
              + LEAF + audioBlockZoneStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + WeakReferences +
                urn:smpte:ul:060e2b34.01040101.0d020101.02000000
              + NODE + WeakReferences + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + StrongReferenceSets +
                urn:smpte:ul:060e2b34.01040101.0d020101.03000000
              + NODE + StrongReferenceSets + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + identifierStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03010000
              + LEAF + identifierStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.011e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + titleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03020000
              + LEAF + titleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.011f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + alternativeTitleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03030000
              + LEAF + alternativeTitleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01200000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + entityStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03040000
              + LEAF + entityStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03050000
              + LEAF + subjectStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01220000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + descriptionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03060000
              + LEAF + descriptionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01230000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03070000
              + LEAF + dateStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01240000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03080000
              + LEAF + typeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01250000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + languageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03090000
              + LEAF + languageStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01260000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coverageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030a0000
              + LEAF + coverageStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.010c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rightsStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030b0000
              + LEAF + rightsStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01270000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ratingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030c0000
              + LEAF + ratingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01280000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + customRelationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030d0000
              + LEAF + customRelationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01290000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicRelationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030e0000
              + LEAF + basicRelationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030f0000
              + LEAF + formatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03100000
              + LEAF + partStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + textualAnnotationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03110000
              + LEAF + textualAnnotationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03120000
              + LEAF + dateTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + objectTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03130000
              + LEAF + objectTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + genreStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03140000
              + LEAF + genreStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01300000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + targetAudienceStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03150000
              + LEAF + targetAudienceStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01310000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + regionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03160000
              + LEAF + regionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03170000
              + LEAF + locationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01330000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + periodOfTimeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03180000
              + LEAF + periodOfTimeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01340000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + contactStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03190000
              + LEAF + contactStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01350000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationEventStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031a0000
              + LEAF + publicationEventStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01360000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + organizationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031b0000
              + LEAF + organizationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + roleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031c0000
              + LEAF + roleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01380000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicLinkStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031d0000
              + LEAF + basicLinkStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01390000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + compoundNameStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031e0000
              + LEAF + compoundNameStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + detailsStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031f0000
              + LEAF + detailsStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + countryTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03200000
              + LEAF + countryTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03220000
              + LEAF + audioFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03230000
              + LEAF + videoFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + imageFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03240000
              + LEAF + imageFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01400000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dataFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03250000
              + LEAF + dataFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01410000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + signingFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03260000
              + LEAF + signingFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01420000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeStringStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03270000
              + LEAF + technicalAttributeStringStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01430000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt8StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03280000
              + LEAF + technicalAttributeInt8StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01440000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt16StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03290000
              + LEAF + technicalAttributeInt16StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01450000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt32StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032a0000
              + LEAF + technicalAttributeInt32StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01460000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt64StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032b0000
              + LEAF + technicalAttributeInt64StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01470000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt8StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032c0000
              + LEAF + technicalAttributeUInt8StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01480000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt16StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032d0000
              + LEAF + technicalAttributeUInt16StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01490000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt32StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032e0000
              + LEAF + technicalAttributeUInt32StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt64StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032f0000
              + LEAF + technicalAttributeUInt64StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeFloatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03300000
              + LEAF + technicalAttributeFloatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeRationalStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03310000
              + LEAF + technicalAttributeRationalStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeAnyURIStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03320000
              + LEAF + technicalAttributeAnyURIStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeBooleanStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03330000
              + LEAF + technicalAttributeBooleanStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatExtendedStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03340000
              + LEAF + audioFormatExtendedStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01500000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + aspectRatioStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03350000
              + LEAF + aspectRatioStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01510000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + heightStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03360000
              + LEAF + heightStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01520000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + widthStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03370000
              + LEAF + widthStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01530000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + trackStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03380000
              + LEAF + trackStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01540000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + captioningStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03390000
              + LEAF + captioningStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01550000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subtitlingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033a0000
              + LEAF + subtitlingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01560000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ancillaryDataStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033b0000
              + LEAF + ancillaryDataStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01570000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioProgrammeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033c0000
              + LEAF + audioProgrammeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01580000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033d0000
              + LEAF + audioContentStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01590000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033e0000
              + LEAF + audioObjectStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioPackFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033f0000
              + LEAF + audioPackFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioChannelFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03400000
              + LEAF + audioChannelFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03410000
              + LEAF + audioBlockFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioStreamFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03420000
              + LEAF + audioStreamFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03430000
              + LEAF + audioTrackFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackUIDStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03440000
              + LEAF + audioTrackUIDStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01600000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + IDRefStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03450000
              + LEAF + IDRefStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixCoefficientStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03460000
              + LEAF + audioBlockMatrixCoefficientStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01620000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03470000
              + LEAF + timeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03480000
              + LEAF + metadataFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01650000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timecodeFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03490000
              + LEAF + timecodeFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01660000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audienceStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034a0000
              + LEAF + audienceStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01670000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + eventStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034b0000
              + LEAF + eventStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01680000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + awardStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034c0000
              + LEAF + awardStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01690000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + affiliationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034d0000
              + LEAF + affiliationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + mediumStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034e0000
              + LEAF + mediumStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01130000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034f0000
              + LEAF + filterStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectInteractionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03500000
              + LEAF + audioObjectInteractionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockPositionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03510000
              + LEAF + audioBlockPositionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01710000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterSettingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03520000
              + LEAF + filterSettingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01730000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + gainInteractionRangeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03530000
              + LEAF + gainInteractionRangeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01760000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + positionInteractionRangeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03540000
              + LEAF + positionInteractionRangeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01770000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03550000
              + LEAF + audioBlockZoneStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01780000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + WeakReferenceSets +
                urn:smpte:ul:060e2b34.01040101.0d020101.04000000
              + NODE + WeakReferenceSets + EBU Tech 3293 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.01040101.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.01040101.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.01040101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedTypes +
                urn:smpte:ul:060e2b34.01040101.0d040101.01000000
              + NODE + APP Enumerated Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010000
              + NODE + APP Enumerated Integer Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedUInt16Types +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010100
              + NODE + APP Enumerated UInt16 Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_TimecodeTypeEnum +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010101
              + LEAF + APP Timecode Type Enum + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TC_VITC + TC VITC + 1 + false + + + TC_LTC + TC LTC + 2 + false + + + TC_Both + TC Both + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.01040101.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.01040101.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.01040101.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.01040101.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.01040101.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.01040101.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.01040101.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.01040101.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.01040101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_PSE_Pass_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.01000000
              + LEAF + PSE Pass Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + PSE_Yes + Yes + 0 + false + + + PSE_No + No + 1 + false + + + PSE_Not_tested + Not tested + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Signing_Present_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.02000000
              + LEAF + Signing Present Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Signing_Yes + Yes + 0 + false + + + Signing_No + No + 1 + false + + + Signing_Signer_only + Signer only + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_3D_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.03000000
              + LEAF + 3D Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ThreeD_Side_by_side + Side by side + 0 + false + + + ThreeD_Dual + Dual + 1 + false + + + ThreeD_Left_eye_only + Left eye only + 2 + false + + + ThreeD_Right_eye_only + Right eye only + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Audio_Loudness_Standard_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.04000000
              + LEAF + Audio Loudness Standard Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Loudness_None + None + 0 + false + + + Loudness_EBU_R_128 + EBU R 128 + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Audio_Description_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.05000000
              + LEAF + Audio Description Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AD_Control_data_Narration + Control data / Narration + 0 + false + + + AD_Mix + AD Mix + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Sign_Language_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.06000000
              + LEAF + Sign Language Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Sign_Language_BSL_British_Sign_Language + BSL (British Sign Language) + 0 + false + + + Sign_Language_BSL_Makaton + BSL (Makaton) + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.01040101.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.01040101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.01040101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.01040101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.01040101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.01040101.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.01040101.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.01040101.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.01040101.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.01040101.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.01040101.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.01040101.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.01040101.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.01040101.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.01040101.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.01040101.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.01040101.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.01040101.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.01040101.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.01040101.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.01040101.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.01040101.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.01040101.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.01040101.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.01040101.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.01040101.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.01040101.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.01040101.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.01040101.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.01040101.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.01040101.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.01040101.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.01040101.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.01040101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/src/test/resources/registers/snapshot/Elements.xml b/src/test/resources/registers/snapshot/Elements.xml new file mode 100644 index 0000000..25c3585 --- /dev/null +++ b/src/test/resources/registers/snapshot/Elements.xml @@ -0,0 +1,45548 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + Elements + http://www.smpte-ra.org/reg/335/2012 + Elements +
                urn:smpte:ul:060e2b34.01010101.00000000.00000000
              + NODE + ELEMENTS + Register of individual Metadata Elements + SMPTE ST 335 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifiersAndLocators +
                urn:smpte:ul:060e2b34.01010101.01000000.00000000
              + NODE + IDENTIFIERS AND LOCATORS + Class 1 metadata is reserved for abstract Identifiers and Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01010000.00000000
              + NODE + Globally Unique Identifiers + Unique identifiers and locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDVideo +
                urn:smpte:ul:060a2b34.01010101.01010100.00000000
              + NODE + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_10 +
                urn:smpte:ul:060a2b34.01010101.01010110.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_11 +
                urn:smpte:ul:060a2b34.01010101.01010111.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_12 +
                urn:smpte:ul:060a2b34.01010101.01010112.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_20 +
                urn:smpte:ul:060a2b34.01010101.01010120.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_21 +
                urn:smpte:ul:060a2b34.01010101.01010121.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Video_22 +
                urn:smpte:ul:060a2b34.01010101.01010122.00000000
              + LEAF + UMID Video + Unique Material Identifier for video essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDAudio +
                urn:smpte:ul:060a2b34.01010101.01010200.00000000
              + NODE + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_10 +
                urn:smpte:ul:060a2b34.01010101.01010210.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_11 +
                urn:smpte:ul:060a2b34.01010101.01010211.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_12 +
                urn:smpte:ul:060a2b34.01010101.01010212.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_20 +
                urn:smpte:ul:060a2b34.01010101.01010220.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_21 +
                urn:smpte:ul:060a2b34.01010101.01010221.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Audio_22 +
                urn:smpte:ul:060a2b34.01010101.01010222.00000000
              + LEAF + UMID Audio + Unique Material Identifier for audio essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDData +
                urn:smpte:ul:060a2b34.01010101.01010300.00000000
              + NODE + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_10 +
                urn:smpte:ul:060a2b34.01010101.01010310.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_11 +
                urn:smpte:ul:060a2b34.01010101.01010311.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_12 +
                urn:smpte:ul:060a2b34.01010101.01010312.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_20 +
                urn:smpte:ul:060a2b34.01010101.01010320.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_21 +
                urn:smpte:ul:060a2b34.01010101.01010321.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_Data_22 +
                urn:smpte:ul:060a2b34.01010101.01010322.00000000
              + LEAF + UMID Data + Unique Material Identifier for data essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSystem +
                urn:smpte:ul:060a2b34.01010101.01010400.00000000
              + NODE + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + The last byte of this entry (byte 12) defines the Material and Instance number creation methods, and may have any of the values documented by SMPTE 330M-2000: 10h,11h,12h,20h,21h,22h + SMPTE 330M + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_10 +
                urn:smpte:ul:060a2b34.01010101.01010410.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_11 +
                urn:smpte:ul:060a2b34.01010101.01010411.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_12 +
                urn:smpte:ul:060a2b34.01010101.01010412.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_20 +
                urn:smpte:ul:060a2b34.01010101.01010420.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_21 +
                urn:smpte:ul:060a2b34.01010101.01010421.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMID_System_22 +
                urn:smpte:ul:060a2b34.01010101.01010422.00000000
              + LEAF + UMID System + Unique Material Identifier for other essence. Note - this is a 12 byte SMPTE label. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDPicture +
                urn:smpte:ul:060e2b34.01010105.01010500.00000000
              + NODE + UMID Picture + SMPTE330M UMID for single picture component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiPicture +
                urn:smpte:ul:060e2b34.01010105.01010600.00000000
              + NODE + UMID Multi Picture + SMPTE330M UMID for multiple picture component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSound +
                urn:smpte:ul:060e2b34.01010105.01010800.00000000
              + NODE + UMID Sound + SMPTE330M UMID for single sound component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiSound +
                urn:smpte:ul:060e2b34.01010105.01010900.00000000
              + NODE + UMID Multi Sound + SMPTE330M UMID for multiple sound component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDSingleData +
                urn:smpte:ul:060e2b34.01010105.01010b00.00000000
              + NODE + UMID Single Data + SMPTE330M UMID for single data component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMultiData +
                urn:smpte:ul:060e2b34.01010105.01010c00.00000000
              + NODE + UMID Multi Data + SMPTE330M UMID for multiple data component + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDMixed +
                urn:smpte:ul:060e2b34.01010105.01010d00.00000000
              + NODE + UMID Mixed + SMPTE330M UMID for mixed group of components + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UMIDGeneral +
                urn:smpte:ul:060e2b34.01010105.01010f00.00000000
              + NODE + UMID General + SMPTE330M UMID for unspecified components + Leaves within this node are numbered and assigned according to SMPTE 330M (revision 2003) table 3 and table 4 + SMPTE330M (revision 2003) + false + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalBroadcastingOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011000.00000000
              + NODE + International Broadcasting Organization Identifiers + Internationally recognized identifiers registered by broadcasting organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01011001.00000000
              + LEAF + Organization ID + The broadcasting organization concerned + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationID +
                urn:smpte:ul:060e2b34.01010103.01011001.01000000
              + LEAF + Organization ID + The internationally recognized unique identifier for a broadcasting organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIDKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01011002.00000000
              + LEAF + Organization ID Kind + Specifies the identification system in use. E.g. OUT, ITU, EBU, Callsign etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIDKind +
                urn:smpte:ul:060e2b34.01010104.01011002.01000000
              + LEAF + Organization ID Kind + Specifies the identification system in use. E.g. OUT, ITU, EBU, Callsign etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011003.00000000
              + NODE + Program Identifiers + Globally unique program identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UPID +
                urn:smpte:ul:060e2b34.01010101.01011003.01000000
              + LEAF + UPID + A Unique Program Identifier (ATSC A/57) for a program as a Work + ATSC standard ATSC A/57 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UPN +
                urn:smpte:ul:060e2b34.01010101.01011003.02000000
              + LEAF + UPN + Unique Programme Number (ITVA) + As per ITVA standard (not yet ratified) + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01011003.03000000
              + LEAF + Program Number + Identifier for a program project + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalMediaIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011004.00000000
              + NODE + Physical Media Identifiers + Physical media identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011004.01000000
              + NODE + Tape Identifiers + Tape identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IBTN +
                urn:smpte:ul:060e2b34.01010101.01011004.01010000
              + LEAF + IBTN + EBU International Broadcast Tape Number + European Broadcasting Union IBTN + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalStandardIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011100.00000000
              + NODE + International Standard Identifiers + Internationally accepted Identifier Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISAN +
                urn:smpte:ul:060e2b34.01010101.01011101.00000000
              + LEAF + ISAN + ISO Audio-Visual Number + ISO 15706 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISBN +
                urn:smpte:ul:060e2b34.01010101.01011102.00000000
              + LEAF + ISBN + ISO Book Number + ISO 2108 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISSN +
                urn:smpte:ul:060e2b34.01010101.01011103.00000000
              + LEAF + ISSN + ISO Serial Number + ISO 3297 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISWC +
                urn:smpte:ul:060e2b34.01010101.01011104.00000000
              + LEAF + ISWC + ISO Musical Work Code + ISO 15707 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISMN +
                urn:smpte:ul:060e2b34.01010101.01011105.00000000
              + LEAF + ISMN + ISO Printed Music Number + ISO 10957 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISCI +
                urn:smpte:ul:060e2b34.01010101.01011106.00000000
              + LEAF + ISCI + American Association of Advertising Industries Commercial Identifier + http://www.aaaa.org/publications/search.asp + AAAA's ISCI + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISRC +
                urn:smpte:ul:060e2b34.01010101.01011107.00000000
              + LEAF + ISRC + ISO Recording Code + ISO 3901 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISRN +
                urn:smpte:ul:060e2b34.01010101.01011108.00000000
              + LEAF + ISRN + ISO Report Number + ISO 10444 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISBD +
                urn:smpte:ul:060e2b34.01010101.01011109.00000000
              + LEAF + ISBD + International Federation of Library Associations and Institutions Bibliographic Descriptor + http://www.ifla.org/VII/s13/pubs/isbd.htm + IFLA's ISBD + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISTC +
                urn:smpte:ul:060e2b34.01010101.0101110a.00000000
              + LEAF + ISTC + ISO Textual Work Code + ISO 21047 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalFullAdIDIdentifier +
                urn:smpte:ul:060e2b34.0101010c.0101110b.00000000
              + LEAF + Canonical Full Ad-ID Identifier + Identifier of type CanonicalFullAdIDIdentifierType + AdID + SMPTE RP 2092-1 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200900.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalDOIName +
                urn:smpte:ul:060e2b34.0101010e.0101110c.00000000
              + LEAF + Canonical DOI Name + Identifier of type CanonicalDOINameType + EIDR + RP 2079 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CanonicalEIDRIdentifier +
                urn:smpte:ul:060e2b34.0101010e.0101110d.00000000
              + LEAF + Canonical EIDR Identifier + Identifier of type CanonicalEIDRIdentifierType + EIDR + RP 2079 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01200800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompactAdIDIdentifier +
                urn:smpte:ul:060e2b34.0101010e.0101110e.00000000
              + LEAF + Compact Ad-ID Identifier + Identifier of type CompactAdIDIdentifierType + AdID + SMPTE RP 2092-1 + false + AbstractContext + urn:smpte:ul:060e2b34.01040101.01012009.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InternationalStandardCompoundIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011300.00000000
              + NODE + International Standard Compound Identifiers + Compound Identifiers based on an internationally accepted Standard + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SICI +
                urn:smpte:ul:060e2b34.01010101.01011301.00000000
              + LEAF + SICI + ANSI/NISO Serial Item and Contribution Identifier + http://sunsite.berkeley.edu/SICI/ + ANSI/NISO Z39.56 - 1996 + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BICI +
                urn:smpte:ul:060e2b34.01010101.01011302.00000000
              + LEAF + BICI + ANSI/NISO Book Item and Component Identifier + http://www.niso.org/commitap.html + ANSI/NISO Z39.56 - 1997 (not yet ratified) + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AICI +
                urn:smpte:ul:060e2b34.01010101.01011303.00000000
              + LEAF + AICI + ANSI/NISO Audio-Visual Item and Component Identifier [proposed] + Not yet ratified + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PII +
                urn:smpte:ul:060e2b34.01010101.01011304.00000000
              + LEAF + PII + American Chemical Society Publisher Item Identifier + http://pubs.acs.org/journals/pubiden.html + ACS's PII + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01011500.00000000
              + NODE + Object Identifiers + Object identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DOI +
                urn:smpte:ul:060e2b34.01010101.01011501.00000000
              + LEAF + DOI + International DOI Foundation Digital Object Identifier + http://www.doi.org + International DOI Foundation Digital Object Identifier + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InstanceID +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + LEAF + Instance ID + Unique ID of an instance + mxflib MXF + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectIdentification +
                urn:smpte:ul:060e2b34.01010102.01011503.00000000
              + LEAF + Definition Object ID + The unique identifier for the item being defined + AAF~Identification MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GlobalNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01011504.00000000
              + LEAF + Global Number + Organizationally-given global number used to identify subjects in the image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipID +
                urn:smpte:ul:060e2b34.01010105.01011508.00000000
              + LEAF + Clip ID + Clip ID as a basic UMID. Note that the value includes the whole UMID including the first 12 UL bytes + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedClipID +
                urn:smpte:ul:060e2b34.01010107.01011509.00000000
              + LEAF + Extended Clip ID + Clip ID as an Extended UMID. Note that the value includes the whole UMID including the first 12 UL bytes + DMS-1 + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + 64 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipIDArray +
                urn:smpte:ul:060e2b34.01010107.0101150a.00000000
              + LEAF + Clip ID Array + An ordered array of Basic UMIDs + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020500.00000000 + 32*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedClipIDArray +
                urn:smpte:ul:060e2b34.01010107.0101150b.00000000
              + LEAF + Extended Clip ID Array + An ordered array of Extended UMIDs + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020600.00000000 + 64*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageID +
                urn:smpte:ul:060e2b34.01010101.01011510.00000000
              + LEAF + Package ID + Identifies the Metadata Object with a a unique identifier + AAF~MobID mxflib[:1.19]~PackageUID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextID +
                urn:smpte:ul:060e2b34.01010109.01011511.00000000
              + LEAF + Cryptographic Context ID + Identifies the Cryptographic Context used for data encryption + DMS-Crypto~ContextUniqueIdentifier + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ResourceID +
                urn:smpte:ul:060e2b34.0101010c.01011512.00000000
              + LEAF + Resource ID + A UUID that identifies a resource. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AncillaryResourceID +
                urn:smpte:ul:060e2b34.0101010c.01011513.00000000
              + LEAF + Ancillary Resource ID + A UUID value that identifies the ancillary resource. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EIDRDMSEssenceID +
                urn:smpte:ul:060e2b34.0101010e.01011514.00000000
              + LEAF + EIDR DMS Essence ID + EIDR Identifier for the essence associated with the Descriptive Framework Set + DMS-EIDR + SMPTE RP2089 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200800.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010108.01011540.00000000
              + NODE + Globally Unique Object Identifiers + Globally Unique Object Identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueHumanIdentifiers +
                urn:smpte:ul:060e2b34.01010108.01011540.01000000
              + NODE + Globally Unique Human Identifiers + Globally Unique Human Identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantID +
                urn:smpte:ul:060e2b34.01010108.01011540.01010000
              + LEAF + Participant ID + Unique identifier of a Participant set as the target of a generalized weak (global) reference + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactID +
                urn:smpte:ul:060e2b34.01010108.01011540.01020000
              + LEAF + Contact ID + Unique identifier of a Contact set as the target of a generalized weak (global) reference + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01012000.00000000
              + NODE + Device Identifiers + Unique identifiers for any device used in program production, such as cameras, microphones, editing, color grading, etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDesignation +
                urn:smpte:ul:060e2b34.01010101.01012001.00000000
              + LEAF + Device Designation + Identifies the "house name" of the device used in capturing or generating the essence + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceModel +
                urn:smpte:ul:060e2b34.01010101.01012003.00000000
              + LEAF + Device Model + Identifies the device model used in capturing or generating the essence. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceSerialNumber +
                urn:smpte:ul:060e2b34.01010101.01012004.00000000
              + LEAF + Device Serial Number + Alphanumeric serial number identifying the individual device + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IEEEDeviceIdentifier +
                urn:smpte:ul:060e2b34.01010102.01012005.00000000
              + LEAF + IEEE Device ID + Hex number identifying a device by manufacturer and device number + DMS-1 + IEEE 802 - Network Node ID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010c00.00000000 + 6 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceIDKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012007.00000000
              + LEAF + Device ID Kind + The type of identifier used to identify the device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012008.00000000
              + LEAF + Device Kind + Device Type expressed as a common name - e.g. camera, audio tape recorder, RAM, Hard disk etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKind +
                urn:smpte:ul:060e2b34.01010105.01012008.01000000
              + LEAF + Device Kind + Defines the kind of device used to capture or create the content (as either a commonly known name or as a locally defined name, e.g. Radio-camera) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceKindCode +
                urn:smpte:ul:060e2b34.01010103.01012008.02000000
              + LEAF + Device Kind Code + Device Type expressed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAssetNumber +
                urn:smpte:ul:060e2b34.01010105.0101200c.00000000
              + LEAF + Device Asset Number + Defines the asset number of the device used in capturing or generating the content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01012100.00000000
              + NODE + Platform Identifiers + Organizationally given identifiers for platforms, vehicles, or mounts carrying devices or sensors + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformDesignation_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012101.00000000
              + LEAF + Platform Designation + Identifies the generic name of the platform carrying the device used in capturing or generating the essence + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformDesignation +
                urn:smpte:ul:060e2b34.01010109.01012101.01000000
              + LEAF + Platform Designation + Identifies the generic name of the platform carrying the device used in capturing or generating the essence + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformModel_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012102.00000000
              + LEAF + Platform Model + Identifies the platform model carrying the device used in capturing or generating the essence. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformSerialNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01012103.00000000
              + LEAF + Platform Serial Number + Alphanumeric serial number identifying the individual platform carrying the device used in capturing or generating the essence. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GloballyUniqueLocators +
                urn:smpte:ul:060e2b34.01010101.01020000.00000000
              + NODE + Globally Unique Locators + Globally Unique path definitions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UniformResourceLocators +
                urn:smpte:ul:060e2b34.01010101.01020100.00000000
              + NODE + Uniform Resource Locators + Unique Resource Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URL_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020101.00000000
              + LEAF + URL + Unique Resource Locator String + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URL +
                urn:smpte:ul:060e2b34.01010101.01020101.01000000
              + LEAF + URL + Unique Resource Locator String + AAF~URLString mxflib[:1.19]~URLString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable 255 chars max. +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PURL_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020102.00000000
              + LEAF + PURL + Persistent Universal Resource Locator + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + URN_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01020103.00000000
              + LEAF + URN + Unique Resource Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 256 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultNamespaceURI_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020104.00000000
              + LEAF + Default Namespace URI + The Uniform Resource Identifier (URI) of the default namespace for an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultNamespaceURI +
                urn:smpte:ul:060e2b34.01010108.01020104.01000000
              + LEAF + Default Namespace URI + The Uniform Resource Identifier (URI) of the default namespace for an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURI_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020105.00000000
              + LEAF + Namespace URI + A URI associated with a Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURI +
                urn:smpte:ul:060e2b34.01010108.01020105.01000000
              + LEAF + Namespace URI + A URI associated with a Namespace Prefix used in Qnames in an XML document + MXF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURIs_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01020106.00000000
              + LEAF + Namespace URIs + A list of URIs associated with Namespace Prefixes used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespaceURIs +
                urn:smpte:ul:060e2b34.01010108.01020106.01000000
              + LEAF + Namespace URIs + A list of URIs associated with Namespace Prefixes used in Qnames in an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraSettingFileURI +
                urn:smpte:ul:060e2b34.0101010d.01020108.02000000
              + LEAF + Camera Setting File URI + The Uniform Resource Identifier (URI) of the file containing the camera setup parameters. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocators +
                urn:smpte:ul:060e2b34.01010104.01020200.00000000
              + NODE + Registry Locators + Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTEUniversalLabelLocator +
                urn:smpte:ul:060e2b34.01010104.01020201.00000000
              + LEAF + SMPTE UL + SMPTE Universal Label Locators - the value is a UL in a public Registry + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationLocator +
                urn:smpte:ul:060e2b34.01010105.01020202.00000000
              + LEAF + Identification UL + Specifies the Universal Label that locates the identification kind in a dictionary. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationalPattern +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + LEAF + Operational Pattern UL + Specifies the SMPTE Universal Label that locates an Operational Pattern + AAF[1.1:] ASPA[:0.8] MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorGroups +
                urn:smpte:ul:060e2b34.01010104.01020210.00000000
              + NODE + Registry Locator Groups + Groups of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorOrderedGroupArrays +
                urn:smpte:ul:060e2b34.01010104.01020210.01000000
              + NODE + Registry Locator Ordered Group (Arrays) + Ordered Group (Array) of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainerArray +
                urn:smpte:ul:060e2b34.01010104.01020210.01010000
              + LEAF + Essence Container Array + An array of 'n' universal labels of all essence containers in the file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistryLocatorUnorderedGroups +
                urn:smpte:ul:060e2b34.01010105.01020210.02000000
              + NODE + Registry Locator Unordered Groups + Unordered Groups of Unique Registry Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainers +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + LEAF + Essence Containers + A batch of 'n' universal labels of all essence containers in the file + AAF[1.1:] ASPA[:0.8] MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveSchemes +
                urn:smpte:ul:060e2b34.01010105.01020210.02020000
              + LEAF + Descriptive Metadata Schemes + An unordered batch of 'n' Universal Labels of all the Descriptive Metadata schemes used in this file + AAF[1.1:] ASPA[:0.8] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSchemes +
                urn:smpte:ul:060e2b34.0101010c.01020210.02030000
              + LEAF + Application Scheme Batch + A batch of Universal Labels of all the Application Metadata schemes used in a file. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 16*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocallyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030000.00000000
              + NODE + Locally Unique Identifiers + Identifier unique to the local context + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdministrativeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030100.00000000
              + NODE + Administrative Identifiers + Identifiers relating to Business and Administration + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransmissionID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030101.00000000
              + LEAF + Transmission ID + Identifier for transmission control + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ArchiveID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030102.00000000
              + LEAF + Archive ID + Identifier for archival purposes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030103.00000000
              + LEAF + Item ID + Identifier of a content item + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AccountingReferenceNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030104.00000000
              + LEAF + Accounting Reference Number + Reference number for accounting purposes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrafficID_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030105.00000000
              + LEAF + Traffic ID + Identifier for emmission management and/or billing + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectNumber +
                urn:smpte:ul:060e2b34.01010102.01030106.00000000
              + LEAF + Project Number + Identifier for a particular project or mission + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTargetID_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030107.00000000
              + LEAF + Local Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas in a motion imagery stream. The image originators are free to populate this field as needed with values from their own target naming or numbering system. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTargetID +
                urn:smpte:ul:060e2b34.01010109.01030107.01000000
              + LEAF + Local Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas in a motion imagery stream. The image originators are free to populate this field as needed with values from their own target naming or numbering system. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01030108.00000000
              + LEAF + Project Name + Name for a particular project or mission + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectName +
                urn:smpte:ul:060e2b34.01010105.01030108.01000000
              + LEAF + Project Name + Name for a particular project or mission + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NITFLayerTargetID_ISO7 +
                urn:smpte:ul:060e2b34.01010109.01030109.00000000
              + LEAF + NITF Layer Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas from an NITF (National Imagery Transmission Format) still image layer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NITFLayerTargetID +
                urn:smpte:ul:060e2b34.01010109.01030109.01000000
              + LEAF + NITF Layer Target ID + A free-text, locally defined name or ID of one or more individual targets or target areas from an NITF (National Imagery Transmission Format) still image layer + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalPhysicalMediaIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030200.00000000
              + NODE + Local Physical Media Identifiers + Organizationally given identifiers for physical media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilmID +
                urn:smpte:ul:060e2b34.01010101.01030201.00000000
              + NODE + Local Film ID + Organizationally given identifiers for film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReelOrRollNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030201.01000000
              + LEAF + Reel or Roll Number + An organizationally given number for a film reel or roll. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeHeader +
                urn:smpte:ul:060e2b34.01010102.01030201.02000000
              + LEAF + Edge Code Header + An organizationally given header for a film reel or roll + AAF~Header + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTapeIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030202.00000000
              + NODE + Local Tape Identifiers + Organizationally given identifiers for tape + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTapeNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01030202.01000000
              + LEAF + Local Tape Number + An organizationally given number for a tape. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiskIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030203.00000000
              + NODE + Disk Identifiers + Disk identifier information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticDisks +
                urn:smpte:ul:060e2b34.01010103.01030203.01000000
              + NODE + Magnetic Disks + Information about magnetic disks. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticDiskNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030203.01010000
              + LEAF + Magnetic Disk Number + An organizationally given number for a magnetic disc or disc pack. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 char max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDiscs +
                urn:smpte:ul:060e2b34.01010103.01030203.02000000
              + NODE + Optical Discs + Information about optical discs. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDiscNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030203.02010000
              + LEAF + Optical Disc Number + An organizationally given number for an optical disc or disc pack. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 char max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalObjectIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01030300.00000000
              + NODE + Local Object Identifiers + Object identifiers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LUID +
                urn:smpte:ul:060e2b34.01010101.01030301.00000000
              + LEAF + LUID + A 4 byte locally unique ID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageName_ISO7 +
                urn:smpte:ul:060e2b34.01010109.01030302.00000000
              + LEAF + Package Name + Identifies a metadata package by name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageName +
                urn:smpte:ul:060e2b34.01010101.01030302.01000000
              + LEAF + Package Name + Identifies a metadata package by name + AAF~Name + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NetworkAndStreamIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01030400.00000000
              + NODE + Network and Stream Identifiers + Information about channel numbering + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelHandle +
                urn:smpte:ul:060e2b34.01010102.01030401.00000000
              + LEAF + Channel Handle + Unique number identifying a channel number in a stream + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamID +
                urn:smpte:ul:060e2b34.01010103.01030402.00000000
              + LEAF + Stream ID + Organizationally given identifier that is the stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 Byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransportStreamID +
                urn:smpte:ul:060e2b34.01010103.01030403.00000000
              + LEAF + Transport Stream ID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceStreamID +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + LEAF + Essence Stream ID + Essence (or its container) stream ID + AAF[1.2:]~EssenceStreamID MXF~EssenceStreamID mxflib[:1.19]~BodySID + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexStreamID +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + LEAF + Index Stream ID + Index table stream ID + AAF[1.2:] MXF~IndexStreamID mxflib[:1.19]~IndexSID + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RP217DataStreamPID +
                urn:smpte:ul:060e2b34.01010109.01030406.00000000
              + LEAF + RP217 Data Stream PID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) for the Data stream per RP217 + AAF[1.3:] ASPA[:0.8] + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RP217VideoStreamPID +
                urn:smpte:ul:060e2b34.01010109.01030407.00000000
              + LEAF + RP217 Video Stream PID + Identifier that is the transport_stream_id in ISO/IEC 13818-1 (MPEG-2 Systems) for the Video stream per RP217 + AAF[1.3:] ASPA[:0.8] + ISO 13818-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericStreamID +
                urn:smpte:ul:060e2b34.0101010d.01030408.00000000
              + LEAF + Generic Stream ID + Stream ID of the linked Generic Stream payload + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAChannelID +
                urn:smpte:ul:060e2b34.0101010e.0103040a.00000000
              + LEAF + MCA Channel ID + The numerical channel identifier within the essence, as defined in SMPTE ST 377-1:2011 Amendment1:2012 (Annex B.23 extension, if applicable). + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030500.00000000
              + NODE + Organizational Program Identifiers + Program identifiers unique within an organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01030501.00000000
              + LEAF + Organizational Program Number + An Identifier, unique only within an organization, for a program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationalProgramNumber +
                urn:smpte:ul:060e2b34.01010103.01030501.01000000
              + LEAF + Organizational Program Number + An Identifier, unique only within an organization, for a program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01030600.00000000
              + NODE + Metadata Identifiers + 16-byte Identifiers for metadata elements + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemDesignatorID +
                urn:smpte:ul:060e2b34.01010103.01030601.00000000
              + LEAF + Item Designator ID + Organizationally given identifier that is the 16-byte Item Designator (SMPTE 336M) for any data or metadata that uses the SMPTE Universal Label + SMPTE 336M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTag +
                urn:smpte:ul:060e2b34.01010105.01030602.00000000
              + LEAF + Local Tag Value + A locally unique registry identifier - the value is the local Tag in the local Registry + AAF names this type "LocalTagType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012004.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTagUniqueID +
                urn:smpte:ul:060e2b34.01010105.01030603.00000000
              + LEAF + Local Tag Unique ID + A Unique Identifier of which the local tag is an alias + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLDOCTYPE_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030604.00000000
              + LEAF + HTML DOCTYPE + The complete document type declaration for an HTML document + AAF + http://www.w3.org/TR/2000/REC-xml-20001006 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLDOCTYPE +
                urn:smpte:ul:060e2b34.01010108.01030604.01000000
              + LEAF + HTML DOCTYPE + The complete document type declaration for an HTML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/2000/REC-xml-20001006 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefix_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030605.00000000
              + LEAF + Namespace Prefix + A Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefix +
                urn:smpte:ul:060e2b34.01010108.01030605.01000000
              + LEAF + Namespace Prefix + A Namespace Prefix used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefixes_ISO7 +
                urn:smpte:ul:060e2b34.01010108.01030606.00000000
              + LEAF + Namespace Prefixes + A list of Namespace Prefixes used in Qnames in an XML document + AAF + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NamespacePrefixes +
                urn:smpte:ul:060e2b34.01010108.01030606.01000000
              + LEAF + Namespace Prefixes + A list of Namespace Prefixes used in Qnames in an XML document + AAF[1.3:] ASPA[:0.8] + http://www.w3.org/TR/1999/REC-xml-names-19990114 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030700.00000000
              + NODE + Channel Identifiers + Identifiers relating to channels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030701.00000000
              + NODE + Audio Channel Identifiers + Identifiers relating to audio channels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCALabelDictionaryID +
                urn:smpte:ul:060e2b34.0101010e.01030701.01000000
              + LEAF + MCA Label Dictionary ID + The globally registered UL that defines the meaning of the MCALabelSubDescriptor instance. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATagSymbol +
                urn:smpte:ul:060e2b34.0101010e.01030701.02000000
              + LEAF + MCA Tag Symbol + Symbol identifying this MCALabelSubDescriptor, which mnemonically reflects the meaning as defined in the MCA Label Dictionary ID, e.g. "cLs" for an AudioChannelLabelSubDescriptor Symbol, "c51" for a SoundfieldGroupLabelSubDescriptor Symbol. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATagName +
                urn:smpte:ul:060e2b34.0101010e.01030701.03000000
              + LEAF + MCA Tag Name + Optional text string that may be given to the MCALabelSubDescriptor to further describe it in human readable form, e.g. "Left Surround" for an AudioChannelLabelSubDescriptor Name, "5.1" for a SoundfieldGroupLabelSubDescriptor Name. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupOfSoundfieldGroupsLinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.04000000
              + LEAF + Group of Soundfield Groups Link ID + MCA Link IDs of the Group of Soundfield Groups to which this Soundfield Group belongs + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCALinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.05000000
              + LEAF + MCA Link ID + Uniquely identifies the audio channel, soundfield group and group of soundfield groups instance described by the MCALabelSubDescriptor and is used to link instances of MCALabelSubDescriptors. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoundfieldGroupLinkID +
                urn:smpte:ul:060e2b34.0101010e.01030701.06000000
              + LEAF + Soundfield Group Link ID + MCA Link ID of the Soundfield Group to which this channel belongs + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicChannelIdentifiers +
                urn:smpte:ul:060e2b34.0101010e.01030703.00000000
              + NODE + Stereoscopic Channel Identifiers + Identifiers relating to eye identification (left/right). + SMPTE ST 2070-1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicEyeID +
                urn:smpte:ul:060e2b34.0101010e.01030703.01000000
              + LEAF + Stereoscopic Eye ID + Universal Label that identifies the eye + SMPTE ST 2070-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StereoscopicDataEssenceCoding +
                urn:smpte:ul:060e2b34.0101010e.01030703.02000000
              + LEAF + Stereoscopic Data Essence Coding + Specifies the data Essence coding type + SMPTE ST 2070-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationMessageIdentifiers +
                urn:smpte:ul:060e2b34.0101010d.01030800.00000000
              + NODE + Operation Message Identifiers + Identifiers relating to the operation message. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityMessageIdentifiers +
                urn:smpte:ul:060e2b34.0101010d.01030801.00000000
              + NODE + Security Message Identifiers + Identifiers relating to the security message. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMRequestID +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + LEAF + ASM Request ID + An identifier associated with the Auditorium Security Message request. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventID +
                urn:smpte:ul:060e2b34.0101010d.01030801.02000000
              + LEAF + ASM Event ID + An identifier associated with the Auditorium Security Message log record item. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyID +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + LEAF + ASM Link Encryption Key ID + An identifier associated with the link encryption key. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocallyUniqueLocators +
                urn:smpte:ul:060e2b34.01010101.01040000.00000000
              + NODE + Locally Unique Locators + Locally unique path definitions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediaLocators +
                urn:smpte:ul:060e2b34.01010101.01040100.00000000
              + NODE + Media Locators + Local paths for a digital media, data, metadata file etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilePath_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040101.00000000
              + LEAF + Local File Path + The local path to a complete digital media, data, metadata etc file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalFilePath +
                urn:smpte:ul:060e2b34.01010103.01040101.01000000
              + LEAF + Local File Path + The local path to a complete digital media, data, metadata etc file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01040102.00000000
              + LEAF + Physical Media Location + A description of the physical location of media - e.g. which archive, place, rack, shelf, position on shelf + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 255 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationName +
                urn:smpte:ul:060e2b34.01010102.01040102.01000000
              + LEAF + Media Location + A description of the physical location of media - e.g. which archive, place, rack, shelf, position on shelf + AAF~Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceTrackNumber +
                urn:smpte:ul:060e2b34.01010102.01040103.00000000
              + LEAF + Track Number + Specifies the intended track number in a sequences of tracks + AAF~PhysicalTrackNumber mxflib[:1.19]~TrackNumber + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackNumberBatch +
                urn:smpte:ul:060e2b34.01010107.01040104.00000000
              + LEAF + Track Number Batch + An unordered list of Track Numbers used to link the System item element to the essence tracks used in the Content Package + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 4*n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAPartitionKind +
                urn:smpte:ul:060e2b34.0101010e.01040105.00000000
              + LEAF + MCA Partition Kind + Partition kind of a complete program such as a "Part", "Post Production Reel" or "Act". + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAPartitionNumber +
                urn:smpte:ul:060e2b34.0101010e.01040106.00000000
              + LEAF + MCA Partition Number + The position of the partition in the sequence of partitions that make up the complete program such as "3" for Reel 3. + SMPTE 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmLocators +
                urn:smpte:ul:060e2b34.01010101.01040700.00000000
              + NODE + Film Locators + Location information for film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040701.00000000
              + LEAF + Edge Code + The edge code on the film eg feet;frames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040702.00000000
              + LEAF + Frame Code + Unique frame number for film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyCode +
                urn:smpte:ul:060e2b34.01010101.01040703.00000000
              + LEAF + Key Code + Machine readable version of frame code + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InkNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01040704.00000000
              + LEAF + Ink Number + Ink number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SynchronizationLocators +
                urn:smpte:ul:060e2b34.01010102.01040900.00000000
              + NODE + Synchronization Locators + Media location information relating to synchronisation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeStart +
                urn:smpte:ul:060e2b34.01010102.01040901.00000000
              + LEAF + Edge Code Start + Specifies the edge code at the beginning of the clip, segment etc + AAF~Start + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProxyLocators +
                urn:smpte:ul:060e2b34.01010101.01041000.00000000
              + NODE + Proxy Locators + Local archival location information for key frames, keys sounds, key text etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyText_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041001.00000000
              + LEAF + Key Text + Local archival location information for key text + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrame_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041002.00000000
              + LEAF + Key Frame + Local archival location information for key frames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeySound_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041003.00000000
              + LEAF + Key Sound + Local archival location information for keys sounds + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyDataOrProgram_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01041004.00000000
              + LEAF + Key Data or Program + Local archival location information for key data or program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Titles +
                urn:smpte:ul:060e2b34.01010101.01050000.00000000
              + NODE + Titles + Titling metadata relating to productions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitleKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050100.00000000
              + LEAF + Title Kind + Kind of title, i.e., project, group of programs, group of series, series, item, program, working, original, item, episode, element, scene, shot etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitleKind +
                urn:smpte:ul:060e2b34.01010103.01050101.00000000
              + LEAF + Title Kind + Kind of title, i.e., project, series, item, program, working, original, item, episode, element, scene, shot etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050200.00000000
              + LEAF + Main Title + The main title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainTitle +
                urn:smpte:ul:060e2b34.01010103.01050201.00000000
              + LEAF + Main Title + The main title + ASPA~Product_Title_Legacy DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050300.00000000
              + LEAF + Secondary Title + The secondary title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryTitle +
                urn:smpte:ul:060e2b34.01010103.01050301.00000000
              + LEAF + Secondary Title + The secondary title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050400.00000000
              + LEAF + Series Number + The alphanumeric series number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesNumber +
                urn:smpte:ul:060e2b34.01010103.01050401.00000000
              + LEAF + Series Number + The alphanumeric series number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodeNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.01050500.00000000
              + LEAF + Episode Number + The alphanumeric episode number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodeNumber +
                urn:smpte:ul:060e2b34.01010103.01050501.00000000
              + LEAF + Episode Number + The alphanumeric episode number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneNumber +
                urn:smpte:ul:060e2b34.01010101.01050600.00000000
              + LEAF + Scene Number + The alphanumeric scene number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.01050601.00000000
              + LEAF + Scene Number + The alphanumeric scene number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TakeNumber +
                urn:smpte:ul:060e2b34.01010101.01050700.00000000
              + LEAF + Take Number + Take number of the instance of the shot + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VersionTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01050800.00000000
              + LEAF + Version Title + The version title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VersionTitle +
                urn:smpte:ul:060e2b34.01010103.01050801.00000000
              + LEAF + Version Title + The version title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MissionIdentifier_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01050900.00000000
              + LEAF + Mission ID + A locally defined identifier for the platform mission number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MissionIdentifier +
                urn:smpte:ul:060e2b34.01010103.01050901.00000000
              + LEAF + Mission ID + A locally defined identifier for the platform mission number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkingTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01050a00.00000000
              + LEAF + Working Title + The (possibly temporary) working title of a production or a production component + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkingTitle +
                urn:smpte:ul:060e2b34.01010104.01050a01.00000000
              + LEAF + Working Title + The (possibly temporary) working title of a production or a production component + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010104.01050b00.00000000
              + LEAF + Original Title + The original title of a production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalTitle +
                urn:smpte:ul:060e2b34.01010104.01050b01.00000000
              + LEAF + Original Title + The original title of a production + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipNumber +
                urn:smpte:ul:060e2b34.01010104.01050c00.00000000
              + LEAF + Clip Number + The alphanumeric number of the Clip + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010104.01050c01.00000000
              + LEAF + Clip Number + The alphanumeric number of the Clip + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandMainTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050d00.00000000
              + LEAF + Brand Main Title + Main Brand title (e.g. Horizon) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandMainTitle +
                urn:smpte:ul:060e2b34.01010105.01050d01.00000000
              + LEAF + Brand Main Title + Main Brand title (e.g. Horizon) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandOriginalTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050e00.00000000
              + LEAF + Brand Original Title + Any original Brand title + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandOriginalTitle +
                urn:smpte:ul:060e2b34.01010105.01050e01.00000000
              + LEAF + Brand Original Title + Any original Brand title + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.01050f00.00000000
              + LEAF + Framework Title + A human readable title for this instance of the Production Framework (e.g. "Wilco Productions version 3") + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTitle +
                urn:smpte:ul:060e2b34.01010105.01050f01.00000000
              + LEAF + Framework Title + A human readable title for this instance of the Production Framework (e.g. "Wilco Productions version 3") + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitle +
                urn:smpte:ul:060e2b34.0101010e.01051000.00000000
              + LEAF + MCA Title + Name of the overall program to which the audio essence track belongs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitleVersion +
                urn:smpte:ul:060e2b34.0101010e.01051100.00000000
              + LEAF + MCA Title Version + Version of the program to which the audio belongs, such as a specific cut of a movie. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCATitleSubVersion +
                urn:smpte:ul:060e2b34.0101010e.01051200.00000000
              + LEAF + MCA Title Sub-Version + Sub-version of the program to which the audio belongs such as a localized rendition that has the same cut as depicted in MCA Version. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAEpisode +
                urn:smpte:ul:060e2b34.0101010e.01051300.00000000
              + LEAF + MCA Episode + Episode of an MCA title. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable + ST 377-4 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01070000.00000000
              + NODE + Local Identifiers + Local identifiers which are not unique other than at low level + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageIdentifiers +
                urn:smpte:ul:060e2b34.01010102.01070100.00000000
              + NODE + Package Identifiers + Local identifiers which are not unique other than at package level + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackID +
                urn:smpte:ul:060e2b34.01010102.01070101.00000000
              + LEAF + Track ID + Specifies the particular track within a package + AAF~SlotID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070102.00000000
              + LEAF + Track Name + Specifies the particular track within a package by a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackName +
                urn:smpte:ul:060e2b34.01010102.01070102.01000000
              + LEAF + Track Name + Specifies the particular track within a package by a name + AAF~SlotName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070102.03000000
              + LEAF + Definition Object Name + Name of item being defined + [sic] Although this is nested under a leaf, it is in use and cannot be moved + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectName +
                urn:smpte:ul:060e2b34.01010102.01070102.03010000
              + LEAF + Definition Object Name + Name of item being defined + AAF~Name MXF + [sic] Although this is nested under a leaf, it is in use and cannot be moved + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentPackageMetadataLink +
                urn:smpte:ul:060e2b34.01010102.01070103.00000000
              + LEAF + Content Package Metadata Link + Defines a local link between essence and its metadata + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.01070104.00000000
              + LEAF + Defined Name + Name of item being defined + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedName +
                urn:smpte:ul:060e2b34.01010102.01070104.01000000
              + LEAF + Defined Name + Name of item being defined + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescribedTrackIDs +
                urn:smpte:ul:060e2b34.01010104.01070105.00000000
              + LEAF + Described Track IDs + Specifies an unordered list of track ID values that identify the tracks which are described + AAF[1.1:]~DescribedSlots ASPA[:0.8]~TrackIDs mxflib[:1.19]~TrackIDs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveClipDescribedTrackIDs +
                urn:smpte:ul:060e2b34.01010105.01070106.00000000
              + LEAF + Descriptive Clip Described Track IDs + Specifies an unordered list of track ID values that identify the tracks which are described + AAF[1.12:]~DescribedSlotIDs mxflib[:1.19]~DescribedSlotIDs + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotTrackIDs +
                urn:smpte:ul:060e2b34.01010105.01070107.00000000
              + LEAF + Shot Track IDs + Specifies an unordered list of 'n' track ID values that identify the tracks in the Package to which this set refers + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 4*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericIdentifiers +
                urn:smpte:ul:060e2b34.01010104.01080000.00000000
              + NODE + Generic Identifiers + Unique Identifiers for non-Broadcasting Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierKind +
                urn:smpte:ul:060e2b34.01010104.01080100.00000000
              + LEAF + Identifier Kind + Specifies the indentification system used - e.g. ISO, UPN etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierValue +
                urn:smpte:ul:060e2b34.01010104.01080200.00000000
              + LEAF + Identifier Value + The value of the identifer + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0000.00000000
              + NODE + Organization Identifiers + Unique Identifiers for non-Broadcasting Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturingOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0100.00000000
              + NODE + Manufacturing Organization Identifiers + Unique Identifiers for Manufacturing Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerIdentifiers +
                urn:smpte:ul:060e2b34.01010102.010a0101.00000000
              + NODE + Manufacturer Identifiers + Unique Identifiers for Manufacturers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceManufacturerName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.010a0101.01000000
              + LEAF + Device Manufacturer Name + The manufacturer or maker of the device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceManufacturerName +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + LEAF + Device Manufacturer Name + The manufacturer or maker of the device + AAF~Manufacturer DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0101.03000000
              + LEAF + Manufacturer ID + An identifier for the manufacturer or maker of the device + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IEEEManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0102.00000000
              + LEAF + IEEE Manufacturer ID + The IEEE registered ID for a particular manufacturer. + IEEE 802 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010d00.00000000 + 3 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AAFManufacturerID +
                urn:smpte:ul:060e2b34.01010102.010a0103.00000000
              + LEAF + AAF Manufacturer ID + The AAF registered ID for a particular manufacturer. + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralOrganizationIdentifiers +
                urn:smpte:ul:060e2b34.01010104.010a0200.00000000
              + NODE + General Organization Identifiers + Unique Identifiers for Organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationCode_ISO7 +
                urn:smpte:ul:060e2b34.01010104.010a0201.00000000
              + LEAF + Organization Code + The identifying Code for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationCode +
                urn:smpte:ul:060e2b34.01010104.010a0201.01000000
              + LEAF + Organization Code + The identifying Code for an organization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRightsIdentifiers +
                urn:smpte:ul:060e2b34.01010101.01100000.00000000
              + NODE + Intellectual Property Rights Identifiers + Unique IDs allocated by IP Rights organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SUISACISACIPI +
                urn:smpte:ul:060e2b34.01010101.01100100.00000000
              + NODE + SUISA CISAC IPI + IP Identifiers allocated by CISAC + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CISACLegalEntityID +
                urn:smpte:ul:060e2b34.01010101.01100101.00000000
              + LEAF + CISAC Legal Entity ID + Natural person or legal entity ID in the International Confederation of Societies of Authors and Composers(CISAC) Interested Parties system + http://www.cisac.org + CISAC Common Information System: Interested Parties Sub-system + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AGICOAIdentifers +
                urn:smpte:ul:060e2b34.01010101.01100200.00000000
              + NODE + AGICOA Identifers + Unique Identifiers allocated by AGICOA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AGICOAID +
                urn:smpte:ul:060e2b34.01010101.01100201.00000000
              + LEAF + AGICOA ID + The Association of International Collective Management of Audio Visual Works (AGICOA) register ID. + http://www.agicoa.org + AGICOA registration standard + true + UnknownContext +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MusicIndustryIdentifiers +
                urn:smpte:ul:060e2b34.01010103.01100300.00000000
              + NODE + Music Industry Identifiers + Identifiers associated with the Music Industry + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordingLabelName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100301.00000000
              + LEAF + Recording Label Name + Name of a publication label - e.g. United Artists, Topic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordingLabelName +
                urn:smpte:ul:060e2b34.01010103.01100301.01000000
              + LEAF + Recording Label Name + Name of a publication label - e.g. United Artists, Topic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CollectionName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100302.00000000
              + LEAF + Collection Name + Name of a published collection - e.g. 'Sinatra Live at the Sands' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CollectionName +
                urn:smpte:ul:060e2b34.01010103.01100302.01000000
              + LEAF + Collection Name + Name of a published collection - e.g. 'Sinatra Live at the Sands' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100303.00000000
              + LEAF + Origin Code + Code indicating the type of source of material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainCatalogNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100304.00000000
              + LEAF + Main Catalog Number + The main catalogue number for a recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogPrefixNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100305.00000000
              + LEAF + Catalog Prefix Number + The alphanumeric prefix to the Main catalogue number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SideNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100306.00000000
              + LEAF + Side Number + Where appropriate, the side number on which the track is recorded. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedTrackNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.01100307.00000000
              + LEAF + Recorded Track Number + The track or band number of a recording. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ADMINISTRATION +
                urn:smpte:ul:060e2b34.01010101.02000000.00000000
              + NODE + ADMINISTRATION + Class 2 is reserved for administrative and business related metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Supplier +
                urn:smpte:ul:060e2b34.01010101.02010000.00000000
              + NODE + Supplier + Details of the content supplying organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceOrganization_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02010100.00000000
              + LEAF + Source Organization + The name of the content supplying organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceOrganization +
                urn:smpte:ul:060e2b34.01010109.02010101.00000000
              + LEAF + Source Organization + The name of the content supplying organization + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplyContractNumber +
                urn:smpte:ul:060e2b34.01010101.02010200.00000000
              + LEAF + Supply Contract Number + The alphanumeric number for the contract for the supply of content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProducerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02010300.00000000
              + LEAF + Original Producer Name + The name of the original content Producer. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProducerName +
                urn:smpte:ul:060e2b34.01010109.02010301.00000000
              + LEAF + Original Producer Name + The name of the original content Producer. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplyingDepartmentName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02010400.00000000
              + LEAF + Supplying Department Name + The name of the supplying department + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierIdentificationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010500.00000000
              + LEAF + Supplier Identification Kind + The supplier identification type (e.g. bank Sort code) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierIdentificationValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010600.00000000
              + LEAF + Supplier Identification Value + The value of supplier identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010700.00000000
              + LEAF + Supplier Account Number + The number of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02010800.00000000
              + LEAF + Supplier Account Name + The name of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplierAccountName +
                urn:smpte:ul:060e2b34.01010104.02010801.00000000
              + LEAF + Supplier Account Name + The name of the supplier account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Product +
                urn:smpte:ul:060e2b34.01010101.02020000.00000000
              + NODE + Product + Abstract information about the media product + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalEpisodeCount +
                urn:smpte:ul:060e2b34.01010101.02020100.00000000
              + LEAF + Total Episode Count + Total number of episodic items in a series + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SeriesInASeriesGroupCount +
                urn:smpte:ul:060e2b34.01010103.02020200.00000000
              + LEAF + Series in a Series Group Count + The total number of series for a related group of series - for example, several series of the same program may be commissioned over many years. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02020300.00000000
              + LEAF + Programming Group Kind + The kind of program group of which the program forms a part - e.g. Anthology, Serial, Series, Themed Cluster, Repeating Series etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupKind +
                urn:smpte:ul:060e2b34.01010105.02020301.00000000
              + LEAF + Programming Group Kind + The kind of program group of which the program forms a part - e.g. Anthology, Serial, Series, Themed Cluster, Repeating Series etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicStartNumber +
                urn:smpte:ul:060e2b34.01010104.02020400.00000000
              + LEAF + Episode Start Number + The episodic number at the start of a series + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicEndNumber +
                urn:smpte:ul:060e2b34.01010104.02020500.00000000
              + LEAF + Episode End Number + The episodic number at the end of a series + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02020600.00000000
              + LEAF + Programming Group Title + The title of a programming group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgrammingGroupTitle +
                urn:smpte:ul:060e2b34.01010105.02020601.00000000
              + LEAF + Programming Group Title + The title of a programming group + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purchaser +
                urn:smpte:ul:060e2b34.01010103.02030000.00000000
              + NODE + Purchaser + Details of the content purchasing organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchasingOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030100.00000000
              + LEAF + Purchasing Organization Name + The name of the content purchasing organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SalesContractNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030200.00000000
              + LEAF + Sales Contract Number + The alphanumeric number for the contract for the sale of content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchasingDepartment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02030400.00000000
              + LEAF + Purchasing Department + The name of the purchasing department + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserIdentificationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030500.00000000
              + LEAF + Purchaser Identification Kind + The purchaser identification type (e.g. bank Sort code) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserIdentificationValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030600.00000000
              + LEAF + Purchaser Identification Value + The value of purchaser identification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030700.00000000
              + LEAF + Purchaser Account Number + The number of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02030800.00000000
              + LEAF + Purchaser Account Name + The name of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PurchaserAccountName +
                urn:smpte:ul:060e2b34.01010104.02030801.00000000
              + LEAF + Purchaser Account Name + The name of the purchaser account + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractDescriptions +
                urn:smpte:ul:060e2b34.01010103.02040000.00000000
              + NODE + Contract Descriptions + Detail descriptive information about a contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractType_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040100.00000000
              + LEAF + Contract Type + Description of the contract type using terms agreed between the contracting parties + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTypeCode +
                urn:smpte:ul:060e2b34.01010103.02040101.00000000
              + LEAF + Contract Type Code + Description of the contract type using terms as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020201.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractType +
                urn:smpte:ul:060e2b34.01010104.02040102.00000000
              + LEAF + Contract Type + Description of the contract type using terms agreed between the contracting parties + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractClauseDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040200.00000000
              + LEAF + Contract Clause Description + The description given to a clause within a contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractClauseDescription +
                urn:smpte:ul:060e2b34.01010104.02040201.00000000
              + LEAF + Contract Clause Description + The description given to a clause within a contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineCode +
                urn:smpte:ul:060e2b34.01010103.02040300.00000000
              + LEAF + Contract Line Code + Description of the product or service covered by a line in the contract, as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020202.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040301.00000000
              + LEAF + Contract Line Name + Description of the product or serve covered by a line in the contract, as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractLineName +
                urn:smpte:ul:060e2b34.01010104.02040302.00000000
              + LEAF + Contract Line Name + Description of the product or service covered by a line in the contract, as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTermsOfBusiness_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040400.00000000
              + LEAF + Contract Terms of Business + The definition of the terms applying to the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractTermsOfBusiness +
                urn:smpte:ul:060e2b34.01010104.02040401.00000000
              + LEAF + Contract Terms of Business + The definition of the terms applying to the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractInstallmentPercentage +
                urn:smpte:ul:060e2b34.01010103.02040500.00000000
              + LEAF + Contract Installment Percentage + The value of a contract installment as a percentage of the total value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Jurisdiction_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02040600.00000000
              + LEAF + Jurisdiction + The Law to which a Contract is bound in the event of a dispute. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Jurisdiction +
                urn:smpte:ul:060e2b34.01010104.02040601.00000000
              + LEAF + Jurisdiction + The Law to which a Contract is bound in the event of a dispute. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rights +
                urn:smpte:ul:060e2b34.01010101.02050000.00000000
              + NODE + Rights + Rights metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Copyright +
                urn:smpte:ul:060e2b34.01010101.02050100.00000000
              + NODE + Copyright + Copyright metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050101.00000000
              + LEAF + Copyright Status + Executive evaluation of copyright status + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightStatus +
                urn:smpte:ul:060e2b34.01010103.02050101.01000000
              + LEAF + Copyright Status + Executive evaluation of copyright status + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightOwnerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050102.00000000
              + LEAF + Copyright Owner Name + The name of the person/organization who owns the copyright. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightOwner +
                urn:smpte:ul:060e2b34.01010103.02050102.01000000
              + LEAF + Copyright Owner Name + The name of the person/organization who owns the copyright. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualRights +
                urn:smpte:ul:060e2b34.01010101.02050200.00000000
              + NODE + Intellectual Rights + Intellectual property rights metadata other than copyright + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050201.00000000
              + LEAF + Intellectual Property Description + A definition of the IP in freeform text + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyDescription +
                urn:smpte:ul:060e2b34.01010103.02050201.01000000
              + LEAF + Intellectual Property Description + A definition of the intellectual property in freeform text + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRight_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050202.00000000
              + LEAF + Intellectual Property Rights + A freeform text definition of what use can be made of an IP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRight +
                urn:smpte:ul:060e2b34.01010103.02050202.01000000
              + LEAF + Intellectual Property Rights + A freeform text definition of what use can be made of an intellectual property + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LegalPersonalities +
                urn:smpte:ul:060e2b34.01010101.02050300.00000000
              + NODE + Legal Personalities + A person or body in whom legal responsibility can be vested + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rightsholder_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050301.00000000
              + LEAF + Rightsholder + A definition of who or what entity can exercise an IP right + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rightsholder +
                urn:smpte:ul:060e2b34.01010103.02050301.01000000
              + LEAF + Rightsholder + A definition of who or what entity can exercise an intellectual property right + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsManagementAuthority_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050302.00000000
              + LEAF + Rights Management Authority + Entity that manages the rights for access to the material. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsManagementAuthority +
                urn:smpte:ul:060e2b34.01010103.02050302.01000000
              + LEAF + Rights Management Authority + Entity that manages the rights for access to the material. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterestedPartyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050303.00000000
              + LEAF + Interested Party Name + A definition or who or what entity has an interest in the right being excercised + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyRightsOptions +
                urn:smpte:ul:060e2b34.01010101.02050400.00000000
              + NODE + Intellectual Property Rights Options + A definition of what options can be excersied within the framework of using an IP Right + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxNumberOfUsages +
                urn:smpte:ul:060e2b34.01010101.02050401.00000000
              + LEAF + Maximum Use Count + Maximum number of usages or repeats + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LicenseOptionsDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02050402.00000000
              + LEAF + License Options Description + Options for prolongation or renewal of license + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsConditionDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02050403.00000000
              + LEAF + Rights Condition Description + Optional condition which restrict a Right - e.g. embargo periods + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsCondition +
                urn:smpte:ul:060e2b34.01010103.02050403.01000000
              + LEAF + Rights Condition Description + Optional condition which restrict a Right - e.g. embargo periods + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsComment_ISO7 +
                urn:smpte:ul:060e2b34.01010108.02050404.00000000
              + LEAF + Rights Comment + General remarks concerning a Right + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsComment +
                urn:smpte:ul:060e2b34.01010108.02050404.01000000
              + LEAF + Rights Comment + General remarks concerning a Right + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FinancialInformation +
                urn:smpte:ul:060e2b34.01010101.02060000.00000000
              + NODE + Financial Information + Details of payments, costs, income money and other considerations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Currencies +
                urn:smpte:ul:060e2b34.01010101.02060100.00000000
              + NODE + Currencies + Information about currencies involved in transactions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrencyCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060101.00000000
              + LEAF + Currency Code + International Standards Organisation Codes for the representation of currencies and funds + ISO-4217 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrencyName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060101.01000000
              + LEAF + Currency Name + The currency of the transaction as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalCurrencyAmount +
                urn:smpte:ul:060e2b34.01010104.02060102.00000000
              + LEAF + Total Currency Amount + The total currency amount + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InstallmentNumber +
                urn:smpte:ul:060e2b34.01010104.02060103.00000000
              + LEAF + Installment Number + The number of any repeat payments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentsAndCosts +
                urn:smpte:ul:060e2b34.01010101.02060200.00000000
              + NODE + Payments and Costs + Payments and costing information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoyaltyPaymentInformation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060201.00000000
              + LEAF + Royalty Payment Information + Royalty payment and other financial information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalPayment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060202.00000000
              + LEAF + Total Payment + The total numerical amount of currency involved in a payment transaction. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060203.00000000
              + LEAF + Payee Account Name + The name of the account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060204.00000000
              + LEAF + Payee Account Number + The number of an account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayeeAccountSortCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060205.00000000
              + LEAF + Payee Account Sort Code + The sort code for the account into which a payment is to be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Income +
                urn:smpte:ul:060e2b34.01010101.02060300.00000000
              + NODE + Income + Income information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoyaltyIncomeInformation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02060301.00000000
              + LEAF + Royalty Income Information + Royalty income and other financial information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalIncome_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060302.00000000
              + LEAF + Total Income + The total numerical amount of currency involved in a sales transaction. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 64 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060303.00000000
              + LEAF + Payer Account Name + The name of the account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060304.00000000
              + LEAF + Payer Account Number + The number of an account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PayerAccountSortCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02060305.00000000
              + LEAF + Payer Account Sort Code + The sort code for the account from which a payment is to come + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AccessControl +
                urn:smpte:ul:060e2b34.01010101.02070000.00000000
              + NODE + Access Control + Details of permitted access to the media product + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RestrictionsOnUse_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02070100.00000000
              + LEAF + Restrictions on Use + Identifies the type or level of restriction applied to the media product. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExCCIData +
                urn:smpte:ul:060e2b34.01010101.02070200.00000000
              + LEAF + ExCCI Data + Extended Content Control Information Data Packet + Proposed SMPTE 401M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 233 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMBadRequestCopy +
                urn:smpte:ul:060e2b34.0101010d.02070300.00000000
              + LEAF + ASM Bad Request Copy + A copy of the ASM request KLV pack that was misunderstood. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMResponse +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + LEAF + ASM Response + An enumerated value that describes the result of the request. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLogRecord +
                urn:smpte:ul:060e2b34.0101010d.02070500.00000000
              + LEAF + ASM Log Record + The logged information associated with a specific event expressed as XML. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMProtocolVersion +
                urn:smpte:ul:060e2b34.0101010d.02070600.00000000
              + LEAF + ASM Protocol Version + A value indicating the protocol suite version in use. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMPlayoutStatus +
                urn:smpte:ul:060e2b34.0101010d.02070700.00000000
              + LEAF + ASM Playout Status + An enumerated value that describes whether a security playout function is being performed. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMBufferOverflowFlag +
                urn:smpte:ul:060e2b34.0101010d.02070800.00000000
              + LEAF + ASM Buffer Overflow Flag + A boolean value indicating whether the key buffer would have overflowed. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMKeyPresentFlag +
                urn:smpte:ul:060e2b34.0101010d.02070900.00000000
              + LEAF + ASM Key Present Flag + A boolean value indicating whether the encryption key is present. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMKeyNotPresentFlag +
                urn:smpte:ul:060e2b34.0101010d.02070a00.00000000
              + LEAF + ASM Key Not Present Flag + A boolean value indicating that the identified key to be purged was not present. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMProjectorCertificateData +
                urn:smpte:ul:060e2b34.0101010d.02070e00.00000000
              + LEAF + ASM Projector Certificate Data + Projector certificate coded using Distinguished Encoding Rules (DER) encoding + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Security +
                urn:smpte:ul:060e2b34.01010101.02080000.00000000
              + NODE + Security + Content encryption/decryption information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemAccess +
                urn:smpte:ul:060e2b34.01010101.02080100.00000000
              + NODE + System Access + Details of permitted access to the technical system or platform + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Username_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02080101.00000000
              + LEAF + Username + A username in a domain + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Username +
                urn:smpte:ul:060e2b34.01010101.02080101.01000000
              + LEAF + Username + A username in a domain + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Password_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02080102.00000000
              + LEAF + Password + An individual password for access to the system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Password +
                urn:smpte:ul:060e2b34.01010101.02080102.01000000
              + LEAF + Password + An individual password for access to the system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 16 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Classification +
                urn:smpte:ul:060e2b34.01010103.02080200.00000000
              + NODE + Classification + Details of permitted access to the technical system or platform + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassification_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080201.00000000
              + LEAF + Security Classification + Marking of the security level or other description of the classification of information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassification +
                urn:smpte:ul:060e2b34.01010109.02080201.01000000
              + LEAF + Security Classification + Marking of the security level or other description of the classification of information + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Caveats +
                urn:smpte:ul:060e2b34.01010103.02080202.00000000
              + LEAF + Security Classification Caveats + Marking of security exceptions or restrictions on the security classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecurityClassificationCaveats +
                urn:smpte:ul:060e2b34.01010109.02080202.01000000
              + LEAF + Security Classification Caveats + Marking of security exceptions or restrictions on the security classification + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassifiedBy_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080203.00000000
              + LEAF + Classified By + Original classification authority name and position or personal identifier; the title of the document or security classification guide used to classify the information + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationReason_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080204.00000000
              + LEAF + Classification Reason + Narrative text explaining the reason for assigning the classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Declassification +
                urn:smpte:ul:060e2b34.01010103.02080205.00000000
              + LEAF + Declassification Date + Date for automatic declassification or the code indicating exemption from automatic declassification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DerivedFrom_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080206.00000000
              + LEAF + Derived From + Narrative text indicating the source document or authority for derivative declassification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationComment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080207.00000000
              + LEAF + Classification Comment + Narrative text further explaining the classification assignment + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationComment +
                urn:smpte:ul:060e2b34.01010109.02080207.01000000
              + LEAF + Classification Comment + Narrative text further explaining the classification assignment + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationAndMarkingSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02080208.00000000
              + LEAF + Classification and Marking System + Classification and marking system used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Encryption +
                urn:smpte:ul:060e2b34.01010101.02090000.00000000
              + NODE + Encryption + Content encryption/decryption information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmEncryption +
                urn:smpte:ul:060e2b34.01010101.02090100.00000000
              + NODE + Film Encryption + Content encryption/decryption information for Film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeys +
                urn:smpte:ul:060e2b34.01010101.02090101.00000000
              + NODE + Scrambling Keys + Information about decryption keys for Film + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeyKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02090101.01000000
              + LEAF + Scrambling Key Kind + The program decryption key type for Film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScramblingKeyValue +
                urn:smpte:ul:060e2b34.01010101.02090101.02000000
              + LEAF + Scrambling Key Value + The program decryption key value for Film + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEncryption +
                urn:smpte:ul:060e2b34.01010109.02090200.00000000
              + NODE + Data Encryption + Content encryption/decryption information for data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEncryptionAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090201.00000000
              + NODE + Data Encryption Algorithms + Information about data encryption algorithms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataHashingAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090202.00000000
              + NODE + Data Hashing Algorithms + Information about data hashing algorithms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaEncryption +
                urn:smpte:ul:060e2b34.01010109.02090300.00000000
              + NODE + Digital Cinema Encryption + Content encryption/decryption information for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaEncryptionAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090301.00000000
              + NODE + Digital Cinema Encryption Algorithms + Information about encryption algorithms for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CipherAlgorithm +
                urn:smpte:ul:060e2b34.01010109.02090301.01000000
              + LEAF + Cipher Algorithm + The cipher algorithm used for Digital Cinema encryption + DMS-Crypto + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicKeyID +
                urn:smpte:ul:060e2b34.01010109.02090301.02000000
              + LEAF + Cryptographic Key ID + The identifier of the Key used for Digital Cinema encryption + DMS-Crypto~KeyIdentifier + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncryptedSourceValue +
                urn:smpte:ul:060e2b34.01010109.02090301.03000000
              + LEAF + Encrypted Source Value + The encrypted essence value + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 20 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalCinemaHashingAlgorithms +
                urn:smpte:ul:060e2b34.01010109.02090302.00000000
              + NODE + Digital Cinema Hashing Algorithms + Information about content hashing algorithms for Digital Cinema + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MICAlgorithm +
                urn:smpte:ul:060e2b34.01010109.02090302.01000000
              + LEAF + MIC Algorithm + The hashing algorithm used for Digital Cinema message integrity check + DMS-Crypto + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIC +
                urn:smpte:ul:060e2b34.01010109.02090302.02000000
              + LEAF + MIC + The Message Integrity Check (Keyed HMAC) + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 20 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifiersAndLocatorsAdministrationAuthorities +
                urn:smpte:ul:060e2b34.01010104.020a0000.00000000
              + NODE + Identifiers and Locators Administration Authorities + An Authority of issuing Identifiers and Locators + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentifierIssuingAuthority_ISO7 +
                urn:smpte:ul:060e2b34.01010104.020a0100.00000000
              + LEAF + Identifier Issuing Authority + The Authority issuing an identifier + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationIssuingAuthority +
                urn:smpte:ul:060e2b34.01010105.020a0101.00000000
              + LEAF + Identifier Issuing Authority + The authority that issued the identification value + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublicationOutlet +
                urn:smpte:ul:060e2b34.01010101.02100000.00000000
              + NODE + Publication Outlet + The content publication outlet - eg Broadcast, internet etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Broadcast +
                urn:smpte:ul:060e2b34.01010101.02100100.00000000
              + NODE + Broadcast + Broadcast Outlet information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Broadcaster +
                urn:smpte:ul:060e2b34.01010101.02100101.00000000
              + NODE + Broadcaster + The broadcasting organization + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.01000000
              + LEAF + Broadcast Organization Name + Name of the broadcasting organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastOrganizationName +
                urn:smpte:ul:060e2b34.01010103.02100101.01010000
              + LEAF + Broadcast Organization Name + Name of the broadcasting organization as text. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastChannel_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.02000000
              + LEAF + Broadcast Channel + Broadcast channel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastServiceName +
                urn:smpte:ul:060e2b34.01010103.02100101.02010000
              + LEAF + Broadcast Service Name + The Broadcast Service - eg News 24 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastMediumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.03000000
              + LEAF + Broadcast Medium Kind + Publishing medium, including transmission (e.g., satellite, cable, terrestrial, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastMediumCode +
                urn:smpte:ul:060e2b34.01010103.02100101.03020000
              + LEAF + Broadcast Medium Code + Code defining the broadcast medium, including transmission (e.g., satellite, cable, terrestrial) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020203.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastRegion +
                urn:smpte:ul:060e2b34.01010103.02100101.04010000
              + LEAF + Broadcast Region + Editorial target region of broadcast + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastRegion_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02100101.05000000
              + LEAF + Broadcast Region + Target region of broadcast + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Publication +
                urn:smpte:ul:060e2b34.01010104.02100200.00000000
              + NODE + Publication + Publishing details + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralPublication +
                urn:smpte:ul:060e2b34.01010104.02100201.00000000
              + NODE + General Publication + General publishing details + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.01000000
              + LEAF + Publishing Organization Name + Name of the publishing organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingOrganizationName +
                urn:smpte:ul:060e2b34.01010104.02100201.01010000
              + LEAF + Publishing Organization Name + Name of the publishing organization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingServiceName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.02000000
              + LEAF + Publishing Service Name + The publication Service + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingServiceName +
                urn:smpte:ul:060e2b34.01010104.02100201.02010000
              + LEAF + Publishing Service Name + The publication Service + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingMediumName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.03000000
              + LEAF + Publishing Medium Name + Publishing medium (e.g., magazine, newspaper, Web) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingMediumName +
                urn:smpte:ul:060e2b34.01010104.02100201.03010000
              + LEAF + Publishing Medium Name + Publishing medium (e.g., magazine, newspaper, Web) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingRegionName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02100201.04000000
              + LEAF + Publishing Region Name + Target region of publication + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublishingRegionName +
                urn:smpte:ul:060e2b34.01010104.02100201.04010000
              + LEAF + Publishing Region Name + Target region of publication + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterPublicationInformation +
                urn:smpte:ul:060e2b34.0101010c.02100202.00000000
              + NODE + Register Publication Information + Contains metadata relating to the published SMPTE registers. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterKind_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.01000000
              + LEAF + Register Kind + The type of the register. Example: Types, Data Elements, Labels, Groups, etc. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterVersion_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.02000000
              + LEAF + Register Version + An incremental number that indicates the version of the register. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEditorName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.03000000
              + LEAF + Register Editor Name + The name of the person who administrates a register or entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterStatusKind_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100202.04000000
              + LEAF + Register Status Kind + Indicates the status of an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItem +
                urn:smpte:ul:060e2b34.0101010c.02100203.00000000
              + NODE + Register Item + Data elements that relate to specific items in the published SMPTE registers. + SMPTE 2045 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.01000000
              + LEAF + Register Item Name + The name of the leaf or node in plain language. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemDefinition_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.02000000
              + LEAF + Register Item Definition + The detailed and unambiguous definition of the data element (leaf) or class/subclass (node). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemSymbol_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.03000000
              + LEAF + Register Item Symbol + The symbol is a name that conforms to computer language syntax restrictions, and it is intended for use in computer languages such as Extensible Markup Language (XML). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemDefiningDocumentName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.04000000
              + LEAF + Register Item Defining Document Name + Indicates the SMPTE document which defines this entry . + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemUL_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.05000000
              + LEAF + Register Item UL + The unique ID of this register entry assigned by SMPTE. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemNotes_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.06000000
              + LEAF + Register Item Notes + Provides additional information that may assist in the interpretation and correct application of the data element (leaf) or class/subclass (node). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemIntroductionVersion_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.07000000
              + LEAF + Register Item Introduction Version + This field records the version number of the register which first recorded the allocation of a data element or class/subclass description against its UL. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemHierarchyLevel_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.08000000
              + LEAF + Register Item Hierarchy Level + This indicates the level of an entry in the class hierarchy of the SMPTE UL-based register. It is calculated from the position of the last active byte of the item designator. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterNodeWildcardFlag_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.09000000
              + LEAF + Register Node Wildcard Flag + Provides information that entries exist under this node which are using wildcards. These wildcard entries shall be expanded always when exchanging SMPTE registers. This wildcard flag in an annotation that the entries under this node were created according to a pattern. An omitted wildcard flag shall have the meaning of "0" (false). + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryStatus_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100203.0a000000
              + LEAF + Register Entry Status + Indicates the status of the entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministration +
                urn:smpte:ul:060e2b34.0101010c.02100204.00000000
              + NODE + Register Administration + Metadata relating to the administration of registers and register items. + SMPTE 2045 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAction_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.01000000
              + LEAF + Register Action + The enumerated action which is underway for an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterApproverName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.02000000
              + LEAF + Register Approver Name + Name of the person who authorizes an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterCreationTime_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.03000000
              + LEAF + Register Creation Time + Date and time when the entry was created. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegistrantName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.04000000
              + LEAF + Registrant Name + Name of the person who registered the metadata item. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemOriginatorName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.05000000
              + LEAF + Register Item Originator Name + Name of the party that originated the request for a new register item or a change to an existing item. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterUserName_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.06000000
              + LEAF + Register User Name + Name of the person who modified the entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterUserTime_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.07000000
              + LEAF + Register User Time + Date and time when the entry has been modified. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationNotes_ISO7 +
                urn:smpte:ul:060e2b34.0101010c.02100204.08000000
              + LEAF + Register Administration Notes + Provides additional information that may assist in the administration of an entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastAndRepeatInformation +
                urn:smpte:ul:060e2b34.01010101.02200000.00000000
              + NODE + Broadcast and Repeat Information + Business information concerning the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BroadcastFlags +
                urn:smpte:ul:060e2b34.01010101.02200100.00000000
              + NODE + Broadcast Flags + Flags concerning aspects of business or administration + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstBroadcastFlag +
                urn:smpte:ul:060e2b34.01010101.02200101.00000000
              + LEAF + First Broadcast Flag + First broadcast of the product + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RepeatNumbers +
                urn:smpte:ul:060e2b34.01010101.02200200.00000000
              + NODE + Repeat Numbers + Information about the repeat status when not a first broadcast + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrentRepeatNumber +
                urn:smpte:ul:060e2b34.01010101.02200201.00000000
              + LEAF + Current Repeat Number + The number of the current repeat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousRepeatNumber +
                urn:smpte:ul:060e2b34.01010101.02200202.00000000
              + LEAF + Previous Repeat Number + The number of the previous repeat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Ratings +
                urn:smpte:ul:060e2b34.01010101.02200300.00000000
              + NODE + Ratings + Information about audience ratings and indices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceRating +
                urn:smpte:ul:060e2b34.01010101.02200301.00000000
              + LEAF + Audience Rating + Audience rating as number of viewers + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceReach +
                urn:smpte:ul:060e2b34.01010101.02200302.00000000
              + LEAF + Audience Reach + The audience reach of the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceShare +
                urn:smpte:ul:060e2b34.01010102.02200303.00000000
              + LEAF + Audience Share + The audience share expressed as a percentage + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudienceAppreciation +
                urn:smpte:ul:060e2b34.01010102.02200304.00000000
              + LEAF + Audience Appreciation + The appeciation index of the program, expressed as points out of 100. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipatingParties +
                urn:smpte:ul:060e2b34.01010101.02300000.00000000
              + NODE + Participating Parties + Details of all parties, contributing to or taking part in the production - staff, contributors, and including those receiving Credits etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndividualsAndGroups +
                urn:smpte:ul:060e2b34.01010101.02300100.00000000
              + NODE + Individuals and Groups + Details of persons or groups of people contributing to or taking part in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NatureOfPersonalityIndividualOrGroup_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300101.00000000
              + LEAF + Nature of Personality (Individual or Group) + Group, Individual etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NatureOfPersonalityIndividualOrGroup +
                urn:smpte:ul:060e2b34.01010103.02300101.01000000
              + LEAF + Nature of Personality (Individual or Group) + Group, Individual etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Production +
                urn:smpte:ul:060e2b34.01010101.02300102.00000000
              + NODE + Production + Details of Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContributionStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300102.01000000
              + LEAF + Contribution Status + Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContributionStatus +
                urn:smpte:ul:060e2b34.01010103.02300102.01010000
              + LEAF + Contribution Status + Performing talent, Non performing talent, Production Staff, Technical staff, Specialist etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportAndAdministrationDetails +
                urn:smpte:ul:060e2b34.01010101.02300103.00000000
              + NODE + Support and Administration Details + Details of support and administative staff or contributors - business mangemenent, resource planning, archiving etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrAdministrationStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300103.01000000
              + LEAF + Support or Administration Status + Cataloguing staff, finance staff etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrAdministrationStatus +
                urn:smpte:ul:060e2b34.01010103.02300103.01010000
              + LEAF + Support or Administration Status + Cataloguing staff, finance staff etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationsAndPublicBodies +
                urn:smpte:ul:060e2b34.01010101.02300200.00000000
              + NODE + Organizations and Public Bodies + Details of Organizations and Public Bodies contributing to or taking part in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300201.00000000
              + LEAF + Organization Kind + Limited company, government department etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationKind +
                urn:smpte:ul:060e2b34.01010103.02300201.01000000
              + LEAF + Organization Kind + Limited company, government department etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationOrPublicBody +
                urn:smpte:ul:060e2b34.01010101.02300202.00000000
              + NODE + Production Organization or Public Body + Details of performing contribution, non-performing contribution, production contribution, technical contribution, specialism etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationRole_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300202.01000000
              + LEAF + Production Organization Role + Role of contributing organization (e.g., film library) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionOrganizationRole +
                urn:smpte:ul:060e2b34.01010103.02300202.01010000
              + LEAF + Production Organization Role + Role of contributing organization (e.g., film library) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportAndAdministrationOrganizationOrPublicBody +
                urn:smpte:ul:060e2b34.01010101.02300203.00000000
              + NODE + Support and Administration Organization or Public Body + Details of support and administrative contribution (e.g., business management, resource planning, archiving etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrganizationRole_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300203.01000000
              + LEAF + Support Organization Role + Role of support/administration organization (e.g., banker) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupportOrganizationRole +
                urn:smpte:ul:060e2b34.01010103.02300203.01010000
              + LEAF + Support Organization Role + Role of support/administration organization (e.g., banker) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionInformation +
                urn:smpte:ul:060e2b34.01010101.02300500.00000000
              + NODE + Job Function Information + Information about the job function or role of participating parties + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300501.00000000
              + LEAF + Job Function Name + The function of the persons(s), organization or public body eg. Editor, Actor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunction +
                urn:smpte:ul:060e2b34.01010103.02300501.01000000
              + LEAF + Job Function Name + The function of the persons(s), organization or public body eg. Editor, Actor + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobFunctionCode +
                urn:smpte:ul:060e2b34.01010103.02300501.02000000
              + LEAF + Job Function Code + Code for the function of the participating parties (e.g., editor, actor) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020204.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoleName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300502.00000000
              + LEAF + Role Name + eg. Name of character played + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoleName +
                urn:smpte:ul:060e2b34.01010103.02300502.01000000
              + LEAF + Role Name + eg. Name of character played + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobTitle_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02300503.00000000
              + LEAF + Job Title + The normal job title for a contact. Eg. Manager, Library Services + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JobTitle +
                urn:smpte:ul:060e2b34.01010103.02300503.01000000
              + LEAF + Job Title + The normal job title for a contact. Eg. Manager, Library Services + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactInformation +
                urn:smpte:ul:060e2b34.01010101.02300600.00000000
              + NODE + Contact Information + Contact information for the participating party + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300601.00000000
              + LEAF + Contact Kind + Client, supplier, useful etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactKind +
                urn:smpte:ul:060e2b34.01010103.02300601.01000000
              + LEAF + Contact Kind + Client, supplier, useful etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactDepartmentName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300602.00000000
              + LEAF + Contact Department Name + Name information for a department within an organization where contact can be made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactDepartment +
                urn:smpte:ul:060e2b34.01010103.02300602.01000000
              + LEAF + Contact Department Name + Name information for a department within an organization where contact can be made + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonOrOrganizationDetails +
                urn:smpte:ul:060e2b34.01010101.02300603.00000000
              + NODE + Person or Organization Details + The name of person(s), organization or public body + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonNames +
                urn:smpte:ul:060e2b34.01010101.02300603.01000000
              + NODE + Person Names + Name information for persons + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FamilyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01010000
              + LEAF + Family Name + The family name of an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FamilyName +
                urn:smpte:ul:060e2b34.01010103.02300603.01010100
              + LEAF + Family Name + The family name of an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01020000
              + LEAF + First Given Name + The first given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01020100
              + LEAF + First Given Name + The first given name for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01030000
              + LEAF + Second Given Name + The second given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01030100
              + LEAF + Second Given Name + The second given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThirdGivenName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.01040000
              + LEAF + Third Given Name + The third given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThirdGivenName +
                urn:smpte:ul:060e2b34.01010103.02300603.01040100
              + LEAF + Third Given Name + The third given name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Salutation_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02300603.01050000
              + LEAF + Salutation + An individual's salutation or title. Eg. Mr., Mrs., Sir + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Salutation +
                urn:smpte:ul:060e2b34.01010104.02300603.01050100
              + LEAF + Salutation + An individual's salutation or title. Eg. Mr., Mrs., Sir + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HonorsQualifications_ISO7 +
                urn:smpte:ul:060e2b34.01010102.02300603.01060000
              + LEAF + Honors and Qualifications + Personal honours and qualifications + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HonorsQualifications +
                urn:smpte:ul:060e2b34.01010104.02300603.01060100
              + LEAF + Honors and Qualifications + Personal honours and qualifications + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.02300603.01070000
              + LEAF + Person Description + Description of a person used to distinguish them from other persons of the same name - e.g. farmer, poet, American dentist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonDescription +
                urn:smpte:ul:060e2b34.01010103.02300603.01070100
              + LEAF + Person Description + Description of a person used to distinguish them from other persons of the same name - e.g. farmer, poet, American dentist. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherGivenNames_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02300603.01080000
              + LEAF + Other Given Names + Other given names for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherGivenNames +
                urn:smpte:ul:060e2b34.01010104.02300603.01080100
              + LEAF + Other Given Names + Other given names for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.02300603.01090000
              + LEAF + Alternate Name + Alternate name for an individual + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateName +
                urn:smpte:ul:060e2b34.01010104.02300603.01090100
              + LEAF + Alternate Name + Alternate name for an individual + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkingName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0000
              + LEAF + Linking Name + A link used between family, given and other names (e.g. den, ten, van den, von) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkingName +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0100
              + LEAF + Linking Name + A link used between family, given and other names (e.g. den, ten, van den, von) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameSuffix_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0000
              + LEAF + Name Suffix + A suffix to a name (e.g. Jr, Sr, III) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameSuffix +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0100
              + LEAF + Name Suffix + A suffix to a name (e.g. Jr, Sr, III) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormerFamilyName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0000
              + LEAF + Former Family Name + Former name of an individual (e.g. maiden name) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormerFamilyName +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0100
              + LEAF + Former Family Name + Former name of an individual (e.g. maiden name) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Nationality_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0000
              + LEAF + Nationality + Nationaility of an individual by origin, birth, or naturalization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Nationality +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0100
              + LEAF + Nationality + Nationaility of an individual by origin, birth, or naturalization + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Citizenship_ISO7 +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0000
              + LEAF + Citizenship + Citizenship of an individual with its attendant duties, rights, and privileges + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Citizenship +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0100
              + LEAF + Citizenship + Citizenship of an individual with its attendant duties, rights, and privileges + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupNames +
                urn:smpte:ul:060e2b34.01010101.02300603.02000000
              + NODE + Group Names + Name information for groups + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.02010000
              + LEAF + Main Name + The main name by which the group is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MainName +
                urn:smpte:ul:060e2b34.01010103.02300603.02010100
              + LEAF + Main Name + The main name by which the group is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.02020000
              + LEAF + Supplementary Name + Supplementary naming information for a group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryName +
                urn:smpte:ul:060e2b34.01010103.02300603.02020100
              + LEAF + Supplementary Name + Supplementary naming information for a group + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationNames +
                urn:smpte:ul:060e2b34.01010101.02300603.03000000
              + NODE + Organization Names + Name information for organizations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationMainName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.03010000
              + LEAF + Organization Main Name + The main name by which an organization is known + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationMainName +
                urn:smpte:ul:060e2b34.01010103.02300603.03010100
              + LEAF + Organization Main Name + The main name by which an organization is known + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryOrganizationName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.02300603.03020000
              + LEAF + Supplementary Organization Name + Supplementary naming information for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SupplementaryOrganizationName +
                urn:smpte:ul:060e2b34.01010103.02300603.03020100
              + LEAF + Supplementary Organization Name + Supplementary naming information for an organization + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Protocols +
                urn:smpte:ul:060e2b34.0101010e.02400000.00000000
              + NODE + Protocols + Elements defined as part of a protocol + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataTransferProtocol +
                urn:smpte:ul:060e2b34.0101010e.02400100.00000000
              + NODE + Aux Data Transfer Protocol + Elements defined as part of the Aux Data Transfer protocol + SMPTE ST 430-14 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataEditUnitRangeStartIndex +
                urn:smpte:ul:060e2b34.0101010e.02400101.00000000
              + LEAF + Aux Data Edit Unit Range Start Index + Index of the first Edit Unit of the timeline interval covered by the transfer + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxEditUnitRangeCount +
                urn:smpte:ul:060e2b34.0101010e.02400102.00000000
              + LEAF + Aux Edit Unit Range Count + Number of Edit Units of the timeline interval covered by the transfer + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockEditUnitIndex +
                urn:smpte:ul:060e2b34.0101010e.02400103.00000000
              + LEAF + Aux Data Block Edit Unit Index + Index of the timeline Edit Unit + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockEditUnitEditRate +
                urn:smpte:ul:060e2b34.0101010e.02400104.00000000
              + LEAF + Aux Data Block Edit Unit Edit Rate + Edit rate of the timeline Edit Unit + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataEssenceCodingUL +
                urn:smpte:ul:060e2b34.0101010e.02400105.00000000
              + LEAF + Aux Data Block Source Data Essence Coding UL + Data Essence Coding UL of the source Aux Data Track File + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataItemLength +
                urn:smpte:ul:060e2b34.0101010e.02400106.00000000
              + LEAF + Aux Data Block Source Data Item Length + Length in bytes of the Source Data Item element + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceDataItem +
                urn:smpte:ul:060e2b34.0101010e.02400107.00000000
              + LEAF + Aux Data Block Source Data Item + Data Item of the source Aux Data Track File + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceCryptographicContextLength +
                urn:smpte:ul:060e2b34.0101010e.02400108.00000000
              + LEAF + Aux Data Block Source Cryptographic Context Length + Length in bytes of the Cryptographic Context Set + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxDataBlockSourceCryptographicContext +
                urn:smpte:ul:060e2b34.0101010e.02400109.00000000
              + LEAF + Aux Data Block Source Cryptographic Context + Cryptographic Context Set, if any, associated with the Elements of the Data Item contained in Source Data Item element + SMPTE ST 430-14 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Interpretive +
                urn:smpte:ul:060e2b34.01010101.03000000.00000000
              + NODE + INTERPRETIVE + Class 3 is reserved for information on interpreting the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Fundamental +
                urn:smpte:ul:060e2b34.01010101.03010000.00000000
              + NODE + Fundamental + Fundamental defining information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountriesAndLanguages +
                urn:smpte:ul:060e2b34.01010101.03010100.00000000
              + NODE + Countries and Languages + Defining information about Countries and languages + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryAndRegionCodes +
                urn:smpte:ul:060e2b34.01010101.03010101.00000000
              + NODE + Country and Region Codes + Country Codes and Region Codes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO3166CountryCode +
                urn:smpte:ul:060e2b34.01010101.03010101.01000000
              + LEAF + ISO 3166 Country Code + International Standards Organisation Codes for the representation of names of countries and their subdivisions + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200100.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionCode +
                urn:smpte:ul:060e2b34.01010103.03010101.02000000
              + LEAF + Region Code + The ISO code that represents a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200200.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryAndRegionNames +
                urn:smpte:ul:060e2b34.01010103.03010101.10000000
              + NODE + Country and Region Names + Country Names and Region Names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010101.10010000
              + LEAF + Country Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryName +
                urn:smpte:ul:060e2b34.01010103.03010101.10010100
              + LEAF + Country Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010101.10020000
              + LEAF + Region Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionName +
                urn:smpte:ul:060e2b34.01010103.03010101.10020100
              + LEAF + Region Name + The ISO name for a Region or Territory + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageCodes +
                urn:smpte:ul:060e2b34.01010101.03010102.00000000
              + NODE + Language Codes + Language Codes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO6391LanguageCode_ISO639 +
                urn:smpte:ul:060e2b34.01010101.03010102.01000000
              + LEAF + ISO 639-1 Language Code + Codes assigned by ISO 639-1 for the identification of languages + ISO 639-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO6391LanguageCode +
                urn:smpte:ul:060e2b34.01010109.03010102.01010000
              + LEAF + ISO 639-1 Language Code + Codes assigned by ISO 639-1 for the identification of languages + ASPA + ISO 639-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextLanguageCodes +
                urn:smpte:ul:060e2b34.01010104.03010102.02000000
              + NODE + Text Language Codes + Language Codes that represent the language used for text + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO639TextLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.02010000
              + LEAF + ISO 639 Text Language Code + The short code that represents the language used for text + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISO639CaptionsLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.02020000
              + LEAF + ISO 639 Captions Language Code + The short code that represents the language used for textual captions displayed on-screen + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkTextLanguageCode +
                urn:smpte:ul:060e2b34.01010105.03010102.02030000
              + LEAF + Framework Text Language Code + The ISO language code of the text in this set and the default language code of all sets contained in this framework + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedTextLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02110000
              + LEAF + Extended Text Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information used for text + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendedCaptionsLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02120000
              + LEAF + Extended Captions Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information used for textual captions displayed on-screen + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkExtendedTextLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.02130000
              + LEAF + Framework Extended Text Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional and script variant information of the text in this set and the default language code of all sets contained in this framework + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646TextLanguageCode +
                urn:smpte:ul:060e2b34.0101010d.03010102.02140000
              + LEAF + RFC 5646 Text Language Code + Identifies the language of the written content as an RFC 5646 code. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTextLanguageCode +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + LEAF + Event Text Language Code + Specifies the language of the event text using RFC 5646 tags + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646LanguageTagList +
                urn:smpte:ul:060e2b34.0101010e.03010102.02160000
              + LEAF + RFC 5646 Language Tag List + Identifies one or more languages as a comma-separated list of RFC 5646 language tags. + SMPTE ST 2067-2, SMPTE ST 429-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpokenLanguageCodes +
                urn:smpte:ul:060e2b34.01010104.03010102.03000000
              + NODE + Spoken Language Codes + Language Codes that represent the language used for speech + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimarySpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03010000
              + LEAF + Primary Spoken Language Code + ISO 639 Language Code for the current primary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondarySpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03020000
              + LEAF + Secondary Spoken Language Code + ISO 639 Language Code for the current secondary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryOriginalLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03030000
              + LEAF + Primary Original Language Code + ISO 639 Language Code for the original primary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryOriginalSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010104.03010102.03040000
              + LEAF + Secondary Original Language Code + ISO 639 Language Code for the original secondary spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200300.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03110000
              + LEAF + Primary Extended Spoken Language Code + ISO 639 Language Code for the original secondary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03120000
              + LEAF + Secondary Extended Spoken Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the secondary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03130000
              + LEAF + Original Extended Spoken Primary Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the original primary spoken language + DMS-1 + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SecondaryOriginalExtendedSpokenLanguageCode +
                urn:smpte:ul:060e2b34.01010107.03010102.03140000
              + LEAF + Secondary Original Extended Spoken Language Code + The RFC-3066-compliant code that specifies the base ISO code for the language as well as regional variant information for the original seconday spoken language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RFC5646SpokenLanguage +
                urn:smpte:ul:060e2b34.0101010d.03010102.03150000
              + LEAF + RFC 5646 Spoken Language + RFC 5646 language tag for this channel or Soundfield Group, e.g. "en-US". + SMPTE ST 377-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageNames +
                urn:smpte:ul:060e2b34.01010103.03010102.10000000
              + NODE + Language Names + Language Names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010102.10010000
              + LEAF + Language Name + The International Standards Organisation name for a language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LanguageName +
                urn:smpte:ul:060e2b34.01010103.03010102.10010100
              + LEAF + Language Name + The International Standards Organisation name for a language + ISO 639 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataInterpretationsAndDefinitions +
                urn:smpte:ul:060e2b34.01010102.03010200.00000000
              + NODE + Data Interpretations and Definitions + Defining information about data interpretation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemInterpretations +
                urn:smpte:ul:060e2b34.01010101.03010201.00000000
              + NODE + System Interpretations + Interpretive information for common data systems + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperatingSystemInterpretations +
                urn:smpte:ul:060e2b34.01010101.03010201.01000000
              + LEAF + Operating System Interpretations + 1-byte code for distinction of common operating systems + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ByteOrder +
                urn:smpte:ul:060e2b34.01010101.03010201.02000000
              + LEAF + Byte Order + Specifies the byte order of the metadata 'MM'=Big endian, 'II'=Little endian + ASPA[0.8] AAF + 'MM'=Big endian, 'II'=Little endian + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceIsIdentified +
                urn:smpte:ul:060e2b34.01010101.03010201.03000000
              + LEAF + Essence Is Identified + Specifies whether the wrapper or container format identifies essence with an SMPTE label or other AUID (False=0) + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectModelVersion +
                urn:smpte:ul:060e2b34.01010102.03010201.04000000
              + LEAF + Object Model Version + Specifies the Internal Object Storage Mechanism Version Number + ASPA[0.8] AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatVersion +
                urn:smpte:ul:060e2b34.01010102.03010201.05000000
              + LEAF + Format Version + Specifies the version of the specification of the format + ASPA[0.8]~Version AAF~Version + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MajorVersion +
                urn:smpte:ul:060e2b34.01010104.03010201.06000000
              + LEAF + Major Version + A major version number. A change in a major version implies non-backwards compatibility + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinorVersion +
                urn:smpte:ul:060e2b34.01010104.03010201.07000000
              + LEAF + Minor Version + A minor version number. A change in a minor version implies some measure of backwards compatibility + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SectorSize +
                urn:smpte:ul:060e2b34.01010104.03010201.08000000
              + LEAF + Sector Size + The size of a unit of data, in bytes. The unit size may be at any granulaity (packet, sector etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KAGSize +
                urn:smpte:ul:060e2b34.01010105.03010201.09000000
              + LEAF + KAG Size + Size of the KLV Alignment Grid (KAG) for this partition, in bytes + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReversedByteOrder +
                urn:smpte:ul:060e2b34.01010105.03010201.0a000000
              + LEAF + Reversed Byte Order + Specifies whether the luma and croma sampling order conforms to ITU-R BT.601. Value will be zero if the byte order conforms, non-zero if the luminance sample preceeds the chroma. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=conforms to ITU-R BT.601 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyDefinitions +
                urn:smpte:ul:060e2b34.01010102.03010202.00000000
              + NODE + Property Definitions + Information for the definition of data properties. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsOptional +
                urn:smpte:ul:060e2b34.01010102.03010202.01000000
              + LEAF + Is Optional + Specifies whether property is optional (false=0) + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSearchable +
                urn:smpte:ul:060e2b34.01010102.03010202.02000000
              + LEAF + Is Searchable + Specifies if information is accessible by searching a database (false=0) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyDefaults +
                urn:smpte:ul:060e2b34.01010102.03010202.03000000
              + NODE + Property Defaults + Information about property defaults + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UseDefaultValue +
                urn:smpte:ul:060e2b34.01010102.03010202.03010000
              + LEAF + Use Default Value + Specifies that a defined default value should be used for a property where the value is not supplied. (False=use supplied value) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultDataValue +
                urn:smpte:ul:060e2b34.01010102.03010202.03020000
              + LEAF + Default Data Value + Specifies the default value of a property or metadata element as defined by the Type definitions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TypeDefinition +
                urn:smpte:ul:060e2b34.01010102.03010203.00000000
              + NODE + Type Definition + Information for the definition of data types + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Size +
                urn:smpte:ul:060e2b34.01010102.03010203.01000000
              + LEAF + Size + Specifies the number of bytes in the integer + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSigned +
                urn:smpte:ul:060e2b34.01010102.03010203.02000000
              + LEAF + Is Signed + Specifies if the integer is signed (false=unsigned) + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementCount +
                urn:smpte:ul:060e2b34.01010102.03010203.03000000
              + LEAF + Element Count + Specifies the number of elements in the array + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementNames +
                urn:smpte:ul:060e2b34.01010102.03010203.04000000
              + LEAF + Element Name List + Specifies, as a single string value, a list of names zero delineated between each name in an enumeration + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementValues +
                urn:smpte:ul:060e2b34.01010102.03010203.05000000
              + LEAF + Type Definition Element Value List + Specifies, as a single string value, a list of values to match the names in the Type Definition Element Name List + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberNames +
                urn:smpte:ul:060e2b34.01010102.03010203.06000000
              + LEAF + Member Name List + Specifies, as a single string value, a list of names zero delineated between each name in a record + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendibleEnumerationElementNames +
                urn:smpte:ul:060e2b34.01010102.03010203.07000000
              + LEAF + Extendible Element Name List + Specifies, as a single string value, a list of names zero delineated between each name in an extendible enumeration + AAF~ElementNames + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtendibleEnumerationElementValues +
                urn:smpte:ul:060e2b34.01010102.03010203.08000000
              + LEAF + Type Definition Extendible Element Values + Specifies as a single string value a list of values to match the SMPTE labels or AUIDs in the Type Definition Extendible Element Names + AAF~ElementValues + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementLength +
                urn:smpte:ul:060e2b34.01010104.03010203.09000000
              + LEAF + Element Length + The length of each element in a list in bytes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetSet +
                urn:smpte:ul:060e2b34.01010102.03010203.0b000000
              + LEAF + Target Set + The path to the object which contains the target + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameValueConstructInterpretations +
                urn:smpte:ul:060e2b34.01010105.0301020a.00000000
              + NODE + Name-Value Construct Interpretations + Defining information about interpreting name-value constructs + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.0301020a.01000000
              + LEAF + Item Name + Defines the name of the parameter as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemName +
                urn:smpte:ul:060e2b34.01010105.0301020a.01010000
              + LEAF + Item Name + Defines the name of the parameter as a string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemValue_ISO7 +
                urn:smpte:ul:060e2b34.01010105.0301020a.02000000
              + LEAF + Item Value + Defines the value of the parameter as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ItemValue +
                urn:smpte:ul:060e2b34.01010105.0301020a.02010000
              + LEAF + Item Value + Defines the value of the parameter as a string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVInterpretations +
                urn:smpte:ul:060e2b34.01010102.03010210.00000000
              + NODE + KLV Interpretations + Defining information about interpreting the KLV construct + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FillerData +
                urn:smpte:ul:060e2b34.01010102.03010210.01000000
              + LEAF + Filler Data + Specifies an empty data element. Intended to act as a space filler. Value may be application dependant. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataValue +
                urn:smpte:ul:060e2b34.01010102.03010210.02000000
              + LEAF + KLV Data Value + An entire KLV triplet encoded as the value + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageKLVData +
                urn:smpte:ul:060e2b34.01010102.03010210.03000000
              + LEAF + Package KLV Data + Specifies a set of references to KLV data associated with the entire package + AAF~KLVData + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentKLVData +
                urn:smpte:ul:060e2b34.01010102.03010210.04000000
              + LEAF + Component KLV Data + Specifies a set of references to KLV data associated with a component within a package + AAF~KLVData + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TerminatingFillerData +
                urn:smpte:ul:060e2b34.01010103.03010210.05000000
              + LEAF + Terminating Filler Data + Specifies an empty data element specifically intended to flag the end of a package of Metadata. Value may be application dependant. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVMetadataSequence +
                urn:smpte:ul:060e2b34.01010107.03010210.06000000
              + LEAF + KLV Metadata Sequence + A sequence of KLV packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageAttributes +
                urn:smpte:ul:060e2b34.01010107.03010210.07000000
              + LEAF + Package Attributes + Specifies a set of references to Tagged Values associated with the entire package + AAF[1.1:]~Attributes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentAttributes +
                urn:smpte:ul:060e2b34.01010107.03010210.08000000
              + LEAF + Component Attributes + Specifies a set of references to Tagged Values associated with a component within a package + AAF[1.1:]~Attributes + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLConstructsAndInterpretations +
                urn:smpte:ul:060e2b34.01010105.03010220.00000000
              + NODE + XML Constructs and Interpretations + Defining information about XML constructs and interpretations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_Indirect +
                urn:smpte:ul:060e2b34.01010105.03010220.01000000
              + LEAF + XML Document Text + An XML document as text. Data type is specified by the value. + http://www.w3.org/TR/REC-xml + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_UTF7 +
                urn:smpte:ul:060e2b34.01010105.03010220.01010000
              + LEAF + XML Document Text + An XML document in UTF-7 text encoding form + http://www.ietf.org/rfc/rfc2152.txt + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText +
                urn:smpte:ul:060e2b34.01010105.03010220.01020000
              + LEAF + XML Document Text + An XML document in UTF-16 text encoding form + ISO 10646-1:2000 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLDocumentText_BiM +
                urn:smpte:ul:060e2b34.01010105.03010220.01030000
              + LEAF + XML Document Text + An XML document in MPEG-7 BiM form + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XMLBiMConstructsInMultipleStreams +
                urn:smpte:ul:060e2b34.01010107.03010220.02000000
              + NODE + XML BiM Constructs in Multiple Streams + Stream identification information for XML document text carried in mutilple simultaneous streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrames +
                urn:smpte:ul:060e2b34.01010107.03010220.02010000
              + NODE + MPEG-7 BiM Decoder Init Frames + Simultaneously streamed MPEG-7 BiM DecoderInit frames + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream1 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010100
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 1) + Stream 1 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream2 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010200
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 2) + Stream 2 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream3 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010300
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 3) + Stream 3 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream4 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010400
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 4) + Stream 4 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream5 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010500
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 5) + Stream 5 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream6 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010600
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 6) + Stream 6 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream7 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010700
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 7) + Stream 7 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMDecoderInitFrameStream8 +
                urn:smpte:ul:060e2b34.01010107.03010220.02010800
              + LEAF + MPEG-7 BiM Decoder Init Frame (Stream 8) + Stream 8 MPEG-7 BiM Decoder Init frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrames +
                urn:smpte:ul:060e2b34.01010107.03010220.02020000
              + NODE + MPEG-7 BiM Access Unit Frames + Simultaneously streamed MPEG-7 BiM Access Unit frames + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream1 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020100
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 1) + Stream 1 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream2 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020200
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 2) + Stream 2 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream3 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020300
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 3) + Stream 3 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream4 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020400
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 4) + Stream 4 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream5 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020500
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 5) + Stream 5 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream6 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020600
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 6) + Stream 6 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream7 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020700
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 7) + Stream 7 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG7BiMAccessUnitFrameStream8 +
                urn:smpte:ul:060e2b34.01010107.03010220.02020800
              + LEAF + MPEG-7 BiM Access Unit Frame (Stream 8) + Stream 8 MPEG-7 BiM Access Unit frames + ISO15938-1 section 7 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03000000
              + NODE + Text Data + Text Data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTF8TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03010000
              + LEAF + UTF-8 Text Data + UTF-8 Text Data + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTF16TextData +
                urn:smpte:ul:060e2b34.0101010d.03010220.03020000
              + LEAF + UTF-16 Text Data + UTF-16 Text Data + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalDimensions +
                urn:smpte:ul:060e2b34.01010101.03010300.00000000
              + NODE + Fundamental Dimensions + Information about the four basic indefinables of natural philosophy + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Length +
                urn:smpte:ul:060e2b34.01010101.03010301.00000000
              + NODE + Length + Descriptive information about length (Default is Metric system, metres) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LengthSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010301.01000000
              + LEAF + Length System Name + Metric, Imperial etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LengthUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010301.02000000
              + LEAF + Length Unit Kind + Units of measurements of length and distance (feet, metres etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Angles +
                urn:smpte:ul:060e2b34.01010101.03010302.00000000
              + NODE + Angles + Descriptive information about Angles (Default is Degrees) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngularUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010302.01000000
              + LEAF + Angular Unit Kind + Degrees, Radians, Grads etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Time +
                urn:smpte:ul:060e2b34.01010101.03010303.00000000
              + NODE + Time + Descriptive information about Time (Default is UTC system). + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeSystemOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010303.01000000
              + LEAF + Time System Offset + Time offset from UTC (Signed hours and minutes, colon delineated) (Default is undefined). Positive is East of UMT; negative is West of UMT + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 6 chars max + +13hours/-12hours +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeUnitKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03010303.02000000
              + LEAF + Time Unit Kind + Frames, seconds, minutes etc. (Default is seconds). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimingBiasCorrection +
                urn:smpte:ul:060e2b34.01010103.03010303.03000000
              + LEAF + Timing Bias Correction + Correction in seconds to be applied to timing metadata or essence time + Positive seconds to be added to the applicable time; negative seconds to be subtracted from the applicable time + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimingBiasCorrectionDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03010303.04000000
              + LEAF + Timing Bias Correction Description + Description of the timing bias computation, reason, etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Mass +
                urn:smpte:ul:060e2b34.01010101.03010304.00000000
              + NODE + Mass + Descriptive information about Mass (Default is Metric system, Kilogramme) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Energy +
                urn:smpte:ul:060e2b34.01010101.03010305.00000000
              + NODE + Energy + Descriptive information about Energy (Default is Joule) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HumanAssignedDescriptors +
                urn:smpte:ul:060e2b34.01010101.03020000.00000000
              + NODE + Human Assigned Descriptors + Descriptors (Human Assigned) relating to analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Categorization +
                urn:smpte:ul:060e2b34.01010101.03020100.00000000
              + NODE + Categorization + Analytical categorisation of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedContentClassification +
                urn:smpte:ul:060e2b34.01010101.03020101.00000000
              + NODE + Content Classification + Content classification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentCodingSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.01000000
              + LEAF + Content Coding System + The system of coding for program classification eg Escort 2.4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 31 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.02000000
              + LEAF + Program Kind + Type of program (e.g., cartoon, film, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Genre_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.03000000
              + LEAF + Genre + Programme genre (e.g., entertainment, current affairs magasine, Italo Western, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Genre +
                urn:smpte:ul:060e2b34.01010103.03020101.03010000
              + LEAF + Genre + Programme genre (e.g., entertainment, current affairs magasine, Italo Western, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetAudience_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020101.04000000
              + LEAF + Target Audience + Target audience (e.g., children, 17 to 32, elderly, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetAudience +
                urn:smpte:ul:060e2b34.01010103.03020101.04010000
              + LEAF + Target Audience + Target audience (e.g., children, 17 to 32, elderly, ...) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramMaterialClassificationCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020101.10000000
              + LEAF + Program Material Classification Code + The resulting delineated classification code from the classification system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogingAndIndexing +
                urn:smpte:ul:060e2b34.01010101.03020102.00000000
              + NODE + Cataloging and Indexing + Archival analysis of the essence metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogDataStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.01000000
              + LEAF + Catalog Data Status + The current status of the catalogue as a freeform text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThesaurusName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.02000000
              + LEAF + Thesaurus Name + The name of a specialized vocabulary of selected words or concepts for a particular field, e.g. a particular cataloguing, indexing or thesaurus system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThesaurusName +
                urn:smpte:ul:060e2b34.01010104.03020102.02010000
              + LEAF + Thesaurus Name + The name of a specialized vocabulary of selected words or concepts for a particular field, e.g. a particular cataloguing, indexing or thesaurus system + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Theme_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.03000000
              + LEAF + Theme + The category of the Theme of the content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Theme +
                urn:smpte:ul:060e2b34.01010103.03020102.03010000
              + LEAF + Theme + The category of the Theme of the content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentClassification +
                urn:smpte:ul:060e2b34.01010101.03020102.04000000
              + LEAF + Content Classification + The value of the content classification as a (possibly subdivided) alphanumeric string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020102.04010000
              + LEAF + Subject Name + The Subject being indexed expressed as a Name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectName +
                urn:smpte:ul:060e2b34.01010103.03020102.04020000
              + LEAF + Subject Name + The Subject being indexed expressed as a Name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Keywords_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.05000000
              + LEAF + Keywords + Words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Keywords +
                urn:smpte:ul:060e2b34.01010103.03020102.05010000
              + LEAF + Keywords + Words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrames_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.06000000
              + LEAF + Key Frames + Freeform textual reference to a key frame of video in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeySounds_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.07000000
              + LEAF + Key Sounds + Freeform textual reference to a key sound in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyData_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020102.08000000
              + LEAF + Key Data + Freeform textual reference to a key piece of data or program in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedCategoryName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.09000000
              + LEAF + Assigned Category Name + Freeform textual name assigned by the user to a category - as in, for example, a column header + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Tag +
                urn:smpte:ul:060e2b34.01010102.03020102.09010000
              + LEAF + Assigned Category Name + Freeform textual name assigned by the user to a category - as in, for example, a column header + AAF~Name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssignedCategoryValue_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0a000000
              + LEAF + Assigned Category Value + Freeform textual value for an assigned category + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndirectValue +
                urn:smpte:ul:060e2b34.01010102.03020102.0a010000
              + LEAF + Assigned Category Value + Freeform textual value for an assigned category + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotList_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0b000000
              + LEAF + Shot List + Freeform textual listing of shots, for example indexed against time or frame count + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageUserComments +
                urn:smpte:ul:060e2b34.01010102.03020102.0c000000
              + LEAF + Package User Comments + Specifies a vector of references to categorized package comments + AAF~UserComments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueInWords_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0d000000
              + LEAF + Cue-In Words + The actual words on the sound track or a textual reference to music etc. at the in-cue point + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InCueWords +
                urn:smpte:ul:060e2b34.01010104.03020102.0d010000
              + LEAF + Cue-In Words + The actual words on the sound track or a textual reference to music etc. at the in-cue point + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueOutWords_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020102.0e000000
              + LEAF + Cue-Out Words + The words on the sound track or a textual reference to music etc. at the out-cue point + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OutCueWords +
                urn:smpte:ul:060e2b34.01010104.03020102.0e010000
              + LEAF + Cue-Out Words + The words on the sound track or a textual reference to music etc. at the out-cue point + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrameSampleCount +
                urn:smpte:ul:060e2b34.01010103.03020102.0f000000
              + LEAF + Key Frame Sample Count + The number of key frame samples in the subject digital video file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020102.10000000
              + LEAF + Keypoint Kind + The Kind of keypoint - e.g. shot category, keyword, key picture, key sound etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointKind +
                urn:smpte:ul:060e2b34.01010104.03020102.10010000
              + LEAF + Keypoint Kind + The Kind of keypoint - e.g. shot category, keyword, key picture, key sound etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointValue_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020102.11000000
              + LEAF + Keypoint Value + The Value of the keypoint - i.e. the kind of framing, lens effect etc or the actual keyword, key texture, key timbre etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointValue +
                urn:smpte:ul:060e2b34.01010104.03020102.11010000
              + LEAF + Keypoint Value + The Value of the keypoint - i.e. the kind of framing, lens effect etc or the actual keyword, key texture, key timbre etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkThesaurusName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020102.15000000
              + LEAF + Framework Thesaurus Name + The name of the default specialized vocabulary of selected words or concepts for a particular field used in a framework, e.g. a particular cataloguing, indexing or thesaurus system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameworkThesaurusName +
                urn:smpte:ul:060e2b34.01010105.03020102.15010000
              + LEAF + Framework Thesaurus Name + The name of the default specialized vocabulary of selected words or concepts for a particular field used in a framework, e.g. a particular cataloguing, indexing or thesaurus system + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentUserComments +
                urn:smpte:ul:060e2b34.01010107.03020102.16000000
              + LEAF + Component User Comments + Specifies a vector of references to comments on a Component + AAF[1.1:]~UserComments + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAAudioContentKind +
                urn:smpte:ul:060e2b34.0101010e.03020102.20000000
              + LEAF + MCA Audio Content Kind + The MCA Audio Content Kind item shall indicate the kind of content contained in the audio essence as described in SMPTE RP 428-4. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MCAAudioElementKind +
                urn:smpte:ul:060e2b34.0101010e.03020102.21000000
              + LEAF + MCA Audio Element Kind + The MCA Audio Element Kind item shall indicate the kind of audio element contained in the audio essence as described in SMPTE RP 428-4. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescription +
                urn:smpte:ul:060e2b34.01010101.03020106.00000000
              + NODE + Textual Description + A textual characterization of the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Abstract_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.01000000
              + LEAF + Abstract + A brief narrative summary of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1024 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Abstract +
                urn:smpte:ul:060e2b34.01010103.03020106.01010000
              + LEAF + Abstract + A brief narrative summary of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purpose_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.02000000
              + LEAF + Purpose + A summary of the intentions with which the data set was developed. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Purpose +
                urn:smpte:ul:060e2b34.01010103.03020106.02010000
              + LEAF + Purpose + A summary of the intentions with which the data set was developed. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Description_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.03000000
              + LEAF + Description + A freeform textual descrition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Description +
                urn:smpte:ul:060e2b34.01010103.03020106.03010000
              + LEAF + Description + A freeform textual descrition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextDataDescription +
                urn:smpte:ul:060e2b34.0101010d.03020106.03020000
              + LEAF + Text Data Description + A freeform text description. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.04000000
              + LEAF + Color Descriptor + eg. Black and white, tinted etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.04010000
              + LEAF + Color Descriptor + eg. Black and white, tinted etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020106.05000000
              + LEAF + Format Descriptor + eg. Letterbox, Pillarbox etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.05010000
              + LEAF + Format Descriptor + eg. Letterbox, Pillarbox etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntentDescriptor_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020106.06000000
              + LEAF + Intent Descriptor + A freeform textual descrition written before production implementation etc. started - e.g. at the scripting stage. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntentDescriptor +
                urn:smpte:ul:060e2b34.01010103.03020106.06010000
              + LEAF + Intent Descriptor + A freeform textual descrition written before production implementation etc. started - e.g. at the scripting stage. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescriptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020106.07000000
              + LEAF + Textual Description Kind + A summary of the use for which the description was made - e.g. billings, the production companies original description, a full production description etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextualDescriptionKind +
                urn:smpte:ul:060e2b34.01010103.03020106.07010000
              + LEAF + Textual Description Kind + A summary of the use for which the description was made - e.g. billings, the production companies original description, a full production description etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSynopsis_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.08000000
              + LEAF + Group Synopsis + Synopsis of the group, series, serial etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSynopsis +
                urn:smpte:ul:060e2b34.01010105.03020106.08010000
              + LEAF + Group Synopsis + Synopsis of the group, series, serial etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSynopsis_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.09000000
              + LEAF + Annotation Synopsis + Synopsis of the A/V content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSynopsis +
                urn:smpte:ul:060e2b34.01010105.03020106.09010000
              + LEAF + Annotation Synopsis + Synopsis of the A/V content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0a000000
              + LEAF + Annotation Description + A free-form textual description of the A/V content + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0a010000
              + LEAF + Annotation Description + A free-form textual description of the A/V content + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0b000000
              + LEAF + Scripting Kind + Description of the scripting kind as a text string (e.g. lighting, transcript etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingKind +
                urn:smpte:ul:060e2b34.01010105.03020106.0b010000
              + LEAF + Scripting Kind + Description of the scripting kind as a text string (e.g. lighting, transcript etc) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingText_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0c000000
              + LEAF + Scripting Text + The scripting text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingText +
                urn:smpte:ul:060e2b34.01010105.03020106.0c010000
              + LEAF + Scripting Text + The scripting text string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0d000000
              + LEAF + Shot Description + A freeform textual description of the shot defined by this set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0d010000
              + LEAF + Shot Description + A freeform textual description of the shot defined by this set + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0e000000
              + LEAF + Annotation Kind + Specifies the kind of annotation, e.g. Technical, Editorial, Archival etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationKind +
                urn:smpte:ul:060e2b34.01010105.03020106.0e010000
              + LEAF + Annotation Kind + Specifies the kind of annotation, e.g. Technical, Editorial, Archival etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03020106.0f000000
              + LEAF + Related Material Description + A freeform textual description of related material of any kind + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialDescription +
                urn:smpte:ul:060e2b34.01010105.03020106.0f010000
              + LEAF + Related Material Description + A freeform textual description of related material of any kind + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFMarkerDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020106.10000000
              + LEAF + JFIF Marker Description + A freeform textual description of the JFIF image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFMarkerDescription +
                urn:smpte:ul:060e2b34.01010109.03020106.10010000
              + LEAF + JFIF Marker Description + A freeform textual description of the JFIF image + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLMetaDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020106.11000000
              + LEAF + HTML Meta Description + A freeform textual description of a Web page intended for use in the HTML "meta" element + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HTMLMetaDescription +
                urn:smpte:ul:060e2b34.01010109.03020106.11010000
              + LEAF + HTML Meta Description + A freeform textual description of a Web page intended for use in the HTML "meta" element + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Stratum +
                urn:smpte:ul:060e2b34.01010101.03020107.00000000
              + NODE + Stratum + The descriptive stratum of the archival content analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StratumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020107.01000000
              + LEAF + Stratum Kind + eg. Background, action, sound natures etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Subtitling +
                urn:smpte:ul:060e2b34.0101010e.03020108.00000000
              + NODE + Subtitling + Information about subtitles + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTextKind +
                urn:smpte:ul:060e2b34.0101010e.03020108.01000000
              + LEAF + Event Text Kind + Identifies the type (purpose) of the event text type, e.g. subtitles or closed captions. + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + STLLineNumber +
                urn:smpte:ul:060e2b34.0101010e.03020108.02000000
              + LEAF + STL Line Number + The line number on which a specific language is being visible + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Assessments +
                urn:smpte:ul:060e2b34.01010101.03020200.00000000
              + NODE + Assessments + Assesments of editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Awards +
                urn:smpte:ul:060e2b34.01010101.03020201.00000000
              + NODE + Awards + Awards relating to editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndividualAwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020201.01000000
              + LEAF + Individual Award Name + Awards granted to individuals + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramAwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020201.02000000
              + LEAF + Program Award Name + Awards granted to program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020201.03000000
              + LEAF + Festival Name + The festival or award ceremony at which an award was made. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalName +
                urn:smpte:ul:060e2b34.01010104.03020201.03010000
              + LEAF + Festival Name + The festival or award ceremony at which an award was made. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardName_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020201.04000000
              + LEAF + Award Name + Name of the award + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardName +
                urn:smpte:ul:060e2b34.01010104.03020201.04010000
              + LEAF + Award Name + Name of the award + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010104.03020201.05000000
              + LEAF + Award Category + Name of the award classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardCategory +
                urn:smpte:ul:060e2b34.01010104.03020201.05010000
              + LEAF + Award Category + Name of the award classification + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NominationCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010108.03020201.06000000
              + LEAF + Nomination Category + Nomination category of the award (e.g. best actor, best director etc.) + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NominationCategory +
                urn:smpte:ul:060e2b34.01010108.03020201.06010000
              + LEAF + Nomination Category + Nomination category of the award (e.g. best actor, best director etc.) + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualitativeValues +
                urn:smpte:ul:060e2b34.01010101.03020202.00000000
              + NODE + Qualitative Values + Assessed values relating to editorial, technical etc aspects of the content and contributors to it + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AssetValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.01000000
              + LEAF + Asset Value + Assessment of the program quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.02000000
              + LEAF + Content Value + Assessment of the content value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CulturalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.03000000
              + LEAF + Cultural Value + Assessment of the cultural quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AestheticValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.04000000
              + LEAF + Aesthetic Value + Assessment of the asthetic quality + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HistoricalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.05000000
              + LEAF + Historical Value + Assessment of the historic value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TechnicalValue_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.06000000
              + LEAF + Technical Value + Assessment of the technical value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OtherValues_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03020202.07000000
              + LEAF + Other Values + Assessment of other relevant qualities + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TechnicalCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03020300.00000000
              + NODE + Technical Comments and Descriptions + Technical comments or descriptions relating to system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03020301.00000000
              + NODE + Object Comments and Descriptions + Comments or descriptions relating to Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020301.01000000
              + LEAF + Object Kind + Specifies the kind of Object. E.g. a plugin + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectKind +
                urn:smpte:ul:060e2b34.01010102.03020301.01010000
              + LEAF + Object Kind + Specifies the kind of Object. E.g. a plugin + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020301.02000000
              + LEAF + Object Description + Provides human informative description about the object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinitionObjectDescription +
                urn:smpte:ul:060e2b34.01010102.03020301.02010000
              + LEAF + Object Description + Provides human informative description about the object + AAF~Description MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDescriptionCode +
                urn:smpte:ul:060e2b34.01010103.03020301.02020000
              + LEAF + Object Description Code + Provides human informative description about the object as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020205.00000000 + 8 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralComments +
                urn:smpte:ul:060e2b34.01010103.03020302.00000000
              + NODE + General Comments + Note form technical comments and descriptions of a general nature + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020302.01000000
              + LEAF + Description Kind + The name of a descriptive comment or note. Eg. Peters comment, Noise + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptionKind +
                urn:smpte:ul:060e2b34.01010103.03020302.01010000
              + LEAF + Description Kind + The name of a descriptive comment or note. Eg. Peters comment, Noise + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveComment_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020302.02000000
              + LEAF + Descriptive Comment + The comment or note as text. E.g. Head banding, + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveComment +
                urn:smpte:ul:060e2b34.01010103.03020302.02010000
              + LEAF + Descriptive Comment + The comment or note as text. E.g. Head banding, + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDescriptiveComments +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100000
              + NODE + Descriptive Comment for a Device + Technical comments and descriptions of a general nature for a device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensAttributes +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100100
              + LEAF + Lens Attributes + Informative description of the lens in use (as a text string). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraAttributes +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100200
              + LEAF + Camera Attributes + Informative description of the camera in use (as a text string). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100600.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveNames +
                urn:smpte:ul:060e2b34.01010102.03020400.00000000
              + NODE + Descriptive Names + Assigned descriptive names + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectNames +
                urn:smpte:ul:060e2b34.01010103.03020401.00000000
              + NODE + Object Names + Descriptive names assigned to Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericObjectNames +
                urn:smpte:ul:060e2b34.01010102.03020401.01000000
              + NODE + Generic Object Names + Descriptive names assigned to Generic Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020401.01010000
              + LEAF + Object Name + Specifies the name of the object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionName_ISO7 +
                urn:smpte:ul:060e2b34.01010109.03020401.02000000
              + LEAF + MetaDefinition Name + Specifies the display name of the item being defined + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionName +
                urn:smpte:ul:060e2b34.01010102.03020401.02010000
              + LEAF + MetaDefinition Name + Specifies the display name of the item being defined + AAF~Name MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditorialCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010102.03020500.00000000
              + NODE + Editorial Comments and Descriptions + Comments or descriptions of an editorial nature + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCommentKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020501.00000000
              + LEAF + Shot Comment Kind + The type of descriptive comment or note (e.g., 'Shot' or 'Lighting Mood') + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCommentKind +
                urn:smpte:ul:060e2b34.01010107.03020501.01000000
              + LEAF + Shot Comment Kind + The type of descriptive comment or note (e.g., 'Shot' or 'Lighting Mood') + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotComment_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03020502.00000000
              + LEAF + Shot Comment + The comment or note about a shot (e.g., 'general view of valley in autumn', 'badly recorded' or 'sombre mood') + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotComment +
                urn:smpte:ul:060e2b34.01010107.03020502.01000000
              + LEAF + Shot Comment + The comment or note about a shot (e.g., 'general view of valley in autumn', 'badly recorded' or 'sombre mood') + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SlateInformation +
                urn:smpte:ul:060e2b34.01010104.03020503.00000000
              + LEAF + Slate Information + Slate information as a text string + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipKind +
                urn:smpte:ul:060e2b34.01010105.03020504.00000000
              + LEAF + Clip Kind + The kind of clip as an enumerated string (e.g., still, graphic, moving pictures, sound etc.) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HumanAssignedContextDescriptions +
                urn:smpte:ul:060e2b34.01010103.03020600.00000000
              + NODE + Human-Assigned Context Descriptions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContextDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010103.03020601.00000000
              + LEAF + Context Description + A textual anotation of the context of the production. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MachineAssignedOrComputedDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030000.00000000
              + NODE + Machine-Assigned or Computed Descriptions + Descriptors (Machine Assigned or Computed) relating to analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCategorization +
                urn:smpte:ul:060e2b34.01010101.03030100.00000000
              + NODE + Automated Categorization + Automated analytical categorization of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedContentClassification +
                urn:smpte:ul:060e2b34.01010101.03030101.00000000
              + NODE + Automated Content Classification + Automated content classification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCatalogingAndIndexing +
                urn:smpte:ul:060e2b34.01010101.03030102.00000000
              + NODE + Automated Cataloging and Indexing + Automated cataloguing and indexing by archival analysis of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedCatalogingCatalogDataStatus_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.01000000
              + LEAF + Catalog Data Status + The current status of the catalogue as a freeform text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CatalogingSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.02000000
              + LEAF + Cataloging System Name + The particular Cataloguing, Indexing or Thesaurus system used by the automated system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeywords_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.06000000
              + LEAF + Computed Keywords + Automatically derived words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeywords +
                urn:smpte:ul:060e2b34.01010103.03030102.06010000
              + LEAF + Computed Keywords + Automatically derived words or phrases summarizing an aspect of the data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeyFrames_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.07000000
              + LEAF + Computed Key Frames + Automatically derived freeform textual reference to a key frame of video in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeySounds_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.08000000
              + LEAF + Computed Key Sounds + Automatically derived freeform textual reference to a key sound in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedKeyData_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030102.09000000
              + LEAF + Computed Key Data + Automatically derived freeform textual reference to a key piece of data or program in the data set + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedTextualDescription +
                urn:smpte:ul:060e2b34.01010101.03030106.00000000
              + NODE + Computed Textual Description + Automated textual characterization of the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutomatedStratum +
                urn:smpte:ul:060e2b34.01010101.03030107.00000000
              + NODE + Automated Stratum + Automatically derived descriptive stratum of the archival content analysis of the content + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedStratumKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.03030107.01000000
              + LEAF + Computed Stratum Kind + Automatically derived descriptive stratum of the content (e.g., background, action, sound nature) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedTechnicalCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030300.00000000
              + NODE + Computed Technical Comments and Descriptions + Technical comments or descriptions relating to system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010101.03030301.00000000
              + NODE + Computed Object Comments and Descriptions + Comments or descriptions relating to objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03030301.01000000
              + LEAF + Computed Object Kind + Specifies the kind of object (e.g., a plugin) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComputedObjectKind +
                urn:smpte:ul:060e2b34.01010102.03030301.01010000
              + LEAF + Computed Object Kind + Specifies the kind of object (e.g., a plugin) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersionString_ISO7 +
                urn:smpte:ul:060e2b34.01010102.03030301.02000000
              + LEAF + Version Number String + Specifies the string version number of the code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersionString +
                urn:smpte:ul:060e2b34.01010102.03030301.02010000
              + LEAF + Version Number String + Specifies the string version number of the code + AAF~VersionString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginVersion +
                urn:smpte:ul:060e2b34.01010102.03030301.03000000
              + LEAF + Version Number + Specifies the version number of the code + AAF~VersionNumber + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectIdentificationConfidence +
                urn:smpte:ul:060e2b34.01010103.03030301.04000000
              + LEAF + Object Identification Confidence + Percentage confidence that an identified object in the current field of view is the same object identified, detected or tracked in another or previous view. This is an indication that the track of a moving object has been maintained. + Format is PPPD where PPP is the percentage confidence from 0 (zero) to 100 and D is tenths of a percent. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectHorizontalAverageDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.05000000
              + LEAF + Object Horizontal Average Dimension + Average number of horizontal pixels when a bounding rectangle is placed around an object in the frame or field of view. + Sides of the bounding rectangle are parallel to the sides of the image frame. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectVerticalAverageDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.06000000
              + LEAF + Object Vertical Average Dimension + Average number of vertical pixels or lines when a bounding rectangle is placed around an object in the frame or field of view. + Sides of the bounding rectangle are parallel to the sides of the image frame. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectAreaDimension +
                urn:smpte:ul:060e2b34.01010103.03030301.07000000
              + LEAF + Object Area Dimension + Count of the number of pixels comprising an object in the frame or field of view. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DerivedSummaryInformation +
                urn:smpte:ul:060e2b34.01010102.03030302.00000000
              + NODE + Derived Summary Information + Summary Information derived from other Metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WAVESummary +
                urn:smpte:ul:060e2b34.01010102.03030302.01000000
              + LEAF + WAVE Summary + Summary info according to WAVE Chunk format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AIFCSummary +
                urn:smpte:ul:060e2b34.01010102.03030302.02000000
              + LEAF + AIFC Summary + Summary info according to AIFC Chunk format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFSummary +
                urn:smpte:ul:060e2b34.01010102.03030302.03000000
              + LEAF + TIFF Summary + Summary info according to TIFF format + AAF~Summary + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceCommentsAndDescriptions +
                urn:smpte:ul:060e2b34.01010105.03030310.00000000
              + NODE + Device Comments and Descriptions + Technical comments or descriptions relating to devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceUsageDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.03030310.01000000
              + LEAF + Device Usage Description + Freeform textual description of the function or use of the device in the production of a specific content item + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceUsageDescription +
                urn:smpte:ul:060e2b34.01010105.03030310.01010000
              + LEAF + Device Usage Description + Freeform textual description of the function or use of the device in the production of a specific content item + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Parametric +
                urn:smpte:ul:060e2b34.01010101.04000000.00000000
              + NODE + PARAMETRIC + Class 4 is reserved for parametric and configuration metadata. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndImageEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010000.00000000
              + NODE + Video and Image Essence Characteristics + All parametric aspects of the video/image essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalImageCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010100.00000000
              + NODE + Fundamental Image Characteristics + Fundamental characteristics of the image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AspectRatios +
                urn:smpte:ul:060e2b34.01010101.04010101.00000000
              + NODE + Aspect Ratios + Specifies the horizontal to vertical aspect ratio of the image. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageAspectRatio +
                urn:smpte:ul:060e2b34.01010101.04010101.01000000
              + LEAF + Presentation Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the whole image as it is to be presented to avoid geometric distortion and hence including any black edges. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureAspectRatio_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010101.02000000
              + LEAF + Capture Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the image captured at the sensor - hence after the (possibly anamorphic) lens. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportAspectRatio +
                urn:smpte:ul:060e2b34.01010102.04010101.03000000
              + LEAF + Viewport Aspect Ratio + Specifies the horizontal to vertical aspect ratio of the image viewport - ie. The desired shot as it is framed for capture and thus the aspect ratio at which the image must be viewed to avoid geometric distortion. May also therefore be a sub-selection of a larger image, possibly of a different aspect ratio. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalActionSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.04000000
              + LEAF + Horizontal Action Safe Percentage + Specifies the percentage of the image which lies outside the horizontal safe area for action: expressed as the ratio of one side as a percentage of the total width of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalActionSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.05000000
              + LEAF + Vertical Action Safe Percentage + Specifies the percentage of the image which lies outside the vertical safe area for action: expressed as the ratio of one side as a percentage of the total height of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalGraphicsSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.06000000
              + LEAF + Horizontal Graphics Safe Percentage + Specifies the percentage of the image which lies outside the horizontal safe area for graphics: expressed as the ratio of one side as a percentage of the total width of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalGraphicsSafePercentage +
                urn:smpte:ul:060e2b34.01010103.04010101.07000000
              + LEAF + Vertical Graphics Safe Percentage + Specifies the percentage of the image which lies outside the vertical safe area for graphics: expressed as the ratio of one side as a percentage of the total height of the scan. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerceivedDisplayFormat +
                urn:smpte:ul:060e2b34.01010103.04010101.08000000
              + LEAF + Perceived Display Format Name + Colloquial description of the image when viewed in its intended aspect ratio on a display of another aspect ratio - e.g. pillarbox, letterbox, mixed etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerceivedDisplayFormatCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010101.08010000
              + LEAF + Perceived Display Format Code + A code for the colloquial description of the image when viewed in its intended aspect ratio on a display of another aspect ratio (e.g., a code for pillarbox, letterbox, mixed) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AFDBarData +
                urn:smpte:ul:060e2b34.0101010c.04010101.09000000
              + LEAF + AFD and Bar Data + The Active Format Description and Bar Data is a concatenated series of codes, flags, and values that signal the active image area being used for program content. The content and structure of the payload information value shall be coded as described in SMPTE 2016-3. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PanScanInformation +
                urn:smpte:ul:060e2b34.0101010c.04010101.0a000000
              + LEAF + Pan Scan Information + The Pan-Scan information is a concatenated series of codes, flags, and values that describe a variable image viewport and the output aspect ratio. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010200.00000000
              + NODE + Image Source Characteristics + Fundamental characteristics of the image source + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OptoElectronicFormulation +
                urn:smpte:ul:060e2b34.01010101.04010201.00000000
              + NODE + Opto-Electronic Formulation + Fundamental opto-elecronic transfer etc characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010201.01000000
              + NODE + Transfer Characteristics + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureGammaEquation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01010000
              + LEAF + Capture Gamma Equation + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureGammaEquation_Rational +
                urn:smpte:ul:060e2b34.01010101.04010201.01010100
              + LEAF + Capture Gamma Equation + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferCharacteristic +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + LEAF + Transfer Characteristic + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels at signal origination. + AAF + SMPTE ST 377-1:2011 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020102.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LumaEquation_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01020000
              + LEAF + Luma Equation + Specifies the equation used to derive luma and chroma from gamma-corrected RGB signals + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorimetryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01030000
              + LEAF + Colorimetry Code + The fundamental color coding that relates the scene CIE tri-stimulus values (X, Y, Z) to the linear video levels (R, G, B). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingEquations +
                urn:smpte:ul:060e2b34.01010102.04010201.01030100
              + LEAF + Coding Equations + The fundamental color coding that relates the scene CIE tri-stimulus values (X, Y, Z) to the linear video levels (R, G, B). + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020106.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalFormCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010201.01040000
              + LEAF + Signal Form Code + Code specifies the component sequence for the video pixel matrix (eg RGB, YUV etc). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoColorKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010201.01050000
              + LEAF + Video Color Kind + The type of color of the video (B/W, color, etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorPrimaries_ISO7 +
                urn:smpte:ul:060e2b34.01010109.04010201.01060000
              + LEAF + Color Primaries + The set of color primaries used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorPrimaries +
                urn:smpte:ul:060e2b34.01010109.04010201.01060100
              + LEAF + Color Primaries + The set of color primaries used + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020105.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PresentationGammaEquation_GammaCode +
                urn:smpte:ul:060e2b34.01010102.04010201.01100000
              + LEAF + Presentation Gamma Equation + Specifies the non-linear relationship between the input video signal levels and the resulting displayed light levels on the display. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020206.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PresentationGammaEquation +
                urn:smpte:ul:060e2b34.01010102.04010201.01100100
              + LEAF + Presentation Gamma Equation + Specifies the non-linear relationship between the input video signal levels and the resulting displayed light levels on the display. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020102.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorParameters +
                urn:smpte:ul:060e2b34.01010107.04010202.00000000
              + NODE + Sensor Parameters + Settings and adjustments for image sensors + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorMode_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04010202.01000000
              + LEAF + Sensor Mode + The mode setting of the sensor as a text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 12 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndImageScanningParameters +
                urn:smpte:ul:060e2b34.01010101.04010300.00000000
              + NODE + Video and Image Scanning Parameters + Fundemental scanning and sequencing information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalParameters +
                urn:smpte:ul:060e2b34.01010101.04010301.00000000
              + NODE + Temporal Parameters + Time dependant sequencing and scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorFieldCode +
                urn:smpte:ul:060e2b34.01010101.04010301.01000000
              + LEAF + Color Field Code + Identifies the color field of the source video field for video derived from composite sources. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 00h = undefined (default), 01h ~ 08h = field number +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldRate +
                urn:smpte:ul:060e2b34.01010101.04010301.02000000
              + LEAF + Field Rate + Specifies the field rate of the video scanning system. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameRate_UInt16 +
                urn:smpte:ul:060e2b34.01010101.04010301.03000000
              + LEAF + Frame Rate + The rate that video images are captured, expressed in frames per second. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureFrameRate +
                urn:smpte:ul:060e2b34.0101010d.04010301.03010000
              + LEAF + Capture Frame Rate + The rate that video images are captured expressed in frames per second (for example, 50:1, 60000:1001). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameLayout +
                urn:smpte:ul:060e2b34.01010101.04010301.04000000
              + LEAF + Frame Layout + Specifies frame layout (interlaced, single frame, full frame, etc.) + AAF + AAF names this type "LayoutType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010108.00000000 + 1 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SamplingStructureCode +
                urn:smpte:ul:060e2b34.01010101.04010301.05000000
              + LEAF + Sampling Structure Code + A code that specifies the analogue or digital sampling structure for the video scanning system. Eg Progressive + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020207.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldDominance +
                urn:smpte:ul:060e2b34.01010102.04010301.06000000
              + LEAF + Field Dominance + Specifies whether the first frame of picture is field 1 or field 2 + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010121.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureDisplayRate +
                urn:smpte:ul:060e2b34.01010103.04010301.07000000
              + LEAF + Picture Display Rate + The rate at which pictures must be displayed in order to achieve the intended editorial effect, expressed in pictures per second. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalParameters +
                urn:smpte:ul:060e2b34.01010101.04010302.00000000
              + NODE + Vertical Parameters + Vertical scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalLinesPerFrame +
                urn:smpte:ul:060e2b34.01010101.04010302.01000000
              + LEAF + Total Lines per Frame + Specifies the number of lines in a total frame in the video scanning system. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveLinesPerFrame +
                urn:smpte:ul:060e2b34.01010101.04010302.02000000
              + LEAF + Active Lines per Frame + Specifies the total number of lines (rows) in the active portion of a frame in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LeadingLines +
                urn:smpte:ul:060e2b34.01010101.04010302.03000000
              + LEAF + Leading Lines + Specifies the number of leading lines in the processed image to be blanked before display + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrailingLines +
                urn:smpte:ul:060e2b34.01010101.04010302.04000000
              + LEAF + Trailing Lines + Specifies the number of trailing lines in the processed image to be blanked before display + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoLineMap +
                urn:smpte:ul:060e2b34.01010102.04010302.05000000
              + LEAF + Video Line Map + Specifies the line numbers of the two top lines of the active picture + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010300.00000000 + 2 x 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayF2Offset +
                urn:smpte:ul:060e2b34.01010105.04010302.07000000
              + LEAF + Display F2 Offset + Topness Adjustment for displayed picture + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredF2Offset +
                urn:smpte:ul:060e2b34.01010105.04010302.08000000
              + LEAF + Stored F2 Offset + Topness Adjustment for stored picture + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveFormatDescriptor +
                urn:smpte:ul:060e2b34.01010105.04010302.09000000
              + LEAF + Active Format Descriptor + Specifies the intended framing of the content within the displayed image (4:3 in 16:9 etc.) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LineNumber +
                urn:smpte:ul:060e2b34.01010105.04010302.0a000000
              + LEAF + Line Number + Specifies the video line number to which a block of essence data corresponds + ITU-R BT.470-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternativeCenterCuts +
                urn:smpte:ul:060e2b34.0101010e.04010302.0b000000
              + LEAF + Alternative Center Cuts + Specifies the alternate aspect ratio subset(s) of the active area, containing all of the critical action and centered on the active area. + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 + 4+4+16*N +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalParameters +
                urn:smpte:ul:060e2b34.01010101.04010303.00000000
              + NODE + Horizontal Parameters + Horizontal scanning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogVideoCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010400.00000000
              + NODE + Analog Video Coding Characteristics + Information about the analogue coding of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogVideoSystemName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010401.00000000
              + LEAF + Analog Video System Name + PAL, NTSC etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoSignal +
                urn:smpte:ul:060e2b34.01010102.04010401.01000000
              + LEAF + Video Signal + PAL, NTSC etc + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010103.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoScanningCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04010404.00000000
              + NODE + Video Scanning Characteristics + Information about the scanning of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScanningDirection +
                urn:smpte:ul:060e2b34.01010105.04010404.01000000
              + LEAF + Scanning Direction + Enumerated Scanning Direction + AAF[1.1:] + AAF names this type "OrientationType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010128.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010500.00000000
              + NODE + Digital Video and Image Coding Parameters + Information about the essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04010501.00000000
              + NODE + Digital Video and Image Sampling Parameters + Inflormation about the digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceSampleRate +
                urn:smpte:ul:060e2b34.01010101.04010501.01000000
              + LEAF + Luminance Sample Rate + The luminance sample rate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveSamplesPerLine +
                urn:smpte:ul:060e2b34.01010101.04010501.02000000
              + LEAF + Active Samples per Line + Total number of samples (columns) in the active portion of a line in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalSamplesPerLine +
                urn:smpte:ul:060e2b34.01010101.04010501.03000000
              + LEAF + Total Samples per Line + Specifies the number of samples in a total line in the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SamplingHierarchyCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010501.04000000
              + LEAF + Sampling Hierarchy Code + A code that specifies the component sampling hierarchy for the video pixel matrix. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalSubsampling +
                urn:smpte:ul:060e2b34.01010101.04010501.05000000
              + LEAF + Horizontal Sub-sampling + Specifies ratio of luminance subsampling to chrominance subsampling in horizontal direction + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorSiting +
                urn:smpte:ul:060e2b34.01010101.04010501.06000000
              + LEAF + Color Siting + Specifies how to compute subsampled chrominance values + AAF + AAF names this type"ColorSitingType" + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010105.00000000 + 1 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledHeight +
                urn:smpte:ul:060e2b34.01010101.04010501.07000000
              + LEAF + Sampled Height + Specifies the integer height of the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledWidth +
                urn:smpte:ul:060e2b34.01010101.04010501.08000000
              + LEAF + Sampled Width + Specifies the integer width of the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledXOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.09000000
              + LEAF + Sampled X-Offset + Specifies the X offset of the sampled image relative to the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampledYOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0a000000
              + LEAF + Sampled Y-Offset + Specifies the Y offset of the sampled image relative to the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayHeight +
                urn:smpte:ul:060e2b34.01010101.04010501.0b000000
              + LEAF + Display Height + Specifies the height of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayWidth +
                urn:smpte:ul:060e2b34.01010101.04010501.0c000000
              + LEAF + Display Width + Specifies the width of the presented image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayXOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0d000000
              + LEAF + Display X-Offset + Specifies the X offset of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayYOffset +
                urn:smpte:ul:060e2b34.01010101.04010501.0e000000
              + LEAF + Display Y-Offset + Specifies the Y offset of the presented image relative to the sampled image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilteringCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010501.0f000000
              + LEAF + Filtering Code + Specifies the spectral filtering that has been applied to the digital samples of the video signal. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalSubsampling +
                urn:smpte:ul:060e2b34.01010102.04010501.10000000
              + LEAF + Vertical Sub-sampling + Specifies ratio of luminance subsampling to chrominance subsampling in vertical direction + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAverageBitRate +
                urn:smpte:ul:060e2b34.01010103.04010501.11000000
              + LEAF + Video Average Bit Rate + The Average bit rate in bits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoFixedBitRate +
                urn:smpte:ul:060e2b34.01010103.04010501.12000000
              + LEAF + Video Fixed Bit Rate + Fixed = TRUE, variable = FALSE + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveHeight +
                urn:smpte:ul:060e2b34.0101010e.04010501.13000000
              + LEAF + Active Height + Specifies the height of the Active Area Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveWidth +
                urn:smpte:ul:060e2b34.0101010e.04010501.14000000
              + LEAF + Active Width + Specifies the width of the Active Area Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveXOffset +
                urn:smpte:ul:060e2b34.0101010e.04010501.15000000
              + LEAF + Active X Offset + Specifies the horizontal offset of the Active Area Rectangle from the left side of the Display Rectangle + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveYOffset +
                urn:smpte:ul:060e2b34.0101010e.04010501.16000000
              + LEAF + Active Y Offset + Specifies the vertical offset of the Active Area Rectangle from the upper side of the Display Rectangle. + SMPTE ST2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageStorageParameters +
                urn:smpte:ul:060e2b34.01010101.04010502.00000000
              + NODE + Digital Video and Image Storage Parameters + Information about image storage parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredHeight +
                urn:smpte:ul:060e2b34.01010101.04010502.01000000
              + LEAF + Stored Height + Specifies the integer height of the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredWidth +
                urn:smpte:ul:060e2b34.01010101.04010502.02000000
              + LEAF + Stored Width + Specifies the integer width of the stored image in pixels + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBILineCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.03000000
              + LEAF + VBI Line Count + Number of VBI lines stored in a Data Element + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredVBILineNumber +
                urn:smpte:ul:060e2b34.0101010a.04010502.04000000
              + LEAF + Stored VBI Line Number + The line number of this stored VBI line according to SMPTE 377M-2004 E.1.5 + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIWrappingType +
                urn:smpte:ul:060e2b34.0101010a.04010502.05000000
              + LEAF + VBI Wrapping Type + Enumerated wrapping type of the VBI data payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadSampleCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.06000000
              + LEAF + VBI Payload Sample Count + A count of the number of samples stored in the payload byte array + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadByteArray +
                urn:smpte:ul:060e2b34.0101010a.04010502.07000000
              + LEAF + VBI Payload Byte Array + An array of Uint8 samples containing the coded VBI data + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPacketCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.08000000
              + LEAF + ANC Packet Count + Number of ANC packets stored in a Data Element + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StoredANCLineNumber +
                urn:smpte:ul:060e2b34.0101010a.04010502.09000000
              + LEAF + Stored ANC Line Number + The line number of this stored ANC packet according to SMPTE 377M-2004 E.1.5 + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCWrappingType +
                urn:smpte:ul:060e2b34.0101010a.04010502.0a000000
              + LEAF + ANC Wrapping Type + Enumerated wrapping type of the VBI data payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadSampleCount +
                urn:smpte:ul:060e2b34.0101010a.04010502.0b000000
              + LEAF + ANC Payload Sample Count + A count of the number of samples stored in the payload byte array + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadByteArray +
                urn:smpte:ul:060e2b34.0101010a.04010502.0c000000
              + LEAF + ANC Payload Byte Array + An array of Uint8 samples containing the coded ANC data + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalQuantizationAndLevelParameters +
                urn:smpte:ul:060e2b34.01010101.04010503.00000000
              + NODE + Digital Quantization and Level Parameters + Inflormation about the digital quantisation and levels + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerPixel_UInt8 +
                urn:smpte:ul:060e2b34.01010101.04010503.01000000
              + LEAF + Bits per Pixel + The maximum number of significant bits for the value in each band of each pixel without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerPixel +
                urn:smpte:ul:060e2b34.01010102.04010503.01010000
              + LEAF + Bits per Pixel + The maximum number of significant bits for the value in each band of each pixel without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoundingMethodCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010503.02000000
              + LEAF + Rounding Method Code + Specifies the rounding method that has been applied to the digital samples of the video signal. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlackRefLevel +
                urn:smpte:ul:060e2b34.01010101.04010503.03000000
              + LEAF + Black Reference Level + Specifies digital luminance associated with black + AAF~BlackReferenceLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WhiteRefLevel +
                urn:smpte:ul:060e2b34.01010101.04010503.04000000
              + LEAF + White Reference Level + Specifies digital luminance associated with white + AAF~WhiteReferenceLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorRange +
                urn:smpte:ul:060e2b34.01010102.04010503.05000000
              + LEAF + Color Range Levels + Specifies the range of the color levels. + AAF + ITU-R BT.601-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PixelLayout +
                urn:smpte:ul:060e2b34.01010102.04010503.06000000
              + LEAF + Pixel Layout + Specifies pixel quantisation and order as a data structure. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaSampleDepth +
                urn:smpte:ul:060e2b34.01010102.04010503.07000000
              + LEAF + Alpha Sample Depth + Specifies the number of bits in the alpha signal. + AAF~AlphaSamplingWidth + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Palette +
                urn:smpte:ul:060e2b34.01010102.04010503.08000000
              + LEAF + Palette + Specifies, as a single string, the fixed length values of each color in the palette used. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaletteLayout +
                urn:smpte:ul:060e2b34.01010102.04010503.09000000
              + LEAF + Palette Layout + Specifies pixel quantisation and order in the palette as a data structure. + AAF + Annex E.2.46 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentDepth +
                urn:smpte:ul:060e2b34.01010102.04010503.0a000000
              + LEAF + Component Depth + Specifies the number of active bits per sample (e.g. 8, 10, 16 etc) + AAF~ComponentWidth + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentMaxRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0b000000
              + LEAF + Component Maximum Ref + Maximum value for RGB components e.g. 235 or 940 (8 or 10 bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentMinRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0c000000
              + LEAF + Component Minimum Ref + Minumum value for RGB components e.g. 16 or 64 (8 or 10-bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaMaxRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0d000000
              + LEAF + Alpha Maximum Ref + Maximum value for alpha component e.g. 235 or 940 (8 or 10 bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaMinRef +
                urn:smpte:ul:060e2b34.01010105.04010503.0e000000
              + LEAF + Alpha Minimum Ref + Minumum value for alpha components e.g. 16 or 64 (8 or 10-bits) + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBIPayloadSampleCoding +
                urn:smpte:ul:060e2b34.0101010a.04010503.0f000000
              + LEAF + VBI Payload Sample Coding + Enumerated sample coding of VBI payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ANCPayloadSampleCoding +
                urn:smpte:ul:060e2b34.0101010a.04010503.10000000
              + LEAF + ANC Payload Sample Coding + Enumerated sample coding of ANC payload + SMPTE 436M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageSignalTypeIdentifiers +
                urn:smpte:ul:060e2b34.01010105.04010504.00000000
              + NODE + Digital Video and Image Signal Type Identifiers + Identifiers of the specific standard to which a video signal conforms + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoPayloadIdentifier +
                urn:smpte:ul:060e2b34.01010105.04010504.01000000
              + LEAF + Video Payload Identifier + SMPTE 352M-2001 Video Payload Identifier + SMPTE 352M-2001 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010e00.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoPayloadIdentifier2002 +
                urn:smpte:ul:060e2b34.01010105.04010504.02000000
              + LEAF + Video Payload Identifier 2002 + SMPTE 352M-2002 Video Payload Identifier + Note 2002 revision date + SMPTE 352M-2002 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010e00.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoAndImageCompressionParameters +
                urn:smpte:ul:060e2b34.01010101.04010600.00000000
              + NODE + Digital Video and Image Compression Parameters + Information about the digital video compression scheme used (MPEG, DV etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureCompression +
                urn:smpte:ul:060e2b34.01010102.04010601.00000000
              + LEAF + Video Coding Scheme ID + Specifies the Compression scheme used + AAF~Compression + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010602.00000000
              + NODE + MPEG Coding Parameters + Information about MPEG video coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG2CodingParameters +
                urn:smpte:ul:060e2b34.01010101.04010602.01000000
              + NODE + MPEG-2 Coding Parameters + Information about MPEG video coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldFrameTypeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010602.01010000
              + LEAF + Field Frame Type Code + Identifies the field or frame type of the source video image for video derived from compressed sources. Eg, I B or P + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 char +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleSequence +
                urn:smpte:ul:060e2b34.01010105.04010602.01020000
              + LEAF + Single Sequence Flag + TRUE if the essence consists of a single MPEG sequence. False if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ConstantBPictureCount +
                urn:smpte:ul:060e2b34.01010105.04010602.01030000
              + LEAF + Constant B Picture Flag + TRUE if the number of B frames is always constant + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodedContentScanning +
                urn:smpte:ul:060e2b34.01010105.04010602.01040000
              + LEAF + Coded Content Scanning Kind + The type of scanning used in MPEG video coded content as a code (e.g., 0=Unknown, 1=Progressive, 2=Interlaced, 3=Mixed) + AAF[1.12:] + SMPTE381M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LowDelay +
                urn:smpte:ul:060e2b34.01010105.04010602.01050000
              + LEAF + Low Delay Indicator + TRUE if low delay mode was used in the sequence + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClosedGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01060000
              + LEAF + Closed GOP Indicator + TRUE if closed_gop is set in all GOP Headers, per 13818-1 IBP descriptor + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdenticalGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01070000
              + LEAF + Identical GOP Indicator + TRUE if every GOP in the sequence is constructed the same, per 13818-1 IBP descriptor + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxGOP +
                urn:smpte:ul:060e2b34.01010105.04010602.01080000
              + LEAF + Maximum GOP Size + Specifies the maximum occurring spacing between I frames, per 13818-1 IBP descriptor. A value of 0 or the absence of this property implies no limit to the maximum GOP + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxBPictureCount +
                urn:smpte:ul:060e2b34.01010105.04010602.01090000
              + LEAF + Maximum B Picture Count + Specifies the maximum number of B pictures between P or I frames, equivalent to 13818-2 annex D (M-1) + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProfileAndLevel +
                urn:smpte:ul:060e2b34.01010105.04010602.010a0000
              + LEAF + Profile And Level + Specifies the MPEG-2 video profile and level. The value is taken directly from the profile_and_level_indication in the MPEG-2 sequence header extension. For main profile @ main level, the value is 0x48. For 4:2:2 profile @ main level, the value is 0x85 + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitRate +
                urn:smpte:ul:060e2b34.01010105.04010602.010b0000
              + LEAF + Bit Rate + Maximum bit rate of MPEG video elementary stream in bit/s as defined in ISO-13818-2 bit_rate property + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualCodingParameters +
                urn:smpte:ul:060e2b34.0101010d.04010602.02000000
              + NODE + MPEG-4 Visual Coding Parameters + Describes MPEG-4 Visual coding parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualVOPCodingType +
                urn:smpte:ul:060e2b34.0101010d.04010602.02010000
              + LEAF + MPEG-4 Visual VOP Coding Type + Identifies whether a VOP is an intra-coded VOP (I), predictive-coded VOP (P), bidirectionally predictive-coded (B) or sprite coded (S). + true + UnknownContext + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualSingleSequence +
                urn:smpte:ul:060e2b34.0101010d.04010602.02020000
              + LEAF + MPEG-4 Visual Single Sequence + TRUE if the essence consists of a single MPEG sequence. False if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualConstantBVOPs +
                urn:smpte:ul:060e2b34.0101010d.04010602.02030000
              + LEAF + MPEG-4 Visual Constant B-VOPs + TRUE if the number of B-VOPs is always constant. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualCodedContentType +
                urn:smpte:ul:060e2b34.0101010d.04010602.02040000
              + LEAF + MPEG-4 Visual Coded Content Type + 0= "Unknown" 1= "Progressive" 2= "Interlaced" 3= "Mixed" An enumerated value which tells if the underlying content which was MPEG coded was of a known type. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012d.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualLowDelay +
                urn:smpte:ul:060e2b34.0101010d.04010602.02050000
              + LEAF + MPEG-4 Visual Low Delay + TRUE if the VOL contains no B-VOPs. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualClosedGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02060000
              + LEAF + MPEG-4 Visual Closed GOV + TRUE if closed_gov is set in all GOV headers. An example is defined in closed_gop_flag of ISO/IEC 13818-1 IBP descriptor. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualIdenticalGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02070000
              + LEAF + MPEG-4 Visual Identical GOV + TRUE if every GOV in the sequence is constructed the same. An example is defined in identical_gop_flag of ISO/IEC 13818-1 IBP descriptor. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualMaxGOV +
                urn:smpte:ul:060e2b34.0101010d.04010602.02080000
              + LEAF + MPEG-4 Visual Max GOV + Specifies the maximum occurring spacing between I frames. An example is defined in max_gop_length of ISO/IEC 13818-1 IBP descriptor. A value of 0 or the absence of this property implies no limit to the maximum GOV or the maximum GOV is unknown. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualBVOPCount +
                urn:smpte:ul:060e2b34.0101010d.04010602.02090000
              + LEAF + MPEG-4 Visual B-VOP Count + Specifies the maximum number of B-VOPs between P or I-VOPs. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualProfileAndLevel +
                urn:smpte:ul:060e2b34.0101010d.04010602.020a0000
              + LEAF + MPEG-4 Visual Profile And Level + Specifies the MPEG-4 Part 2 video profile and level. The meaning of the bits is given in Table G.1 of ISO/IEC 14496-2. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG4VisualBitRate +
                urn:smpte:ul:060e2b34.0101010d.04010602.020b0000
              + LEAF + MPEG-4 Visual Bit Rate + Maximum bit rate of MPEG-4 Part.2 video ES in bit/s.An example is defined in ISO/IEC 14496-2 bit_rate property. + SMPTE 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEG2000CodingParameters +
                urn:smpte:ul:060e2b34.0101010a.04010603.00000000
              + NODE + JPEG 2000 Coding Parameters + Information about JPEG 2000 picture coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.01000000
              + LEAF + Rsiz + An enumerated value that defines the decoder capabilities. Values are defined in ISO/IEC 15444-1 Annex A.5 Table A-10. Other values may be defined in amendments to ISO/IEC 15444-1 or in related international standards documents. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Xsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.02000000
              + LEAF + Xsiz + Width of the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Ysiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.03000000
              + LEAF + Ysiz + Height of the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.04000000
              + LEAF + XOsiz + Horizontal offset from the origin of the reference grid to the left side of the image area, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.05000000
              + LEAF + YOsiz + Vertical offset from the origin of the reference grid to the top side of the image area, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XTsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.06000000
              + LEAF + XTsiz + Width of one reference tile with respect to the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YTsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.07000000
              + LEAF + YTsiz + Height of one reference tile with respect to the reference grid, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + XTOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.08000000
              + LEAF + XTOsiz + Horizontal offset from the origin of the reference grid to the left side of the first tile, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + YTOsiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.09000000
              + LEAF + YTOsiz + Vertical offset from the origin of the reference grid to the top side of the first tile, as defined in ISO/IEC 15444-1 Annex A.5.1. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Csiz +
                urn:smpte:ul:060e2b34.0101010a.04010603.0a000000
              + LEAF + Csiz + The number of components in the picture as defined in ISO/IEC 15444-1 Annex A.5.1. If this Sub Descriptor is referenced by the CDCI Descriptor, the order and kind of components shall be as defined by the Essence Container UL in the MXF File Descriptor. If this Sub Descriptor is referenced by the RGBA Descriptor, the order and kind of components shall be as defined by the Pixel Layout property of the RGBA Descriptor. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureComponentSizing +
                urn:smpte:ul:060e2b34.0101010a.04010603.0b000000
              + LEAF + Picture Component Sizing + Array of picture components where each component comprises 3 bytes named Ssizi, XRSizi, YRSizi (as defined in ISO/IEC 15444-1 Annex A.5.1). The array of 3-byte groups is preceded by the array header comprising a 4-byte value of the number of components followed by a 4-byte value of '3'. + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020900.00000000 + 3n bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingStyleDefault +
                urn:smpte:ul:060e2b34.0101010a.04010603.0c000000
              + LEAF + Coding Style Default + Default coding style for all components. Use this value only if static for all pictures in the Essence Container.The data format is as defined in ISO/IEC 15444-1, Annex A.6.1 and comprises the sequence of Scod (1 byte per table A-12), SGcod (4 bytes per table A.12) and Spcod (5 bytes plus 0 or more precinct size bytes per table A.12) + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + var +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QuantizationDefault +
                urn:smpte:ul:060e2b34.0101010a.04010603.0d000000
              + LEAF + Quantization Default + Default quantization style for all components. Use this value only if static for all pictures in the Essence Container.The data format is as defined in ISO/IEC 15444-1, Annex A.6.4 and comprises the sequence of Sqcd (1 byte per table A.27) followed by one or more Sqcdi bytes (for the ith sub-band in the defined order per table A.27). + AAF[1.2:] ASPA + SMPTE 422M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + var +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + J2CLayout +
                urn:smpte:ul:060e2b34.0101010e.04010603.0e000000
              + LEAF + J2C Layout + The nature and order of the image components in the compressed domain as carried in the J2C codestream. + SMPTE ST422 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1PictureEssenceDescriptors +
                urn:smpte:ul:060e2b34.0101010c.04010604.00000000
              + NODE + VC-1 Picture Essence Descriptors + Defines the VC-1 Picture Essence Descriptor Set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1InitializationMetadata +
                urn:smpte:ul:060e2b34.0101010c.04010604.01000000
              + LEAF + VC-1 Initialization Metadata + Encodes the metadata defined in SMPTE 421 annex J for Simple and Main Profile bitstreams. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1SingleSequence +
                urn:smpte:ul:060e2b34.0101010c.04010604.02000000
              + LEAF + VC-1 Single Sequence + TRUE is the essence consists of a single VC-a sequence. FALSE if there are a number of sequences. This flag implies that the sequence header information is not varying in the essence stream. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1CodedContentType +
                urn:smpte:ul:060e2b34.0101010c.04010604.03000000
              + LEAF + VC-1 Coded Content Type + An enumerated value that tells if the underlying content was of a known VC-1 type. Enumerations are 0="Unknown", 1="Progressive, 2= "Interlaced," "3=Mixed." + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1IdenticalGOP +
                urn:smpte:ul:060e2b34.0101010c.04010604.04000000
              + LEAF + VC-1 Identical GOP + A boolean value, using TRUE to indicate that all GOPs in the sequence are constructed the same. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1MaxGOP +
                urn:smpte:ul:060e2b34.0101010c.04010604.05000000
              + LEAF + VC-1 Maximum GOP + Specifies the maximum occuring spacing between I-frames. A value of '0", or the absence of this property implies no limit to the maximum GOP. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1BPictureCount +
                urn:smpte:ul:060e2b34.0101010c.04010604.06000000
              + LEAF + VC-1 B Picture Count + Specifies the maximum number of B pictures between P or I frames. BI pictures count as B pictures and skipped pictures count as P pictures. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1AverageBitRate +
                urn:smpte:ul:060e2b34.0101010c.04010604.07000000
              + LEAF + VC-1 Average Bit Rate + Specifies the average bit rate of VC-1 video elementary streams in bits-per-second. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1MaximumBitRate +
                urn:smpte:ul:060e2b34.0101010c.04010604.08000000
              + LEAF + VC-1 Maximum Bit Rate + Specifies the maximum bit rate of VC-1 video elementary streams in bits-per-second. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1Profile +
                urn:smpte:ul:060e2b34.0101010c.04010604.09000000
              + LEAF + VC-1 Profile + Specifies the VC-1 profile. Coded as per SMPTE 421M, Annex J.1.2. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC1Level +
                urn:smpte:ul:060e2b34.0101010c.04010604.0a000000
              + LEAF + VC-1 Level + Specifies the VC-1 video level. This is coded as per SMPTE 421M, Annex J.I.2. + AAF[1.2:] + SMPTE 2037-2008 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFCodingParameters +
                urn:smpte:ul:060e2b34.0101010d.04010605.00000000
              + NODE + TIFF Coding Parameters + Information about TIFF picture coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFByteOrder +
                urn:smpte:ul:060e2b34.0101010d.04010605.01000000
              + LEAF + TIFF Byte Order + Byte order of the essence data. Shall be 'MM' = Big endian or 'II' = Little endian + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010201.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFBitsPerSampleArray +
                urn:smpte:ul:060e2b34.0101010d.04010605.02000000
              + LEAF + TIFF Bits Per Sample Array + Array of the number of bits allocated for each component in an uncompressed pixel, where n = Number of components per pixel. Shall be encoded as defined for BitsPerSample in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 8 + 2n bytes + 8 to 32 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFCompressionKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.03000000
              + LEAF + TIFF Compression Kind + Compression scheme used to store the image data. Shall be 1 = No compression or 7 = Lossless Huffman JPEG compression. Shall be encoded as defined for Compression in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010202.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFPhotometricInterpretationKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.04000000
              + LEAF + TIFF Photometric Interpretation Kind + Color space and order of image data components. Shall be 32803 = Color Filter Array or 34892 = Linear Raw. Shall be encoded as defined for PhotometricInterpretation in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010203.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFOrientation +
                urn:smpte:ul:060e2b34.0101010d.04010605.05000000
              + LEAF + TIFF Orientation + Orientation of the camera relative to the scene, when the image was captured. Shall be encoded as defined for Orientation in ISO 12234-2. + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFSamplesPerPixel +
                urn:smpte:ul:060e2b34.0101010d.04010605.06000000
              + LEAF + TIFF Samples Per Pixel + Number of components (n) per pixel. Shall be 1 for Photometric Interpretation = 32083 or 3 for PhotometricInterpretation = 34892. Shall be encoded as defined for SamplesPerPixel in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFLightSourceKind +
                urn:smpte:ul:060e2b34.0101010d.04010605.07000000
              + LEAF + TIFF Light Source Kind + Predominant light source (scene illuminant) present when the image was captured, or its color temperature. Shall be encoded as defined for LightSource in ISO 12234-2 + SMPTE ST 2055 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCParameters +
                urn:smpte:ul:060e2b34.0101010e.04010606.01000000
              + NODE + AVC Parameters + Parameters about AVC Picture Coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCConstantBPictureFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01030000
              + LEAF + AVC Constant B Picture Flag + TRUE if the number of B Pictures is always constant. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCCodedContentKind +
                urn:smpte:ul:060e2b34.0101010e.04010606.01040000
              + LEAF + AVC Coded Content Kind + Enumerated value specifying Picture type and Coding type. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012c.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCClosedGOPIndicator +
                urn:smpte:ul:060e2b34.0101010e.04010606.01060000
              + LEAF + AVC Closed GOP Indicator + TRUE if all GOPs are started with IDR Picture. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCIdenticalGOPIndicator +
                urn:smpte:ul:060e2b34.0101010e.04010606.01070000
              + LEAF + AVC Identical GOP Indicator + TRUE if every GOP in the sequence has the same number of pictures and the same types of pictures in the same order. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumGOPSize +
                urn:smpte:ul:060e2b34.0101010e.04010606.01080000
              + LEAF + AVC Maximum GOP Size + Specifies the maximum occurring spacing between I Pictures. A value of 0 or the absence of this property indicates either there is no limit to the maximum GOP or the maximum GOP is unknown. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumBPictureCount +
                urn:smpte:ul:060e2b34.0101010e.04010606.01090000
              + LEAF + AVC Maximum B-Picture Count + Specifies the maximum number of B Pictures between P or I Pictures. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCProfile +
                urn:smpte:ul:060e2b34.0101010e.04010606.010a0000
              + LEAF + AVC Profile + Specifies the AVC video profile. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumBitRate +
                urn:smpte:ul:060e2b34.0101010e.04010606.010b0000
              + LEAF + AVC Maximum Bit Rate + Maximum bit rate of the AVC stream in bit/s + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCProfileConstraint +
                urn:smpte:ul:060e2b34.0101010e.04010606.010c0000
              + LEAF + AVC Profile Constraint + Specifies the AVC video profile constraint flags. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCLevel +
                urn:smpte:ul:060e2b34.0101010e.04010606.010d0000
              + LEAF + AVC Level + Specifies the AVC level. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCDecodingDelay +
                urn:smpte:ul:060e2b34.0101010e.04010606.010e0000
              + LEAF + AVC Decoding Delay + Specifies the delay required for decoded pictures in number of access units. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCMaximumRefFrames +
                urn:smpte:ul:060e2b34.0101010e.04010606.010f0000
              + LEAF + AVC Maximum Ref Frames + Specifies the maximum number of reference frames. + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCSequenceParameterSetFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01100000
              + LEAF + AVC Sequence Parameter Set Flag + Specifies the location and the constancy of sequence parameter sets + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCPictureParameterSetFlag +
                urn:smpte:ul:060e2b34.0101010e.04010606.01110000
              + LEAF + AVC Picture Parameter Set Flag + Specifies the location and the constancy of picture parameter sets + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AVCAverageBitRate +
                urn:smpte:ul:060e2b34.0101010e.04010606.01140000
              + LEAF + AVC Average Bit Rate + Average bit rate of the AVC stream in bit/s + SMPTE ST 381-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Properties +
                urn:smpte:ul:060e2b34.0101010e.04010607.00000000
              + NODE + VC-2 Properties + Properties of VC-2 streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2MajorVersion +
                urn:smpte:ul:060e2b34.0101010e.04010607.01000000
              + LEAF + VC-2 Major Version + VC-2 Major Version Number as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2MinorVersion +
                urn:smpte:ul:060e2b34.0101010e.04010607.02000000
              + LEAF + VC-2 Minor Version + VC-2 Minor Version Number as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Profile +
                urn:smpte:ul:060e2b34.0101010e.04010607.03000000
              + LEAF + VC-2 Profile + VC-2 Profile as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2Level +
                urn:smpte:ul:060e2b34.0101010e.04010607.04000000
              + LEAF + VC-2 Level + VC-2 Level as defined in SMPTE ST 2042-1 + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2WaveletFilters +
                urn:smpte:ul:060e2b34.0101010e.04010607.05000000
              + LEAF + VC-2 Wavelet Filters + The distinct values of state[wavelet_index] across the entire wrapped VC-2 stream(each value used in the wrapped VC-2 stream appears only once in this array). This identifies the wavelet filters used. + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04011400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2SequenceHeadersIdentical +
                urn:smpte:ul:060e2b34.0101010e.04010607.06000000
              + LEAF + VC-2 Sequence Headers Identical + A flag to indicate whether all VC-2 Sequence Headers in the entire wrapped VC-2 stream are byte-for-byte identical + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC2EditUnitsAreCompleteSequences +
                urn:smpte:ul:060e2b34.0101010e.04010607.07000000
              + LEAF + VC-2 Edit Units Are Complete Sequences + A flag to indicate whether every Edit Unit comprises a single valid VC-2 sequence in its entirety + MXF + SMPTE ST 2042-4 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5Parameters +
                urn:smpte:ul:060e2b34.0101010e.04010608.00000000
              + NODE + VC-5 Parameters + VC-5 Parameters + SMPTE ST 2073-10 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5AlphaSampling +
                urn:smpte:ul:060e2b34.0101010e.04010608.01000000
              + LEAF + VC-5 Alpha Sampling + VC-5 AlphaSampling codec state parameter defined in SMPTE ST 2073-4 + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentPattern +
                urn:smpte:ul:060e2b34.0101010e.04010608.02000000
              + LEAF + VC-5 Bayer Component Pattern + Bayer component order and bit depth of each component (See SMPTE ST 377-1) + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentBlackLevel +
                urn:smpte:ul:060e2b34.0101010e.04010608.03000000
              + LEAF + VC-5 Bayer Component Black Level + Value of each Bayer component that corresponds to black + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VC5BayerComponentWhiteLevel +
                urn:smpte:ul:060e2b34.0101010e.04010608.04000000
              + LEAF + VC-5 Bayer Component White Level + Value of each Bayer component that corresponds to the white clipping point + SMPTE ST 2073-10 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameParameters +
                urn:smpte:ul:060e2b34.0101010e.04010609.00000000
              + NODE + Target Frame Parameters + Information about Target Frames + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameAncillaryResourceID +
                urn:smpte:ul:060e2b34.0101010e.04010609.01000000
              + LEAF + Target Frame Ancillary ResourceID + UUID value that identifies the ancillary resource + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediaType +
                urn:smpte:ul:060e2b34.0101010e.04010609.02000000
              + LEAF + Media Type + Specifies the Media Type as defined by IETF + MXF + RFC 2045 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameIndex +
                urn:smpte:ul:060e2b34.0101010e.04010609.03000000
              + LEAF + Target Frame Index + Specifies the offset of the corresponding frame in the image essence + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameTransferCharacteristic +
                urn:smpte:ul:060e2b34.0101010e.04010609.04000000
              + LEAF + Target Frame Transfer Characteristic + Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.02020102.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameColorPrimaries +
                urn:smpte:ul:060e2b34.0101010e.04010609.05000000
              + LEAF + Target Frame Color Primaries + The set of color primaries used + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.02020105.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameComponentMaxRef +
                urn:smpte:ul:060e2b34.0101010e.04010609.06000000
              + LEAF + Target Frame Component Max Ref + Maximum value for RGB components, e.g. 60160 or 65535 (16 bits) + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameComponentMinRef +
                urn:smpte:ul:060e2b34.0101010e.04010609.07000000
              + LEAF + Target Frame Component Min Ref + Minimum value for RGB components, e.g. 0 or 4096 (16 bits) + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameEssenceStreamID +
                urn:smpte:ul:060e2b34.0101010e.04010609.08000000
              + LEAF + Target Frame Essence StreamID + Essence (or its container) stream ID + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESPictureSubDescriptorInstanceID +
                urn:smpte:ul:060e2b34.0101010e.04010609.09000000
              + LEAF + ACES Picture SubDescriptor Instance ID + Specifies the Instance ID of an ACES Picture Essence SubDescriptor + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetFrameViewingEnvironment +
                urn:smpte:ul:060e2b34.0101010e.04010609.0a000000
              + LEAF + Target Frame Viewing Environment + Specifies a Viewing Environment for a Target Frame + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.02020108.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESCodingParameters +
                urn:smpte:ul:060e2b34.0101010e.0401060a.00000000
              + NODE + ACES Coding Parameters + Information about ACES picture coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESAuthoringInformation +
                urn:smpte:ul:060e2b34.0101010e.0401060a.01000000
              + LEAF + ACES Authoring Information + Human readable information on the system used to author the ACES image essence contained in the track file + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESMasteringDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.0401060a.02000000
              + LEAF + ACES Mastering Display Primaries + Display Primaries metadata as specified in ST 2086 + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020a00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESMasteringDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.0401060a.03000000
              + LEAF + ACES Mastering Display White Point Chromaticity + Chromaticity of White Point metadata as specified in ST 2086 + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESMasteringDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0401060a.04000000
              + LEAF + ACES Mastering Display Maximum Luminance + Maximum Display Mastering Luminance metadata as specified in ST 2086 + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ACESMasteringDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0401060a.05000000
              + LEAF + ACES Mastering Display Minimum Luminance + Minimum Display Mastering Luminance metadata as specified in ST 2086 + MXF + SMPTE ST 2067-50 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmToVideoCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010800.00000000
              + NODE + Film-to-Video Characteristics + Information about transferring Film to Video + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmPulldownCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04010801.00000000
              + NODE + Film Pulldown Characteristics + Film transfer pulldown characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownSequence +
                urn:smpte:ul:060e2b34.01010101.04010801.01000000
              + LEAF + Pulldown Sequence + eg. 3:2, 1:1 at 25Hz, 1:1 at 59.94Hz, 24Hz/25Hz, Videotap, etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010b.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownFieldDominance +
                urn:smpte:ul:060e2b34.01010101.04010801.02000000
              + LEAF + Pulldown Field Dominance + Field one dominant (True) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoAndFilmFrameRelationship +
                urn:smpte:ul:060e2b34.01010101.04010801.03000000
              + LEAF + Video and Film Frame Relationship + Specifies temporal correlation between video fields/frames and film frames from which they were derived (ABCD Frame Sequence) + RP-186 4.3.2 RP-197 7.5.3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 00000001 through 00001010 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFrameRates +
                urn:smpte:ul:060e2b34.01010101.04010802.00000000
              + NODE + Film Frame Rates + Frame per second film frame rate + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptureFilmFrameRate_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010802.01000000
              + LEAF + Capture Film Frame Rate + eg 24.00 fps + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferFilmFrameRate_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04010802.02000000
              + LEAF + Transfer Film Frame Rate + eg 23.976 fps + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameRate +
                urn:smpte:ul:060e2b34.01010102.04010802.03000000
              + LEAF + Rounded Capture Film Frame Rate + Specifies the film frame rate, rounded to the nearest whole number + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoFileFormats +
                urn:smpte:ul:060e2b34.01010103.04010b00.00000000
              + NODE + Video File Formats + Information about the format of the subject file + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalVideoFileFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04010b01.00000000
              + LEAF + Digital Video File Format + The format of the subject digital video bitstream or file + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011000.00000000
              + NODE + Image Test Parameters + Test information from the original imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011001.00000000
              + NODE + Video Test Parameters + Video information from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04011001.01000000
              + LEAF + Video Test Parameter + eg. Starting Bit Error Rate, Maximum BER Tolerance Level, Sharpness Quality Benchmark, Scalar Based Quality Parameter, Spatial Quality Information, Temporal Quality Information, Matrix Based Quality Parameter + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestResult_Float +
                urn:smpte:ul:060e2b34.01010101.04011001.02000000
              + LEAF + Video Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoTestResult_Int32 +
                urn:smpte:ul:060e2b34.01010101.04011001.03000000
              + LEAF + Video Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestParameters +
                urn:smpte:ul:060e2b34.01010101.04011002.00000000
              + NODE + Film Test Parameters + Film test information from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04011002.01000000
              + LEAF + Film Test Parameter + eg. Film Frequency Response; Telecine Gamma Correction; Macbeth Color Checker, Telecine Gray Scale Mirror; Lab Aim Density; Lab Aim Density Red/Green/Blue; Lab Aim Density Red/Green/Blue Dmin; etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestResult +
                urn:smpte:ul:060e2b34.01010101.04011002.02000000
              + LEAF + Film Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmTestResult_Int32 +
                urn:smpte:ul:060e2b34.01010101.04011002.03000000
              + LEAF + Film Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04020000.00000000
              + NODE + Audio Essence Characteristics + Operating characteristics of the device creating the audio essence. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalAudioCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04020100.00000000
              + NODE + Fundamental Audio Characteristics + Fundamental audio characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFormulation +
                urn:smpte:ul:060e2b34.01010101.04020101.00000000
              + NODE + Audio Formulation + number of recording channels used, analogue or digital recording device, analog or digital mixing console + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectrospatialFormulation +
                urn:smpte:ul:060e2b34.01010101.04020101.01000000
              + LEAF + Electrospatial Formulation + Mono, Dual mono, Stereo A+B, Stereo M&S, Dolby surround, MPEG BC/NBC etc + AAF[1.1:]~ElectroSpatial + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010122.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilteringApplied_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020101.02000000
              + LEAF + Filtering Applied + eg, Academy, flat etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioReferenceLevel +
                urn:smpte:ul:060e2b34.01010101.04020101.03000000
              + LEAF + Audio Reference Level + Number of Dbm for 0VU + AAF[1.1:]~AudioRefLevel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelCount +
                urn:smpte:ul:060e2b34.01010105.04020101.04000000
              + LEAF + Channel Count + The number of channels represented in the waveform data. + AAF[1.1:]~Channels + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelAssignment +
                urn:smpte:ul:060e2b34.01010107.04020101.05000000
              + LEAF + Channel Assignment + UL enumerating the channel assignment in use (e.g., SMPTE 320M-A) + AAF[1.1:] + For example SMPTE 320M-A + RP224 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferenceImageEditRate +
                urn:smpte:ul:060e2b34.0101010e.04020101.06000000
              + LEAF + Reference Image Edit Rate + Edit rate of the image essence with which the audio is intended to sync. For example, 24/1.001 fps, 24 fps, 25 fps + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferenceAudioAlignmentLevel +
                urn:smpte:ul:060e2b34.0101010e.04020101.07000000
              + LEAF + Reference Audio Alignment Level + Reference alignment level of the audio expressed in dBFS. For example, -20dBFS. + ST 2067-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioMix +
                urn:smpte:ul:060e2b34.01010101.04020101.10000000
              + NODE + Audio Mix + The number of audio channels in the mix + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioMonoChannelCount +
                urn:smpte:ul:060e2b34.01010101.04020101.10010000
              + LEAF + Audio Mono Channel Count + The number of mono channels in the mix + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioStereoChannelCount +
                urn:smpte:ul:060e2b34.01010101.04020101.10020000
              + LEAF + Audio Stereo Channel Count + The number of stereo channels in the mix + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020200.00000000
              + NODE + Analog Audio Coding Parameters + Information about the original analogue coding of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020201.00000000
              + LEAF + Analog System + Flat, Dolby-A etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020300.00000000
              + NODE + Digital Audio Coding Parameters + Information about the essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04020301.00000000
              + NODE + Digital Sampling Parameters + Information about the digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioSampleRate_UInt8 +
                urn:smpte:ul:060e2b34.01010101.04020301.01000000
              + LEAF + Audio Sample Rate + The tabulated reference clock frequency + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioSampleRate +
                urn:smpte:ul:060e2b34.01010105.04020301.01010000
              + LEAF + Audio Sample Rate + The reference sampling clock frequency as a rational number + AAF[1.1:]~AudioSamplingRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioAverageBitRate +
                urn:smpte:ul:060e2b34.01010102.04020301.02000000
              + LEAF + Audio Average Bit Rate + The Average bit rate in bits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFixedBitRateFlag +
                urn:smpte:ul:060e2b34.01010102.04020301.03000000
              + LEAF + Audio Fixed Bit Rate Flag + Fixed = TRUE, variable = FALSE + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locked +
                urn:smpte:ul:060e2b34.01010104.04020301.04000000
              + LEAF + Locked Indicator + TRUE if number of samples per frame is locked to video + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelope +
                urn:smpte:ul:060e2b34.01010105.04020301.05000000
              + LEAF + Peak Envelope + Peak envelope information - value contains a header followed by the data of the peak points. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeVersion +
                urn:smpte:ul:060e2b34.01010108.04020301.06000000
              + LEAF + Peak Envelope Version + Version number of the peak envelope data format specification + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeFormat +
                urn:smpte:ul:060e2b34.01010108.04020301.07000000
              + LEAF + Peak Envelope Format + Data format of the peak envelope data + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PointsPerPeakValue +
                urn:smpte:ul:060e2b34.01010108.04020301.08000000
              + LEAF + Points Per Peak Value + Number of peak points per peak value + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeBlockSize +
                urn:smpte:ul:060e2b34.01010108.04020301.09000000
              + LEAF + Peak Envelope Block Size + Number of audio samples used to generate each peak frame + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakChannels +
                urn:smpte:ul:060e2b34.01010108.04020301.0a000000
              + LEAF + Peak Channel Count + Number of peak channels + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakFrames +
                urn:smpte:ul:060e2b34.01010108.04020301.0b000000
              + LEAF + Peak Frame Count + Number of peak frames + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakOfPeaksPosition +
                urn:smpte:ul:060e2b34.01010108.04020301.0c000000
              + LEAF + Peak Of Peaks Position + Offset of the first audio sample whose absolute value in the maximum value of the entire audio file + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeTimestamp +
                urn:smpte:ul:060e2b34.01010108.04020301.0d000000
              + LEAF + Peak Envelope Timestamp + Timestamp of the creation of the peak data + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PeakEnvelopeData +
                urn:smpte:ul:060e2b34.01010108.04020301.0e000000
              + LEAF + Peak Envelope Data + The peak envelope data stream + AAF[1.1:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IABSampleRate +
                urn:smpte:ul:060e2b34.0101010e.04020301.0f000000
              + LEAF + IAB Sample Rate + Indicates the sample rate of the audio essence contained in the bistream + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioStorageParameters +
                urn:smpte:ul:060e2b34.01010101.04020302.00000000
              + NODE + Digital Audio Storage Parameters + Information about audio storage parameters. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockAlign +
                urn:smpte:ul:060e2b34.01010105.04020302.01000000
              + LEAF + Block Align + The block alignment in Bytes - playback processes multiples of this value at a time. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SequenceOffset +
                urn:smpte:ul:060e2b34.01010105.04020302.02000000
              + LEAF + Sequence Offset + The zero-based ordinal frame number of first essence data within five-frame sequence + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockStartOffset +
                urn:smpte:ul:060e2b34.01010105.04020302.03000000
              + LEAF + Block Start Offset + Position of AES-3 first Z-pre-amble in the essence stream + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyFileSecurityReport +
                urn:smpte:ul:060e2b34.01010105.04020302.05000000
              + LEAF + File Security Report + File Security Code (checksum) of the BWF quality report + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyFileSecurityWave +
                urn:smpte:ul:060e2b34.01010105.04020302.06000000
              + LEAF + File Security Wave + File Security Code (checksum) of the BWF wave data + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioQuantizationAndLevelParameters +
                urn:smpte:ul:060e2b34.01010101.04020303.00000000
              + NODE + Digital Audio Quantization and Level Parameters + Information about the digital quantisation and levels + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BitsPerSample +
                urn:smpte:ul:060e2b34.01010101.04020303.01000000
              + LEAF + Bits Per Sample + The maximum number of significant bits for the value without compression. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoundingLaw_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020303.02000000
              + LEAF + Rounding Law + The rounding law applied + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dither_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020303.03000000
              + LEAF + Dither + rectangular, triangular PD + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QuantizationBits +
                urn:smpte:ul:060e2b34.01010104.04020303.04000000
              + LEAF + Bits Per Audio Sample + The maximum number of significant bits for the value without compression. + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AverageBytesPerSecond +
                urn:smpte:ul:060e2b34.01010105.04020303.05000000
              + LEAF + Average Bytes Per Second + The average number of Bytes per second at which the waveform data should be transferred + AAF[1.1:]~AverageBPS + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioCompressionParameters +
                urn:smpte:ul:060e2b34.01010101.04020400.00000000
              + NODE + Digital Audio Compression Parameters + Information about the digital audio compression scheme used (MPEG, Dolby etc) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingLawKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04020401.00000000
              + LEAF + Coding Law Kind + Type of coding ( u-Law, A-law, block companding, G 711, G 722, MPEG type, layer no, Dolby AC). Expessed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingLawName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020401.01000000
              + LEAF + Coding Law Name + Type of coding (e.g., u-Law, A-law, block companding, G 711, G 722, MPEG type, layer no, Dolby AC). Expessed as a name. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoundCompression +
                urn:smpte:ul:060e2b34.01010102.04020402.00000000
              + LEAF + Audio Coding Scheme ID + Specifies the audio coding or compression scheme used as a UL + AAF[1.1:]~Compression + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCodingSchemeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020402.01000000
              + LEAF + Audio Coding Scheme Code + Specifies the audio coding or compression scheme used as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCodingSchemeName_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04020402.02000000
              + LEAF + Audio Coding Scheme Name + Specifies the audio coding or compression scheme used as a name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020403.00000000
              + NODE + MPEG Audio Coding Parameters + Information about MPEG audio coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG1AudioCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04020403.01000000
              + NODE + MPEG-1 Audio Coding Parameters + Information about MPEG audio coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LayerNumber +
                urn:smpte:ul:060e2b34.01010102.04020403.01010000
              + LEAF + Layer Number + The layer number of the digital coding + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioBitRate +
                urn:smpte:ul:060e2b34.0101010a.04020403.01020000
              + LEAF + MPEG Audio Bit Rate + Specifies the rate of a compressed MPEG audio bitstream in kbit/s. The allowed values are typically determined by a given MPEG audio layer and mode. + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AACChannelConfiguration +
                urn:smpte:ul:060e2b34.0101010e.04020403.01030000
              + LEAF + AAC Channel Configuration + Low order 4 bits of Channel Configuration. Upper 4 bits are zeros + SMPTE ST 381-4 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AACSamplingFrequency +
                urn:smpte:ul:060e2b34.0101010e.04020403.01040000
              + LEAF + AAC Sampling Frequency + Low order 4 bits of Sampling Frequency Index. Upper 4 bits are zeros + SMPTE ST 381-4 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioChannelAssignment +
                urn:smpte:ul:060e2b34.0101010e.04020403.01050000
              + LEAF + MPEG Audio Channel Assignment + UL enumerating the channel assignment in use + SMPTE ST 381-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalAudioProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020500.00000000
              + NODE + Digital Audio Processing Parameters + Parameters required for processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AES3ProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020501.00000000
              + NODE + AES-3 Processing Parameters + Parameters required for AES-3 processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AuxBitsMode +
                urn:smpte:ul:060e2b34.01010105.04020501.01000000
              + LEAF + Auxiliary Bits Mode + Specifies the use of AES-3 Auxiliary Bits + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010124.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelStatusMode +
                urn:smpte:ul:060e2b34.01010105.04020501.02000000
              + LEAF + Channel Status Mode + AES3 Enumerated mode for the carriage of channel status data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010a00.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedChannelStatusData +
                urn:smpte:ul:060e2b34.01010105.04020501.03000000
              + LEAF + Fixed Channel Status Data + AES3 Fixed data pattern for channel status data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + 48 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserDataMode +
                urn:smpte:ul:060e2b34.01010105.04020501.04000000
              + LEAF + User Data Mode + AES3 Enumerated mode of carriage of user data.. + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010b00.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedUserData +
                urn:smpte:ul:060e2b34.01010105.04020501.05000000
              + LEAF + Fixed User Data + AES3 Fixed data pattern for user data + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 + 48 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Emphasis +
                urn:smpte:ul:060e2b34.01010105.04020501.06000000
              + LEAF + Emphasis + The AES-3 emphasis in use + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010123.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedTimecodeTrackID +
                urn:smpte:ul:060e2b34.0101010c.04020501.07000000
              + LEAF + Linked Timecode Track ID + AES3 association of SMPTE 337M time stamp to Timecode Track IDs. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataStreamNumber +
                urn:smpte:ul:060e2b34.0101010c.04020501.08000000
              + LEAF + SMPTE 337M Data Stream Number + The data_stream_number of the SMPTE 337M data stream being described. + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BWFProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020502.00000000
              + NODE + BWF Processing Parameters + Parameters required for BWF processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodingHistory +
                urn:smpte:ul:060e2b34.01010105.04020502.01000000
              + LEAF + Bext Coding History + The Coding History from the BWF <bext> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BextCodingHistory +
                urn:smpte:ul:060e2b34.01010105.04020502.01010000
              + LEAF + Bext Coding History + The Coding History from the BWF <bext> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BasicData +
                urn:smpte:ul:060e2b34.01010105.04020502.02000000
              + LEAF + Qlty Basic Data + Basic Capture Data from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyBasicData +
                urn:smpte:ul:060e2b34.01010105.04020502.02010000
              + LEAF + Qlty Basic Data + Basic Capture Data from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.03000000
              + LEAF + Qlty Start Of Modulation + Start of modulation of the original recording, in hours, minutes, seconds and tenths of a second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyStartOfModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.03010000
              + LEAF + Qlty Start Of Modulation + Start of modulation of the original recording, in hours, minutes, seconds and tenths of a second + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityEvent +
                urn:smpte:ul:060e2b34.01010105.04020502.04000000
              + LEAF + Qlty Quality Event + Information from the BWF <qlty> chunk describing each Quality event in the sound signal. One string is used for each event. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyQualityEvent +
                urn:smpte:ul:060e2b34.01010105.04020502.04010000
              + LEAF + Qlty Quality Event + Information from the BWF <qlty> chunk describing each Quality event in the sound signal. One string is used for each event. + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.05000000
              + LEAF + Qlty End Of Modulation + End of modulation time of the original recording, in hours, minutes, seconds and tenths of a second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyEndOfModulation +
                urn:smpte:ul:060e2b34.01010105.04020502.05010000
              + LEAF + Qlty End Of Modulation + End of modulation time of the original recording, in hours, minutes, seconds and tenths of a second + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityParameter +
                urn:smpte:ul:060e2b34.01010105.04020502.06000000
              + LEAF + Qlty Quality Parameter + String of Quality Parameters affecting the sound signal, from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyQualityParameter +
                urn:smpte:ul:060e2b34.01010105.04020502.06010000
              + LEAF + Qlty Quality Parameter + String of Quality Parameters affecting the sound signal, from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperatorComment +
                urn:smpte:ul:060e2b34.01010105.04020502.07000000
              + LEAF + Qlty Operator Comment + String of Operator comments concerning the capturing of the sound signal, from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyOperatorComment +
                urn:smpte:ul:060e2b34.01010105.04020502.07010000
              + LEAF + Qlty Operator Comment + String of Operator comments concerning the capturing of the sound signal, from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueSheet +
                urn:smpte:ul:060e2b34.01010105.04020502.08000000
              + LEAF + Qlty Cue Sheet + String of cue points, timestamps and descriptions from the BWF <qlty> chunk + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QltyCueSheet +
                urn:smpte:ul:060e2b34.01010105.04020502.08010000
              + LEAF + Qlty Cue Sheet + String of cue points, timestamps and descriptions from the BWF <qlty> chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralProcessingParameters +
                urn:smpte:ul:060e2b34.01010105.04020700.00000000
              + NODE + General Processing Parameters + Parameters of a general nature required for processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DialNorm +
                urn:smpte:ul:060e2b34.01010105.04020701.00000000
              + LEAF + Dial Norm + Gain to be applied to normalise perceived loudness of the clip + AAF[1.1:] + ATSC A/53 (1db per step) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmSoundSource +
                urn:smpte:ul:060e2b34.01010101.04020800.00000000
              + NODE + Film Sound Source + Indicates the film sound source + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTrack_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020801.00000000
              + LEAF + Optical Track + The kind of optical track from which the sound was recovered + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MagneticTrack_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04020802.00000000
              + LEAF + Magnetic Track + The kind of magnetic track from which the sound was recovered + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioTestParameters +
                urn:smpte:ul:060e2b34.01010101.04021000.00000000
              + NODE + Audio Test Parameters + Audio test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalToNoiseRatio +
                urn:smpte:ul:060e2b34.01010101.04021001.00000000
              + LEAF + Signal-to-Noise Ratio + The measured signal to noise ratio of the original recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Weighting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04021002.00000000
              + LEAF + Weighting + The weighting used in measurements + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04030000.00000000
              + NODE + Data Essence Characteristics + Operating characteristics of the device creating the data essence. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalDataEssenceParameters +
                urn:smpte:ul:060e2b34.01010101.04030100.00000000
              + NODE + Fundamental Data Essence Parameters + Fundamental data essence characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.04030101.00000000
              + LEAF + Caption Kind + Specifies the kind of caption - e.g. teletext subtitles, closed captions subtitles, embedded sports scores, name captions etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionKind +
                urn:smpte:ul:060e2b34.01010104.04030101.01000000
              + LEAF + Caption Kind + Specifies the kind of caption - e.g. teletext subtitles, closed captions subtitles, embedded sports scores, name captions etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogDataEssenceCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04030200.00000000
              + NODE + Analog Data Essence Coding Parameters + Information about the analogue coding of the data essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogDataCodingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04030201.00000000
              + LEAF + Analog Data Coding Kind + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalDataEssenceCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04030300.00000000
              + NODE + Digital Data Essence Coding Parameters + Information about the data essence digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalEncodingBitRate +
                urn:smpte:ul:060e2b34.01010103.04030301.00000000
              + LEAF + Digital Encoding Bit Rate + The encoded bit rate of the subject digital video bitstream or file in Megabits per second + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCoding +
                urn:smpte:ul:060e2b34.01010103.04030302.00000000
              + LEAF + Data Essence Coding ID + Specifies the data essence coding type + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceTestParameters +
                urn:smpte:ul:060e2b34.01010101.04031000.00000000
              + NODE + Data Essence Test Parameters + Data test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040000.00000000
              + NODE + Metadata Characteristics + Operating characteristics of the device creating the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalMetadataCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040100.00000000
              + NODE + Fundamental Metadata Characteristics + Fundamental Metadata characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040101.00000000
              + NODE + Timecode Characteristics + Characteristics of timecode metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040101.01000000
              + LEAF + Timecode Kind + eg. EBU, 309M, 12M etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeTimebase +
                urn:smpte:ul:060e2b34.01010101.04040101.02000000
              + LEAF + Timecode Timebase + eg. 24, 25, 30, 60, 48 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStreamSampleRate +
                urn:smpte:ul:060e2b34.01010102.04040101.02010000
              + LEAF + Timecode Timebase + eg. 24, 25, 30000/1001, 30, 48, 60 + AAF~SampleRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FramesPerSecond +
                urn:smpte:ul:060e2b34.01010102.04040101.02060000
              + LEAF + Rounded Timecode Timebase + eg. 24, 25, 30, 48, 60 + AAF~FPS + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeUserBitsFlag +
                urn:smpte:ul:060e2b34.01010101.04040101.03000000
              + LEAF + Timecode User Bits Flag + User bits active = True + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IncludeSync +
                urn:smpte:ul:060e2b34.01010101.04040101.04000000
              + LEAF + Include Sync + Specifies whether synchronization data is included in SMPTE 12M Timecode + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DropFrame +
                urn:smpte:ul:060e2b34.01010101.04040101.05000000
              + LEAF + Drop Frame + Specifies whether timecode is drop frame (Non-drop Frame = 0) + AAF~Drop + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDateTimeCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04040102.00000000
              + NODE + General Date-Time Coding Characteristics + Coding Characteristics of time and date metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeRate +
                urn:smpte:ul:060e2b34.01010105.04040102.01000000
              + LEAF + Date-Time Rate + Defines the Date/Time rate where this differs from the essence rate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeDropFrame +
                urn:smpte:ul:060e2b34.01010105.04040102.02000000
              + LEAF + Date-Time Drop Frame Flag + TRUE if drop-frame is active + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeEmbedded +
                urn:smpte:ul:060e2b34.01010105.04040102.03000000
              + LEAF + Date-Time Embedded Flag + TRUE if embedded in other data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DateTimeKind +
                urn:smpte:ul:060e2b34.01010105.04040102.04000000
              + LEAF + Date-Time Kind + Date/Time format kind (examples may include, but are not restricted to, SMPTE timecodes). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040200.00000000
              + NODE + Analog Metadata Coding Characteristics + Information about the analogue coding of the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeSource +
                urn:smpte:ul:060e2b34.01010101.04040201.00000000
              + LEAF + Timecode Source Kind + Specifies whether timecode is LTC or VITC + AAF~SourceType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010109.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMetadataCarrier_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040202.00000000
              + LEAF + Analog Metadata Carrier + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04040300.00000000
              + NODE + Digital Metadata Coding Characteristics + Information about the metadata digital coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMetadataCarrier_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04040301.00000000
              + LEAF + Digital Metadata Carrier + The metadata coding type - eg. Digital VBI, AES-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexingMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04040400.00000000
              + NODE + Indexing Metadata Coding Characteristics + Information about the indexing metadata coding + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntraEditUnitIndexing +
                urn:smpte:ul:060e2b34.01010104.04040401.00000000
              + NODE + Intra Edit Unit Indexing + Information about indexing essence elements within an edit unit. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SliceCount +
                urn:smpte:ul:060e2b34.01010104.04040401.01000000
              + LEAF + Slice Count + Number of sections indexed, per edit unit, minus one + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Slice +
                urn:smpte:ul:060e2b34.01010104.04040401.02000000
              + LEAF + Slice Number + The number of the indexed section in the edit unit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementDelta +
                urn:smpte:ul:060e2b34.01010104.04040401.03000000
              + LEAF + Element Delta + The number of bytes from the start of the section to this element. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTableIndex +
                urn:smpte:ul:060e2b34.01010104.04040401.04000000
              + LEAF + Position Table Indexing + Value identifying that the element indexed is subject to temporal reordering or offsetting of edit units A "Reorder" flag when negative and an Index into a table when positive + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SliceOffset +
                urn:smpte:ul:060e2b34.01010104.04040401.05000000
              + LEAF + Slice Offset List + List of 'n' offsets within the edit unit of each indexed section (except the first) + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + n*4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeltaEntryArray +
                urn:smpte:ul:060e2b34.01010105.04040401.06000000
              + LEAF + Delta Entry Array + Array of values used to identify elements of Essence within an edit unit + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTableCount +
                urn:smpte:ul:060e2b34.01010105.04040401.07000000
              + LEAF + Position Table Count + Number of temporal position offsets indexed, per edit unit, minus one + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionTable +
                urn:smpte:ul:060e2b34.01010105.04040401.08000000
              + LEAF + Position Table + List of 'n' fractional temporal offsets of indexed elements relative to the indexed position + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + n*8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterEditUnitIndexing +
                urn:smpte:ul:060e2b34.01010104.04040402.00000000
              + NODE + Inter Edit Unit Indexing + Information about indexing edit units within a container. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.01000000
              + LEAF + Stream Offset + The offset of the edit unit within the container stream relative to the start of that container stream + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Flags +
                urn:smpte:ul:060e2b34.01010104.04040402.02000000
              + LEAF + Edit Unit Flags + Flags to indicate coding of elements in this edit unit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.03000000
              + LEAF + Temporal Offset + The number of edit units by which this edit unit has been moved in the bitstream for the purpose of temporal reordering (e.g. MPEG) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyFrameOffset +
                urn:smpte:ul:060e2b34.01010104.04040402.04000000
              + LEAF + Anchor Offset + The offset in edit units from this edit unit to the previous anchor edit unit (e.g. previous I-frame in MPEG-2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexEntryArray +
                urn:smpte:ul:060e2b34.01010105.04040402.05000000
              + LEAF + Index Entry Array + Array of values used to index elements from edit unit to edit unit + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentPackageIndexArray +
                urn:smpte:ul:060e2b34.01010107.04040402.06000000
              + LEAF + Content Package Index Array + An ordered array of index entries for each frame in this Content Package + SMPTE 394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoIndexParameters +
                urn:smpte:ul:060e2b34.01010107.04040403.00000000
              + NODE + Video Index Parameters + Information derived from Video Index RP186 + RP186 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoIndexArray +
                urn:smpte:ul:060e2b34.01010107.04040403.01000000
              + LEAF + Video Index Array + An ordered array of Video Indexes. Each Video Index is a concatenation of classes 1.1, 1.2, 1.3, 2.1 and 2.2 as defined in SMPTE 168M where each class is 3 bytes long. The CRCC bytes are not present in this data item + RP186 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 15*n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexLocations +
                urn:smpte:ul:060e2b34.0101010e.04040500.00000000
              + NODE + Index Locations + Index Locations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleIndexLocation +
                urn:smpte:ul:060e2b34.0101010e.04040501.00000000
              + LEAF + Single Index Location + Specifies whether the Index Table Segments are in one partition or multiple partitions. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ForwardIndexDirection +
                urn:smpte:ul:060e2b34.0101010e.04040502.00000000
              + LEAF + Forward Index Direction + Specifies whether the Index Table Segments are pointing forward or backward. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsRIPPresent +
                urn:smpte:ul:060e2b34.0101010e.04040503.00000000
              + LEAF + Is RIP Present + Specifies whether the file includes a Random Index Pack. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrecedingIndexTable +
                urn:smpte:ul:060e2b34.0101010e.04040504.00000000
              + LEAF + Preceding Index Table + Specifies whether a Complete Index Table is in a partition preceding all Essence that it indexes. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FollowingIndexTable +
                urn:smpte:ul:060e2b34.0101010e.04040505.00000000
              + LEAF + Following Index Table + Specifies whether a Complete Index Table is in a partition following all Essence that it indexes. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsSparse +
                urn:smpte:ul:060e2b34.0101010e.04040506.00000000
              + LEAF + Is Sparse + Specifies whether a sparse Index Table is in the essence container. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataTestParameters +
                urn:smpte:ul:060e2b34.01010101.04041000.00000000
              + NODE + Metadata Test Parameters + Data test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonitoringAndControlCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050000.00000000
              + NODE + Monitoring and Control Characteristics + Operating characteristics of the device creating the system and control information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FundamentalMonitoringAndControlCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050100.00000000
              + NODE + Fundamental Monitoring and Control Characteristics + Fundamental Monitoring and Control characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignalStandard +
                urn:smpte:ul:060e2b34.01010105.04050113.00000000
              + LEAF + Signal Standard + Underlying Signal Standard + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010127.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMonitoringAndControlCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04050200.00000000
              + NODE + Analog Monitoring and Control Coding Characteristics + Information about the original analog coding of the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnalogMonitoringAndControlCodingKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04050201.00000000
              + LEAF + Analog Monitoring and Control Coding Kind + eg. Teletext + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMonitoringAndControlCodingParameters +
                urn:smpte:ul:060e2b34.01010101.04050300.00000000
              + NODE + Digital Monitoring and Control Coding Parameters + Information about the original digital coding of the data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalMonitoringAndControlSamplingParameters +
                urn:smpte:ul:060e2b34.01010101.04050301.00000000
              + NODE + Digital Monitoring and Control Sampling Parameters + Information about the Monitoring and Control metadata digital sampling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonitoringAndControlTestParameters +
                urn:smpte:ul:060e2b34.01010101.04051000.00000000
              + NODE + Monitoring and Control Test Parameters + Monitoring and Control metadata test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04060000.00000000
              + NODE + General Coding Characteristics + Characteristics that apply to more than one type of essence or metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04060100.00000000
              + NODE + General Essence Coding Characteristics + Characteristics that apply to more than one type of essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampleRate +
                urn:smpte:ul:060e2b34.01010101.04060101.00000000
              + LEAF + Sample Rate + Specifies the number of addressable elements of essence data per second + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceLength +
                urn:smpte:ul:060e2b34.01010101.04060102.00000000
              + LEAF + Essence Length + Specifies the number of addressable elements of essence data + AAF~Length mxflib[:1.19]~ContainerDuration + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceContainerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060200.00000000
              + NODE + General Essence Container Characteristics + Characteristics that apply to Essence Containers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditUnitByteCount +
                urn:smpte:ul:060e2b34.01010104.04060201.00000000
              + LEAF + Edit Unit Byte Count + Defines the byte count of each and every Edit Unit of stored Essence indexed by this Index Table Segment + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApproxImageContainerSize +
                urn:smpte:ul:060e2b34.01010107.04060202.00000000
              + LEAF + Approximate Image Container Size + Identifies, to an order of magnitude, the size of the image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010109.04060203.00000000
              + LEAF + Product Format + Identifies the name of the image file format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 30 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductFormat +
                urn:smpte:ul:060e2b34.01010109.04060203.01000000
              + LEAF + Product Format + Identifies the name of the image file format + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 30 Unicode chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtStartOffset +
                urn:smpte:ul:060e2b34.0101010a.04060204.00000000
              + LEAF + Ext Start Offset + The byte offset to the first essence data in an external Essence file + MXF[2007:] + SMPTE ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VBEByteCount +
                urn:smpte:ul:060e2b34.0101010a.04060205.00000000
              + LEAF + VBE Byte Count + The count of bytes of the last essence element in the last Edit Unit indexed by the Index Table Segment + MXF[2007:] + SMPTE ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingleEssenceLocation +
                urn:smpte:ul:060e2b34.0101010e.04060206.00000000
              + LEAF + Single Essence Location + Specifies whether the Essence Containers are in one partition or multiple partitions. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SingularPartitionUsage +
                urn:smpte:ul:060e2b34.0101010e.04060207.00000000
              + LEAF + Singular Partition Usage + Specifies whether the Partition is Singular. + ST 377-1, Amd. 2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralMetadataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060800.00000000
              + NODE + General Metadata Coding Characteristics + Characteristics that apply to more than one type of metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataEncodingSchemeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04060801.00000000
              + LEAF + Metadata Encoding Scheme Code + The code that indicates the manner in which the metadata for the motion imagery was encoded. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 20 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkID +
                urn:smpte:ul:060e2b34.01010108.04060802.00000000
              + LEAF + RIFF Chunk ID + The code that identifies the data contained in a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationScheme +
                urn:smpte:ul:060e2b34.0101010c.04060803.00000000
              + LEAF + Application Scheme + Contains the Universal Label of the Application Metadata scheme contained in this Plug-In Object. + SMPTE 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.0101010c.04060804.00000000
              + LEAF + Descriptive Metadata Scheme + The Universal Label of the Descriptive Metadata scheme that is referenced by the DM Framework property + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UDAMSetIdentifier +
                urn:smpte:ul:060e2b34.0101010d.04060805.00000000
              + LEAF + UDAM Set Identifier + The immutable ID of the instance of this user-defined acquisition metadata set + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedMetadataPayloadSchemeID +
                urn:smpte:ul:060e2b34.0101010d.04060806.00000000
              + LEAF + Text-Based Metadata Payload Scheme Identifier + Unique identifier for text-based payload scheme. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralMetadataContainerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04060900.00000000
              + NODE + General Metadata Container Characteristics + Characteristics that apply to metadata Containers + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HeaderByteCount +
                urn:smpte:ul:060e2b34.01010104.04060901.00000000
              + LEAF + Header Byte Count + Count of bytes used for the metadata in a file Header + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexByteCount +
                urn:smpte:ul:060e2b34.01010104.04060902.00000000
              + LEAF + Index Byte Count + Count of bytes used for index table segments + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkLength +
                urn:smpte:ul:060e2b34.01010108.04060903.00000000
              + LEAF + RIFF Chunk Length + Count of bytes in a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDataCodingCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04061000.00000000
              + NODE + General Data Coding Characteristics + Characteristics that apply to any type of data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackLength +
                urn:smpte:ul:060e2b34.01010104.04061001.00000000
              + LEAF + Pack Length + Big-endian overall length of set or pack + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceLength +
                urn:smpte:ul:060e2b34.01010109.04061002.00000000
              + LEAF + Source Length + Length of the unencrypted value (V) in a KLV triplet + DCP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralEssenceAndDataParameters +
                urn:smpte:ul:060e2b34.01010102.04070000.00000000
              + NODE + General Essence and Data Parameters + Specifies information relating to the essence and data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentDataDefinition +
                urn:smpte:ul:060e2b34.01010102.04070100.00000000
              + LEAF + Component Data Definition + Specifies the basic essence type of a component + AAF~DataDefinition mxflib[:1.19]~DataDefinition + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDefinition +
                urn:smpte:ul:060e2b34.01010105.04070101.00000000
              + LEAF + Data Definition + The value defines the kind of data or metadata to which it refers + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceStream +
                urn:smpte:ul:060e2b34.01010102.04070200.00000000
              + LEAF + Essence Stream + Specifies the stream of data as essence + AAF~Data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStreamData +
                urn:smpte:ul:060e2b34.01010102.04070300.00000000
              + LEAF + Timecode Stream Data + Specifies the Timecode stream contains essence + AAF~Source + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChunkData +
                urn:smpte:ul:060e2b34.01010108.04070400.00000000
              + LEAF + RIFF Chunk Data + The data bytes of a RIFF chunk + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04080000.00000000
              + NODE + Object Characteristics + Object Characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FormatCharacteristics +
                urn:smpte:ul:060e2b34.01010105.04090000.00000000
              + NODE + Format Characteristics + Specifies formatting used in laying down the essence onto physical media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedFormat_ISO7 +
                urn:smpte:ul:060e2b34.01010105.04090100.00000000
              + LEAF + Recorded Format + Specifies the recording format as laid down on the media; e.g. D5, Betacam etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RecordedFormat +
                urn:smpte:ul:060e2b34.01010102.04090101.00000000
              + LEAF + Recorded Format + Specifies the recording format as laid down on the media; e.g. D5, Betacam etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEMediaType_ISO7 +
                urn:smpte:ul:060e2b34.01010107.04090200.00000000
              + LEAF + MIME Media Type + Specifies the MIME media type as defined by IETF + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEType +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + LEAF + MIME Media Type + Specifies the MIME media type as defined by IETF + AAF[1.1:]~MimeType MXF + RFC 2048 + AAF Object Specification, SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextMIMEMediaType +
                urn:smpte:ul:060e2b34.0101010d.04090202.00000000
              + LEAF + Text MIME Media Type + Specifies the MIME media type as defined by IETF. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CharSet +
                urn:smpte:ul:060e2b34.01010108.04090300.00000000
              + LEAF + MIME Char Set + Specifies the registered character set used by both the internal and external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + AAF[1.1:] + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMECharSet_ISO7 +
                urn:smpte:ul:060e2b34.01010108.04090301.00000000
              + LEAF + MIME Char Set + Specifies the registered character set used by both the internal and external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEEncoding_ISO7 +
                urn:smpte:ul:060e2b34.01010108.04090400.00000000
              + LEAF + MIME Encoding + Specifies the registered character set used by the external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MIMEEncoding +
                urn:smpte:ul:060e2b34.01010108.04090401.00000000
              + LEAF + MIME Encoding + Specifies the registered character set used by the external representation of the data as defined by IETF RFC 2048 and http://www.iana.org/assignmnets/character-sets + AAF[1.3:] ASPA[:0.8] + RFC 2048 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UCSEncoding +
                urn:smpte:ul:060e2b34.0101010c.04090500.00000000
              + LEAF + UCS Encoding + A text string giving the ISO/IEC 10646-1 encoding of the essence data. + MXF + SMPTE ST 429-5 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageCharacteristics +
                urn:smpte:ul:060e2b34.01010103.040f0000.00000000
              + NODE + Storage Characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.040f0100.00000000
              + LEAF + Storage Kind + The kind of storage expressed as a name - e.g. C.D.; D.V.D.; Betas SP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKind +
                urn:smpte:ul:060e2b34.01010103.040f0101.00000000
              + LEAF + Storage Kind + The kind of storage expressed as a name - e.g. C.D.; D.V.D.; Betas SP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 64 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageKindCode_ISO7 +
                urn:smpte:ul:060e2b34.01010103.040f0102.00000000
              + LEAF + Storage Kind Code + The kind of storage expressed as a code + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediumCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04100000.00000000
              + NODE + Medium Characteristics + Characteristics describing the medium containing the essence for transport or storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100100.00000000
              + NODE + Storage Medium Parameters + Characteristics that describe the physical medium such as cartridge size + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100101.00000000
              + NODE + Tape Medium Parameters + Characteristics of Tape medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeShellKind_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.01000000
              + LEAF + Tape Shell Kind + Specifies the cassette etc. shell - eg 1 inch B, 1 inch C, 90 minute Betacam, DAT, 1/4 inch. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormFactor +
                urn:smpte:ul:060e2b34.01010102.04100101.01010000
              + LEAF + Tape Shell Kind + Specifies the cassette etc. shell - eg 1 inch B, 1 inch C, 90 minute Betacam, DAT, 1/4 inch. + AAF~FormFactor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010104.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormulation_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.02000000
              + LEAF + Tape Formulation + Specifies the formulation of the tape - eg. Metal, oxide etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeFormulation +
                urn:smpte:ul:060e2b34.01010102.04100101.02010000
              + LEAF + Tape Formulation + Specifies the formulation of the tape - eg. Metal, oxide etc + AAF~Model + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeCapacity +
                urn:smpte:ul:060e2b34.01010102.04100101.03000000
              + LEAF + Tape Capacity + Specifies the tape capacity in minutes + AAF~Length + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeManufacturer_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.04000000
              + LEAF + Tape Manufacturer + Specifies the tape manufacturer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeManufacturer +
                urn:smpte:ul:060e2b34.01010102.04100101.04010000
              + LEAF + Tape Manufacturer + Specifies the tape manufacturer + AAF~ManufacturerID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeStock_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.05000000
              + LEAF + Tape Stock + Specifies the tape stock + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeStock +
                urn:smpte:ul:060e2b34.01010102.04100101.05010000
              + LEAF + Tape Stock + Specifies the tape stock + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 Unicode chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeBatchNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100101.06000000
              + LEAF + Tape Batch Number + Specifies the batch number of the tape + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeBatchNumber +
                urn:smpte:ul:060e2b34.01010102.04100101.06010000
              + LEAF + Tape Batch Number + Specifies the batch number of the tape + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 32 unicode characters max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapeMediumFundamentalParameters +
                urn:smpte:ul:060e2b34.01010103.04100101.10000000
              + NODE + Tape Medium Fundamental Parameters + Fundamental characteristics of Tape medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TapePartitionCapacity +
                urn:smpte:ul:060e2b34.01010103.04100101.10010000
              + LEAF + Tape Partition Capacity + The capacity of a tape partition in terms of the maximum number of megabytes which can be stored. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100102.00000000
              + NODE + Disc Medium Parameters + Characteristics of Disc medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscMediumFundamentalParameters +
                urn:smpte:ul:060e2b34.01010103.04100102.01000000
              + NODE + Disc Medium Fundamental Parameters + Fundamental characteristics of Disc medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DiscPartitionCapacity +
                urn:smpte:ul:060e2b34.01010103.04100102.02000000
              + LEAF + Disc Partition Capacity + The capacity of the disc partition in terms of the maximum number of Megabytes which can be stored. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.00000000
              + NODE + Film Medium Parameters + Information about the physical film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericFilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.01000000
              + NODE + Generic Film Medium Parameters + Generic Information about the film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmColorProcess_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01010000
              + LEAF + Film Color Process + The film coloring process used. Eg Pathe Color, Hand Coloring, Berthon Keller Dorian Lenticular Process + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeFormat +
                urn:smpte:ul:060e2b34.01010101.04100103.01020000
              + LEAF + Edge Code Format + Specifies the edge code format + AAF~CodeFormat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010c.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerforationsPerFrame +
                urn:smpte:ul:060e2b34.01010102.04100103.01030000
              + LEAF + Perforations Per Frame + Specifies number of perforations per frame [e.g. 2, 3, 4, 5, 8, 10, 12, 15] + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PerforationsPerFrame_Rational +
                urn:smpte:ul:060e2b34.01010102.04100103.01030100
              + LEAF + Perforations Per Frame + Specifies number of perforations per frame [e.g. 2, 3, 4, 5, 8, 10, 12, 15] or non-integer values + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01040000
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName +
                urn:smpte:ul:060e2b34.01010102.04100103.01040100
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + AAF~FilmGaugeFormat + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormatName_FilmType +
                urn:smpte:ul:060e2b34.01010102.04100103.01040200
              + LEAF + Film Format Name + The gauge and format of the film. For example: Neg; Blair Viventoscope + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01050000
              + LEAF + Film Stock Kind + Example: 5247 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockKind +
                urn:smpte:ul:060e2b34.01010102.04100103.01050100
              + LEAF + Film Stock Kind + Example: 5247 + AAF~Model + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockManufacturerName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.01060000
              + LEAF + Film Stock Manufacturer Name + Example: Kodak, Ilford + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmStockManufacturer +
                urn:smpte:ul:060e2b34.01010102.04100103.01060100
              + LEAF + Film Stock Manufacturer Name + Example: Kodak, Ilford + AAF~Manufacturer + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmBatchNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04100103.01070000
              + LEAF + Film Batch Number + Specifies the batch of film stock + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmBatchNumber +
                urn:smpte:ul:060e2b34.01010102.04100103.01070100
              + LEAF + Film Batch Number + Specifies the batch of film stock + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmFormat +
                urn:smpte:ul:060e2b34.01010102.04100103.01080000
              + LEAF + Film Gauge + Specifies gauge of film stock in mm. Examples: 70mm, 48mm, 16mm, etc. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EdgeCodeFilmFormat +
                urn:smpte:ul:060e2b34.01010102.04100103.01090000
              + LEAF + Edge Code Film Gauge + Specifies the gauge of film stock associated with the edge code. + AAF~FilmKind + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010d.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpecificFilmMediumParameters +
                urn:smpte:ul:060e2b34.01010101.04100103.02000000
              + NODE + Specific Film Medium Parameters + Specific Information about the film medium + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalMediaLength +
                urn:smpte:ul:060e2b34.01010101.04100103.02010000
              + LEAF + Physical Media Length + The physical length of the medium on which the essence was captured + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmCaptureAperture_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04100103.02020000
              + LEAF + Film Capture Aperture + Examples: Super 16, Academy etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmAspectRatio +
                urn:smpte:ul:060e2b34.01010102.04100103.02030000
              + LEAF + Exposed Aspect Ratio + Aspect ratio of the exposed physical frame + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemoryStorageCharacteristics +
                urn:smpte:ul:060e2b34.01010102.04180000.00000000
              + NODE + Memory Storage Characteristics + Information about persistent and transient memory parameters + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemoryStorageAlignmentCharacteristics +
                urn:smpte:ul:060e2b34.01010102.04180100.00000000
              + NODE + Memory Storage Alignment Characteristics + Information about aligning data with defined memory boundaries + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageAlignmentFactor +
                urn:smpte:ul:060e2b34.01010102.04180101.00000000
              + LEAF + Image Alignment Offset + Specifies number of bytes to align the start of an image with a defined memory boundary + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageStartOffset +
                urn:smpte:ul:060e2b34.01010102.04180102.00000000
              + LEAF + Image Start Offset + Specifies bytes of fill before start of field + AAF~FieldStartOffset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageEndOffset +
                urn:smpte:ul:060e2b34.01010102.04180103.00000000
              + LEAF + Image End Offset + Specifies bytes of fill after end of field + AAF~FieldEndOffset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaddingBits +
                urn:smpte:ul:060e2b34.01010102.04180104.00000000
              + LEAF + Padding Bits + Specifies the number of bits to pad each pixel so that the next pixel starts on a defined boundary + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200000.00000000
              + NODE + Device Characteristics + Information about the devices used + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200100.00000000
              + NODE + Camera Characteristics + Information about camera devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200101.00000000
              + NODE + Image Characteristics + The specific category of imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCategory_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200101.01000000
              + LEAF + Image Category + Identifies the specific category of imagery (often revealing the nature of the collector or intended use). Format is as defined in NITF v2.0 in addition to those defined here. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImagerCharacteristics +
                urn:smpte:ul:060e2b34.01010104.04200102.00000000
              + NODE + Imager Characteristics + The specific category of imagery + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageDevices +
                urn:smpte:ul:060e2b34.01010101.04200102.01000000
              + NODE + Image Devices + Information about the image device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200102.01010000
              + LEAF + Image Source Device Kind + Indicates the type of the image source device + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSourceDeviceKind +
                urn:smpte:ul:060e2b34.01010109.04200102.01010100
              + LEAF + Image Source Device Kind + Indicates the type of the image source device + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AcquisitionCharacteristics +
                urn:smpte:ul:060e2b34.0101010d.04200103.00000000
              + NODE + Acquisition Characteristics + The specific category of Acquisition + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraOperation +
                urn:smpte:ul:060e2b34.0101010d.04200103.01000000
              + NODE + CameraOperation + Includes items for camera operators to operate the camera. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoExposureMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.01010000
              + LEAF + Auto Exposure Mode + Auto Exposure setup Mode + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020107.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoFocusSensingAreaSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01020000
              + LEAF + Auto Focus Sensing Area Setting + Auto Focus Sensing Area setting defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010132.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorCorrectionFilterWheelSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01030000
              + LEAF + Color Correction Filter Wheel Setting + Color Compensation Filter Wheel setting defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201012f.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NeutralDensityFilterWheelSetting +
                urn:smpte:ul:060e2b34.0101010d.04200103.01040000
              + LEAF + Neutral Density Filter Wheel Setting + Neutral Density Filter Wheel setting as an integer value where the value 1 means a clear filter. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorDimensionEffectiveWidth +
                urn:smpte:ul:060e2b34.0101010d.04200103.01050000
              + LEAF + Image Sensor Dimension Effective Width + Width of effective image area in micro meters + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorDimensionEffectiveHeight +
                urn:smpte:ul:060e2b34.0101010d.04200103.01060000
              + LEAF + Image Sensor Dimension Effective Height + Height of effective image area in micro meters + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageSensorReadoutMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.01070000
              + LEAF + Image Sensor Readout Mode + Image Readout mode defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010130.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeedAngle +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080000
              + LEAF + Shutter Speed (Angle) + Shutter speed as an angle defining the shutter speed (angle) in minutes relative to a completely open shutter angle of 360 degrees. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeedTime +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080100
              + LEAF + Shutter Speed (Time) + Shutter speed as a time defining the shutter speed (time) in seconds + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraMasterGainAdjustment +
                urn:smpte:ul:060e2b34.0101010d.04200103.01090000
              + LEAF + Camera Master Gain Adjustment + Master Gain Control setting in 0.01 decibel units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ISOSensitivity +
                urn:smpte:ul:060e2b34.0101010d.04200103.010a0000
              + LEAF + ISO Sensitivity + Sensitivity to light + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectricalExtenderMagnification +
                urn:smpte:ul:060e2b34.0101010d.04200103.010b0000
              + LEAF + Electrical Extender Magnification + Expresses the magnification setup of the picture size in percent where 100% (64h) represents the original picture size + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExposureIndexOfPhotoMeter +
                urn:smpte:ul:060e2b34.0101010e.04200103.010c0000
              + LEAF + Exposure Index of Photo Meter + Setting of the photo meter in ISO number. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorMatrix +
                urn:smpte:ul:060e2b34.0101010e.04200103.010d0000
              + LEAF + Color Matrix + Specifies the setting of the color balance of the camera with the ordered elements (R to R, G to R, B to R, R to G, G to G, B to G, R to B, G to B, B to B). + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 8 + 9 x 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Adjustment +
                urn:smpte:ul:060e2b34.0101010d.04200103.02000000
              + NODE + Adjustment + Includes items for making detailed image adjustments. + RDD 18 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AutoWhiteBalanceMode +
                urn:smpte:ul:060e2b34.0101010d.04200103.02010000
              + LEAF + Auto White Balance Mode + Auto White Balance Mode defined as a registered code + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010131.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WhiteBalance +
                urn:smpte:ul:060e2b34.0101010d.04200103.02020000
              + LEAF + White Balance + White Balance value defined by the temperature in Kelvin + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraMasterBlackLevel +
                urn:smpte:ul:060e2b34.0101010d.04200103.02030000
              + LEAF + Camera Master Black Level + Level of the master black level of the camera expressed as a percentage defined in 0.1 % units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraKneePoint +
                urn:smpte:ul:060e2b34.0101010d.04200103.02040000
              + LEAF + Camera Knee Point + Level of the knee point in the camera transfer characteristic expressed as a percentage defined in 0.1 % units + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraKneeSlope +
                urn:smpte:ul:060e2b34.0101010d.04200103.02050000
              + LEAF + Camera Knee Slope + Slope of the transfer characteristic starting at the knee point. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CameraLuminanceDynamicRange +
                urn:smpte:ul:060e2b34.0101010d.04200103.02060000
              + LEAF + Camera Luminance Dynamic Range + Luminance Dynamic Range expressed as a percentage defined in 0.1 % units. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GammaForCDL +
                urn:smpte:ul:060e2b34.0101010e.04200103.02070000
              + LEAF + Gamma for CDL + Enumerated code that represents the gamma characteristic applied at the input to the ASC CDL. + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASCCDLV12 +
                urn:smpte:ul:060e2b34.0101010e.04200103.02080000
              + LEAF + ASC CDL V1.2 + 10 parameters of ASC Color Decision List V1.2. + RDD 18 + false + UnknownContext + array of 10 items +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200200.00000000
              + NODE + Optical Characteristics + Information about optics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestParameters +
                urn:smpte:ul:060e2b34.01010101.04200201.00000000
              + NODE + Optical Test Parameters + Optical test parameters from the original recording + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalDeviceParameters +
                urn:smpte:ul:060e2b34.01010101.04200201.01000000
              + NODE + Optical Device Parameters + Information about the optical device used (examples: lens, ice block) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200201.01010000
              + LEAF + Optical Test Parameter Name + The specific parameter under test, (example: Flare) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestResult_Float +
                urn:smpte:ul:060e2b34.01010101.04200201.01020000
              + LEAF + Optical Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalTestResult +
                urn:smpte:ul:060e2b34.01010101.04200201.01030000
              + LEAF + Optical Test Result + The result from the specified test + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocalLength_Float +
                urn:smpte:ul:060e2b34.01010102.04200201.01040000
              + LEAF + Focal Length + Focal length of the lens at time of capture + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocalLength +
                urn:smpte:ul:060e2b34.01010103.04200201.01040100
              + LEAF + Focal Length + Focal length of the lens in millimeters at time of collection. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + Focal length in millimeters shall be expressed as DDDDDDDd where DDDDDDD is in millimeters and d is tenths of a millimeter. +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorSize_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01050000
              + LEAF + Sensor Size + The size of the sensor, for example: 1/2 inch, 2/3 inch, etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensAperture +
                urn:smpte:ul:060e2b34.01010102.04200201.01060000
              + LEAF + Lens Aperture + Aperture of the lens at the time of collection + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorTypeCode_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01070000
              + LEAF + Sensor Type Code + Code indicating type of sensor that produced the original video content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVHorizontal +
                urn:smpte:ul:060e2b34.01010102.04200201.01080000
              + LEAF + Field of View (FOV-Horizontal) + Sensor horizontal field of view. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVHorizontalFP4 +
                urn:smpte:ul:060e2b34.01010103.04200201.01080100
              + LEAF + Field of View (FOV-Horizontal) + Sensor horizontal field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + FOV format is DDDd where DDD is in degrees and d is tenth of a degree +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnamorphicLensCharacteristic_ISO7 +
                urn:smpte:ul:060e2b34.01010102.04200201.01090000
              + LEAF + Anamorphic Lens Characteristic + Examples: Flat, anamorphic + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVVertical +
                urn:smpte:ul:060e2b34.01010103.04200201.010a0000
              + LEAF + Field of View (FOV-Vertical) + Sensor vertical field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes + FOV format is DDDd where DDD is in degrees and d is tenth of a degree +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FieldOfViewFOVVerticalFP4 +
                urn:smpte:ul:060e2b34.01010107.04200201.010a0100
              + LEAF + Field of View (FOV-Vertical FP-4) + Sensor vertical field of view in degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalShootingParameters +
                urn:smpte:ul:060e2b34.0101010d.04200202.00000000
              + NODE + Optical Shooting Parameters + Optical shooting/setting parameters during acquisition + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisFNumber +
                urn:smpte:ul:060e2b34.0101010d.04200202.01000000
              + LEAF + Iris F-Number + Lens aperture setting in EV/1000h based on 8000h for F16 + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusPositionFromImagePlane +
                urn:smpte:ul:060e2b34.0101010d.04200202.02000000
              + LEAF + Focus Position From Image Plane + Distance in meters between the image plane and the object in focus + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusPositionFromFrontLensVertex +
                urn:smpte:ul:060e2b34.0101010d.04200202.03000000
              + LEAF + Focus Position From Front Lens Vertex + Distance in meters between the front of the lens and the object in focus + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MacroSetting +
                urn:smpte:ul:060e2b34.0101010d.04200202.04000000
              + LEAF + Macro Setting + Indicates the capability of the lens macro function for close-up work with a limited focal range. True = On, False = Off + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 bytes + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensZoom35mmStillCameraEquivalent +
                urn:smpte:ul:060e2b34.0101010d.04200202.05000000
              + LEAF + Lens Zoom 35mm Still Camera Equivalent + Focal length in meters. + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LensZoomActualFocalLength +
                urn:smpte:ul:060e2b34.0101010d.04200202.06000000
              + LEAF + Lens Zoom Actual Focal Length + Focal length in meters. + RDD 18 + false + UnknownContext + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OpticalExtenderMagnification +
                urn:smpte:ul:060e2b34.0101010d.04200202.07000000
              + LEAF + Optical Extender Magnification + Magnification factor setup of an optical extender or conversion lens where present + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisTNumber +
                urn:smpte:ul:060e2b34.0101010e.04200202.08000000
              + LEAF + Iris T-Number + Iris position value calculated from the "T-number" that is a measure of the amount of light transmitted through the lens in practice + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IrisRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.09000000
              + LEAF + Iris Ring Position + Iris ring rotation angle in unsigned integer. 0 is for full open, and FFFFh for close + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FocusRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.0a000000
              + LEAF + Focus Ring Position + Focus ring rotation angle in unsigned integer. 0 is for near-end, FFFFh for infinity + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ZoomRingPosition +
                urn:smpte:ul:060e2b34.0101010e.04200202.0b000000
              + LEAF + Zoom Ring Position + Zooming ring rotation angle in unsigned integer. 0 is for wide-end, and FFFFh is for tele-end + RDD 18 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MicrophoneCharacteristics +
                urn:smpte:ul:060e2b34.01010101.04200300.00000000
              + NODE + Microphone Characteristics + Information about microphones used + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorType_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200301.00000000
              + LEAF + Sensor Type + transducer principle + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PolarCharacteristic_ISO7 +
                urn:smpte:ul:060e2b34.01010101.04200302.00000000
              + LEAF + Polar Characteristic + polar patterns + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayCharacteristics +
                urn:smpte:ul:060e2b34.0101010e.04200400.00000000
              + NODE + Display Characteristics + Information about display devices + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayCharacteristics +
                urn:smpte:ul:060e2b34.0101010e.04200401.00000000
              + NODE + Mastering Display Characteristics + Information about mastering display devices as configured for the mastering process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayColorVolume +
                urn:smpte:ul:060e2b34.0101010e.04200401.01000000
              + NODE + Mastering Display Color Volume + Information about the color volume of a mastering display device as configured for the mastering process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.04200401.01010000
              + LEAF + Mastering Display Primaries + Display Primaries metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020a00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.04200401.01020000
              + LEAF + Mastering Display White Point Chromaticity + Chromaticity of White Point metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.04200401.01030000
              + LEAF + Mastering Display Maximum Luminance + Maximum Display Mastering Luminance metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.04200401.01040000
              + LEAF + Mastering Display Minimum Luminance + Minimum Display Mastering Luminance metadata as specified in ST 2086 + SMPTE ST 2067-21 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemCharacteristics +
                urn:smpte:ul:060e2b34.01010103.04300000.00000000
              + NODE + System Characteristics + Information about the integrated system used to acquire information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SystemNameOrNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010103.04300100.00000000
              + LEAF + System Name or Number + A text string with the name or number of the integrated system of sensors or devices that acquired the data + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PROCESS +
                urn:smpte:ul:060e2b34.01010101.05000000.00000000
              + NODE + PROCESS + Class 5 is reserved for information about the essence or metadata processing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralProcessIndicators +
                urn:smpte:ul:060e2b34.01010101.05010000.00000000
              + NODE + General Process Indicators + Flags etc indicating the process status of the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessFundamentals +
                urn:smpte:ul:060e2b34.01010101.05010100.00000000
              + NODE + Process Fundamentals + Information about process fundementals + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntegrationIndication_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010101.00000000
              + LEAF + Integration Indication + A term that describes what the essence is as a unit status of the essence. Terms must be consistent with industry or organizational practices to be useful. Includes segment, clip, shot, item, program etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntegrationIndication +
                urn:smpte:ul:060e2b34.01010104.05010101.01000000
              + LEAF + Integration Indication + A term that describes what the essence is as a unit status of the essence. Terms must be consistent with industry or organizational practices to be useful. Includes segment, clip, shot, item, program etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventIndication_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010102.00000000
              + LEAF + Event Indication + A term that describes what the Event is as a part of the Process. Terms must be consistent with industry or organizational practices to be useful. Includes project, mission, scene, in-points, trigger points, license, option, publication, cataloguing etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventIndication +
                urn:smpte:ul:060e2b34.01010104.05010102.01000000
              + LEAF + Event Indication + A term that describes what the Event is as a part of the Process. Terms must be consistent with industry or organizational practices to be useful. Includes project, mission, scene, in-points, trigger points, license, option, publication, cataloguing etc. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + QualityFlag +
                urn:smpte:ul:060e2b34.01010101.05010103.00000000
              + LEAF + Quality Flag + Quality of a specific recording/physical copy (good/no good) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h = NO GOOD +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LogoFlag +
                urn:smpte:ul:060e2b34.01010103.05010104.00000000
              + LEAF + Logo Flag + Flag indicates all instances of a shot (specifically) contain an on-screen logo. True=contains logo; False=no logo + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhysicalInstanceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010105.00000000
              + LEAF + Physical Instance Kind + Category of physical copy (e.g., master copy, copy, broadcast copy) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.05010106.00000000
              + LEAF + Graphic Kind + The type of a graphic as a name - eg modified still, graphic image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicUsageKind_ISO7 +
                urn:smpte:ul:060e2b34.01010103.05010107.00000000
              + LEAF + Graphic Usage Kind + The type of usage for which a graphic is intended - e.g title sequence, overlay. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GraphicUsage +
                urn:smpte:ul:060e2b34.01010104.05010107.01000000
              + LEAF + Graphic Usage Kind + The type of usage for which a graphic is intended - e.g title sequence, overlay. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageUsage +
                urn:smpte:ul:060e2b34.01010107.05010108.00000000
              + LEAF + Package Usage Kind + Indicates the role of a Package (also known as Mob) as a sub-clip, adjusted clip, template clip or other + AAF[1.1:]~UsageCode + Standard UsageType enumerated values defined in RP224 Labels Registry + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020104.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentCapture +
                urn:smpte:ul:060e2b34.01010101.05010200.00000000
              + NODE + Content Capture + Information about how content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DigitalOrAnalogOrigination_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010201.00000000
              + LEAF + Digital or Analog Origination + The nature of the first capture of the material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010202.00000000
              + NODE + Video or Image Capture Process + Information about how video content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FilmCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010203.00000000
              + NODE + Film Capture Process + Information about how film content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010204.00000000
              + NODE + Audio Capture Process + Information about how audio content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MicrophonePlacementTechniques_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05010204.01000000
              + LEAF + Microphone Placement Techniques + spaced omnis, spaced cardioids, close miking + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataCaptureProcess +
                urn:smpte:ul:060e2b34.01010101.05010205.00000000
              + NODE + Data Capture Process + Information about how data content was captured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Manipulation +
                urn:smpte:ul:060e2b34.01010101.05010300.00000000
              + NODE + Manipulation + Information about content manipulation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SimpleFlagging +
                urn:smpte:ul:060e2b34.01010101.05010301.00000000
              + LEAF + Simple Flagging Count + The number of alterations to the original file. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyCount +
                urn:smpte:ul:060e2b34.01010101.05010302.00000000
              + LEAF + Copy Count + The number of copies (i.e. not lossless clones) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationCopyNumber +
                urn:smpte:ul:060e2b34.01010105.05010302.01000000
              + LEAF + Generation Copy Number + A number that should be incremented by one for each numerically lossy generation from the source where the original source has a value of zero + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CloneCount +
                urn:smpte:ul:060e2b34.01010101.05010303.00000000
              + LEAF + Clone Count + The number of clones (i.e. digitally lossless copies) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte + 1 to 255 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationCloneNumber +
                urn:smpte:ul:060e2b34.01010105.05010303.01000000
              + LEAF + Generation Clone Number + A number that should be incremented by one for each numerically lossless generation from the source where the original source has a value of zero + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WorkInProgressFlag +
                urn:smpte:ul:060e2b34.01010101.05010304.00000000
              + LEAF + Work-in-Progress Flag + Is the essence a work in progress? Work-in-progress = True + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MusicFlags +
                urn:smpte:ul:060e2b34.01010105.05010400.00000000
              + NODE + Music Flags + Information about music used in the Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SignatureTuneFlag +
                urn:smpte:ul:060e2b34.01010103.05010401.00000000
              + LEAF + Signature Tune Flag + Indicates that the usage of the piece of music is for a signature tune + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BackgroundMusicFlag +
                urn:smpte:ul:060e2b34.01010103.05010402.00000000
              + LEAF + Background Music Flag + Indicates that the usage of the music was either soley for the benefit of the audience or audible (or apparently audible) to performers. True = Backgound, False = audible to performers + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThemeMusicFlag +
                urn:smpte:ul:060e2b34.01010105.05010403.00000000
              + LEAF + Theme Music Flag + Indicates that the associated music is theme music + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h (FALSE) or FFh (TRUE) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InsertMusicFlag +
                urn:smpte:ul:060e2b34.01010105.05010404.00000000
              + LEAF + Insert Music Flag + Indicates that the associated music is a music insert + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h (FALSE) or FFh (TRUE) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompressionProcessing +
                urn:smpte:ul:060e2b34.01010101.05020000.00000000
              + NODE + Compression Processing + Information about payload compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCompression +
                urn:smpte:ul:060e2b34.01010101.05020100.00000000
              + NODE + Video or Image Compression + Information about video or image compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoOrImageCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05020101.00000000
              + LEAF + Video or Image Compression Algorithm + Algorithm used to compress the video or image content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGProcessing +
                urn:smpte:ul:060e2b34.01010101.05020102.00000000
              + NODE + MPEG Processing + MPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEG2Processing +
                urn:smpte:ul:060e2b34.01010101.05020102.01000000
              + NODE + MPEG-2 Processing + MPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SplicingMetadata +
                urn:smpte:ul:060e2b34.01010101.05020102.01010000
              + LEAF + Splicing Metadata + MPEG-2 splicing metadata as defined in SDTI-CP (E&M) and SMPTE 312M + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.00000000
              + NODE + JPEG Processing + JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TIFFJPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.01000000
              + NODE + TIFF JPEG Processing + TIFF JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsUniform +
                urn:smpte:ul:060e2b34.01010102.05020103.01010000
              + LEAF + Uniform Data Flag + TRUE if the compressed data contains the same number of rows per strip throughout the data + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + UInt8 + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JPEGTableID +
                urn:smpte:ul:060e2b34.01010102.05020103.01020000
              + LEAF + JPEG Table ID + The code of a preapproved TIFF JPEG table ID + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012003.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + JFIFJPEGProcessing +
                urn:smpte:ul:060e2b34.01010102.05020103.02000000
              + NODE + JFIF JPEG Processing + JFIF JPEG processing performed on the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompression +
                urn:smpte:ul:060e2b34.01010101.05020200.00000000
              + NODE + Audio Compression + Information about audio compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05020201.00000000
              + LEAF + Audio Compression Algorithm + Algorithms used, bitrates used, modes used. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceCompression +
                urn:smpte:ul:060e2b34.01010101.05020300.00000000
              + NODE + Data Essence Compression + Information about data essence compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCompression +
                urn:smpte:ul:060e2b34.01010101.05020400.00000000
              + NODE + Metadata Compression + Information about metadata compression. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NoiseReductionProcessing +
                urn:smpte:ul:060e2b34.01010101.05030000.00000000
              + NODE + Noise Reduction Processing + Information about any noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoNoiseReduction +
                urn:smpte:ul:060e2b34.01010101.05030100.00000000
              + NODE + Video Noise Reduction + Information about any video noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoNoiseReductionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05030101.00000000
              + LEAF + Video Noise Reduction Algorithm + Algorithm used in a noise reduction process + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioNoiseReduction +
                urn:smpte:ul:060e2b34.01010101.05030200.00000000
              + NODE + Audio Noise Reduction + Information about any video noise reduction process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioNoiseReductionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05030201.00000000
              + LEAF + Audio Noise Reduction Algorithm + Algorithm used in a noise reduction process - eg Dolby SR, Telcom, other + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EnhancementOrModification +
                urn:smpte:ul:060e2b34.01010101.05200000.00000000
              + NODE + Enhancement or Modification + Enhamcement or modification to the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200100.00000000
              + NODE + Image Essence Processing + Enhamcement or modification to the image essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200101.00000000
              + LEAF + Enhancement or Modification Description + Description of how video content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlphaTransparency +
                urn:smpte:ul:060e2b34.01010102.05200102.00000000
              + LEAF + Alpha Transparency + Zero if the minimum value of an alpha sample specifies full transparency and the maximum value specifies full opacity, one if vice versa. + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010120.00000000 + 1 byte + 00h (Minimum value transparent) or 01h (Maximum value transparent) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200200.00000000
              + NODE + Video Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200201.00000000
              + LEAF + Video Device Kind + Specific description for a device - eg for the film camera, film grading, video camera, variable gain amplifier etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200202.00000000
              + LEAF + Video Device Parameter Name + Specific parameter for the specified device eg. Overall gain, Red lift, coring + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200203.00000000
              + LEAF + Video Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200300.00000000
              + NODE + Audio Essence Processing + Enhamcement or modification to the audio essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioEnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200301.00000000
              + LEAF + Audio Enhancement or Modification Description + Description of how audio content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioFirstMixDownProcess_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200302.00000000
              + LEAF + Audio First Mix-Down Process + The way in which the first mix down was done + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200400.00000000
              + NODE + Audio Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200401.00000000
              + LEAF + Audio Device Kind + Specific description for a device - eg The Compressor, limiter, etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceParameter_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200402.00000000
              + LEAF + Audio Device Parameter + Specific parameter for the specified device eg. Attack, gating + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200403.00000000
              + LEAF + Audio Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEssenceProcessing +
                urn:smpte:ul:060e2b34.01010101.05200500.00000000
              + NODE + Data Essence Processing + Enhamcement or modification to the data essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataEnhancementOrModificationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200501.00000000
              + LEAF + Data Enhancement or Modification Description + Description of how data content was modified. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200600.00000000
              + NODE + Data Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceKind_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200601.00000000
              + LEAF + Data Device Kind + Specific description for a device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceParameterName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200602.00000000
              + LEAF + Data Device Parameter Name + Specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDeviceParameterSetting_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05200603.00000000
              + LEAF + Data Device Parameter Setting + The setting of the specific parameter for the specified device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataProcessing +
                urn:smpte:ul:060e2b34.01010101.05200700.00000000
              + NODE + Metadata Processing + Enhamcement or modification to the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ModificationInformation +
                urn:smpte:ul:060e2b34.01010102.05200701.00000000
              + NODE + Modification Information + Modification informaation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenerationID +
                urn:smpte:ul:060e2b34.01010102.05200701.01000000
              + LEAF + Generation ID + Specifies the reference to a particular modification. + AAF~GenerationAUID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSupplierName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.02000000
              + LEAF + Application Supplier Name + Specifies the name of the application provider + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationSupplierName +
                urn:smpte:ul:060e2b34.01010102.05200701.02010000
              + LEAF + Application Supplier Name + Specifies the name of the application provider + AAF~CompanyName mxflib[:1.19]~CompanyName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationName_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.03000000
              + LEAF + Application Name + Specifies the name of the application product + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationName +
                urn:smpte:ul:060e2b34.01010102.05200701.03010000
              + LEAF + Application Name + Specifies the name of the application product + AAF~ProductName mxflib[:1.19]~ProductName + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.04000000
              + LEAF + Application Version Number + Specifies version information for the application + AAF~ProductVersion mxflib[:1.19]~ProductVersion + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionString_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.05000000
              + LEAF + Application Version String + Specifies version information for the application in textual form + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionString +
                urn:smpte:ul:060e2b34.01010102.05200701.05010000
              + LEAF + Application Version String + Specifies version information for the application in textual form + AAF~ProductVersionString mxflib[:1.19]~VersionString + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlatform_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05200701.06000000
              + LEAF + Application Platform + Specifies the platform on which the application was run + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlatform +
                urn:smpte:ul:060e2b34.01010102.05200701.06010000
              + LEAF + Application Platform + Specifies the platform on which the application was run + AAF~Platform + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationProductID +
                urn:smpte:ul:060e2b34.01010102.05200701.07000000
              + LEAF + Application Product ID + Specifies a reference to the application product definition + AAF~ProductID mxflib[:1.19]~ProductUID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedGenerationID +
                urn:smpte:ul:060e2b34.01010102.05200701.08000000
              + LEAF + Linked Generation ID + Specifies the reference to an overall modification + AAF~Generation + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.09000000
              + LEAF + Container Version + Specifies the container version number + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToolkitVersion +
                urn:smpte:ul:060e2b34.01010102.05200701.0a000000
              + LEAF + Toolkit Version + Specifies the SDK version number for a modification + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedApplicationPluginInstanceID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0b000000
              + LEAF + Linked Application Plug-In Instance ID + Weak Reference to the Application PlugIn Object that (directly or indirectly) strongly references this Application Metadata Referenced Object Set. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedDescriptiveFrameworkPluginID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0c000000
              + LEAF + Linked Descriptive Framework Plug-In ID + Weak Reference to the DM Segment that (directly or indirectly) strongly references this Description instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPluginInstanceID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0d000000
              + LEAF + Application Plug-In Instance ID + UUID of this application metadata plug-in. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataPlugInID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0e000000
              + LEAF + Descriptive Metadata Plug-In ID + UUID of this DM Plug-in instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationEnvironmentID +
                urn:smpte:ul:060e2b34.0101010c.05200701.0f000000
              + LEAF + Application Environment ID + Identifies the application to which the information in this Plug-In Object applies. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataApplicationEnvironmentID +
                urn:smpte:ul:060e2b34.0101010c.05200701.10000000
              + LEAF + Descriptive Metadata Application Environment ID + Identifies the application to which the information in this DM plug-in applies + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedDescriptiveObjectPluginID +
                urn:smpte:ul:060e2b34.0101010c.05200701.11000000
              + LEAF + Linked Descriptive Object Plug-In ID + Weak Reference to the DM Segment that (directly or indirectly) strongly references this Description instance + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05090500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataProcessorSettings +
                urn:smpte:ul:060e2b34.01010101.05200800.00000000
              + NODE + Metadata Processor Settings + The settings of a specific device in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodeProcessorSettings +
                urn:smpte:ul:060e2b34.01010102.05200900.00000000
              + NODE + Code Processor Settings + The settings of a effect or other plugin code object in the system + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginCategory +
                urn:smpte:ul:060e2b34.01010102.05200901.00000000
              + LEAF + Plug-In Category ID + Identifies the general purpose of the plugin + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020103.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginPlatform +
                urn:smpte:ul:060e2b34.01010102.05200902.00000000
              + LEAF + Plug-In Platform ID + Identifies the hardware platform of the plugin + AAF~Platform + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinPlatformVersion +
                urn:smpte:ul:060e2b34.01010102.05200903.00000000
              + LEAF + Minimum Supported Platform Version + Earliest supported version of the platform + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxPlatformVersion +
                urn:smpte:ul:060e2b34.01010102.05200904.00000000
              + LEAF + Maximum Supported Platform Version + Most-recent tested version of the platform + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Engine +
                urn:smpte:ul:060e2b34.01010102.05200905.00000000
              + LEAF + Plug-In Engine ID + Identifies the software engine of the plugin + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinEngineVersion +
                urn:smpte:ul:060e2b34.01010102.05200906.00000000
              + LEAF + Minimum Supported Engine Version + Earliest supported version of the Engine + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxEngineVersion +
                urn:smpte:ul:060e2b34.01010102.05200907.00000000
              + LEAF + Maximum Supported Engine Version + Most-recent tested version of the Engine + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginAPI +
                urn:smpte:ul:060e2b34.01010102.05200908.00000000
              + LEAF + Plug-In API ID + Identifies the hardware platform of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinPluginAPI +
                urn:smpte:ul:060e2b34.01010102.05200909.00000000
              + LEAF + Minimum API Version + Earliest supported version of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxPluginAPI +
                urn:smpte:ul:060e2b34.01010102.0520090a.00000000
              + LEAF + Maximum API Version + Most-recent tested version of the API + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SoftwareOnly +
                urn:smpte:ul:060e2b34.01010102.0520090b.00000000
              + LEAF + Software-Only Support Flag + Plugin capable of running without hardware support + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Accelerator +
                urn:smpte:ul:060e2b34.01010102.0520090c.00000000
              + LEAF + Hardware Accelerator Flag + Plugin capable of using hardware accelerator + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginLocators +
                urn:smpte:ul:060e2b34.01010102.0520090d.00000000
              + LEAF + Plug-In Locator Set + Specifies vector of references to web locators + AAF~Locators + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Authentication +
                urn:smpte:ul:060e2b34.01010102.0520090e.00000000
              + LEAF + Authentication Flag + Plugin supports authentication mechanism + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImplementedClass +
                urn:smpte:ul:060e2b34.01010102.0520090f.00000000
              + LEAF + Associated Metadata Definition + Specifies the metadata definition implemented by the plugin + AAF~DefinitionObject + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingInformation +
                urn:smpte:ul:060e2b34.01010101.05300000.00000000
              + NODE + Editing Information + Information about alterations to the original image stream to produce new editorial material. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingVersionInformation +
                urn:smpte:ul:060e2b34.01010101.05300100.00000000
              + NODE + Editing Version Information + Information about the version of the edit + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingDecisionInformation +
                urn:smpte:ul:060e2b34.01010101.05300200.00000000
              + NODE + Editing Decision Information + Information about editing decisions. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeType +
                urn:smpte:ul:060e2b34.01010101.05300201.00000000
              + LEAF + Default Fade Type + Specifies the default fade type for audio soft cuts + AAF~DefFadeType + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingMatteInformation +
                urn:smpte:ul:060e2b34.01010101.05300300.00000000
              + NODE + Editing Matte Information + Information about editing mattes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingEventInformation +
                urn:smpte:ul:060e2b34.01010101.05300400.00000000
              + NODE + Editing Event Information + Information about editing events + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ActiveState +
                urn:smpte:ul:060e2b34.01010101.05300401.00000000
              + LEAF + Active State + Specifies whether the device is active or not as a result of the event (Inactive = False) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTrackEditRate +
                urn:smpte:ul:060e2b34.01010102.05300402.00000000
              + LEAF + Event Track Edit Rate + Specifies the time base for edit/event units in hertz. + AAF~EditRate mxflib[:1.19]~EventEditRate + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeEditUnit +
                urn:smpte:ul:060e2b34.01010102.05300403.00000000
              + LEAF + Default Fade Edit Rate + Specifies the default time base for fade edit event units in hertz. + AAF~DefFadeEditUnit + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventComment_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300404.00000000
              + LEAF + Event Comment + User-provided Comment Text for an event + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventComment +
                urn:smpte:ul:060e2b34.01010102.05300404.01000000
              + LEAF + Event Comment + User-provided Comment Text for an event + AAF~Comment + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditRate +
                urn:smpte:ul:060e2b34.01010102.05300405.00000000
              + LEAF + Timeline Edit Rate + Specifies the timeline rate in hertz + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexEditRate +
                urn:smpte:ul:060e2b34.01010105.05300406.00000000
              + LEAF + Index Edit Rate + Specifies the indexing rate in hertz + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingEffectInformation +
                urn:smpte:ul:060e2b34.01010101.05300500.00000000
              + NODE + Editing Effect Information + Information about editing effects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeInType +
                urn:smpte:ul:060e2b34.01010101.05300501.00000000
              + LEAF + Fade-In Type + Specifies type of audio fade in + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeOutType +
                urn:smpte:ul:060e2b34.01010101.05300502.00000000
              + LEAF + Fade-Out Type + Specifies type of audio fade out + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010107.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsTimeWarp +
                urn:smpte:ul:060e2b34.01010101.05300503.00000000
              + LEAF + Speed Change Effect Flag + Specifies whether the effect changes the perceived speed of the essence (Slow-motion, fast-motion, and freeze effects = True) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationInputCount +
                urn:smpte:ul:060e2b34.01010101.05300504.00000000
              + LEAF + Input Segment Count + Specifies the number of input segments + AAF~NumberInputs + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Bypass +
                urn:smpte:ul:060e2b34.01010101.05300505.00000000
              + LEAF + Bypass + Specifies default input to play + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Operation +
                urn:smpte:ul:060e2b34.01010102.05300506.00000000
              + LEAF + Operation + Specifies the Effect or Transition used in an operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Value +
                urn:smpte:ul:060e2b34.01010102.05300507.00000000
              + LEAF + Value + Effect or Transformation Constant Control Value + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditHint +
                urn:smpte:ul:060e2b34.01010102.05300508.00000000
              + LEAF + Edit Hint + Hint provided to an interpolator for the algorithm to be used + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010106.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationDataDefinition +
                urn:smpte:ul:060e2b34.01010102.05300509.00000000
              + LEAF + Operation Data Definition + Basic essence kind resulting from the defined Operation + AAF~DataDefinition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationCategory +
                urn:smpte:ul:060e2b34.01010102.0530050a.00000000
              + LEAF + Operation Category + Specifies the Category of the Effect or Transformation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02020101.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayUnits_ISO7 +
                urn:smpte:ul:060e2b34.01010102.0530050b.00000000
              + LEAF + Display Units + Specifies the displayable name of the units of a parameter + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDisplayUnits +
                urn:smpte:ul:060e2b34.01010102.0530050b.01000000
              + LEAF + Display Units + Specifies the displayable name of the units of a parameter + AAF~DisplayUnits + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BypassOverride +
                urn:smpte:ul:060e2b34.01010102.0530050c.00000000
              + LEAF + Bypass Override + Specifies default input channel number to play in a specific instance e.g input 24 + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ControlPointValue +
                urn:smpte:ul:060e2b34.01010102.0530050d.00000000
              + LEAF + Control Point Value + Effect or Transformation Value at specific time + AAF~Value + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingWebInformation +
                urn:smpte:ul:060e2b34.01010101.05300600.00000000
              + NODE + Editing Web Information + Information about editing for web output + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BeginAnchor_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300601.00000000
              + LEAF + Begin Anchor + Specifies the HTML Anchor at which this clip starts + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BeginAnchor +
                urn:smpte:ul:060e2b34.01010102.05300601.01000000
              + LEAF + Begin Anchor + Specifies the HTML Anchor at which this clip starts + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndAnchor_ISO7 +
                urn:smpte:ul:060e2b34.01010102.05300602.00000000
              + LEAF + End Anchor + Specifies the HTML Anchor at which this clip ends + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EndAnchor +
                urn:smpte:ul:060e2b34.01010102.05300602.01000000
              + LEAF + End Anchor + Specifies the HTML Anchor at which this clip ends + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditingUserNotes +
                urn:smpte:ul:060e2b34.01010101.05300700.00000000
              + NODE + Editing User Notes + Information about editing user notes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorTransformInformation +
                urn:smpte:ul:060e2b34.0101010e.05310000.00000000
              + NODE + Color Transform Information + Color Transform Information + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTEssenceItems +
                urn:smpte:ul:060e2b34.0101010e.05310100.00000000
              + NODE + DMCVT Essence Items + DMCVT Essence Items + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationIdentifier +
                urn:smpte:ul:060e2b34.0101010e.05310101.00000000
              + LEAF + Application Identifier + Identifying an application and its defining document in the SMPTE ST 2094 suite + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationVersionNumber +
                urn:smpte:ul:060e2b34.0101010e.05310102.00000000
              + LEAF + Application Version Number + The Application Version of the identified SMPTE ST 2094 application + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BackwardsVersion +
                urn:smpte:ul:060e2b34.0101010e.05310103.00000000
              + LEAF + Backwards Version + The lowest Application Version for which this metadata set is valid + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeIntervalStart +
                urn:smpte:ul:060e2b34.0101010e.05310104.00000000
              + LEAF + Time Interval Start + Start point of the portion of image essence for which the metadata set is specified, as an index + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimeIntervalDuration +
                urn:smpte:ul:060e2b34.0101010e.05310105.00000000
              + LEAF + Time Interval Duration + Duration of the portion of image essence for which the metadata set is specified, as a count of index positions + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UpperLeftCorner +
                urn:smpte:ul:060e2b34.0101010e.05310106.00000000
              + LEAF + Upper Left Corner + Coordinate of the top-left pixel of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LowerRightCorner +
                urn:smpte:ul:060e2b34.0101010e.05310107.00000000
              + LEAF + Lower Right Corner + Coordinate of the bottom-right pixel of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WindowNumber +
                urn:smpte:ul:060e2b34.0101010e.05310108.00000000
              + LEAF + Window Number + Identifier of the Processing Window + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.05310109.00000000
              + LEAF + Targeted System Display Primaries + xy chromaticity coordinates of the three primaries of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 56 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.0531010a.00000000
              + LEAF + Targeted System Display White Point Chromaticity + xy chromaticity coordinate of the targeted system display's white point + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531010b.00000000
              + LEAF + Targeted System Display Maximum Luminance + Maximum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531010c.00000000
              + LEAF + Targeted System Display Minimum Luminance + Minimum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinimumPqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010d.00000000
              + LEAF + Minimum PQ-encoded maxRGB + The lowest PQ-encoded maxRGB value of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AveragePqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010e.00000000
              + LEAF + Average PQ-encoded maxRGB + The average of the PQ-encoded maxRGB values of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaximumPqencodedMaxrgb +
                urn:smpte:ul:060e2b34.0101010e.0531010f.00000000
              + LEAF + Maximum PQ-encoded maxRGB + The highest PQ-encoded maxRGB value of the reduced pixel set + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MinimumPqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310110.00000000
              + LEAF + Minimum PQ-encoded maxRGB Offset + Offset to be added to Minimum PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AveragePqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310111.00000000
              + LEAF + Average PQ-encoded maxRGB Offset + Offset to be added to Average PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaximumPqencodedMaxrgbOffset +
                urn:smpte:ul:060e2b34.0101010e.05310112.00000000
              + LEAF + Maximum PQ-encoded maxRGB Offset + Offset to be added to Maximum PQ-encoded maxRGB + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingOffset +
                urn:smpte:ul:060e2b34.0101010e.05310113.00000000
              + LEAF + Tone Mapping Offset + Tone Mapping Offset + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingGain +
                urn:smpte:ul:060e2b34.0101010e.05310114.00000000
              + LEAF + Tone Mapping Gain + Tone Mapping Gain + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingGamma +
                urn:smpte:ul:060e2b34.0101010e.05310115.00000000
              + LEAF + Tone Mapping Gamma + Tone Mapping Gamma + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaCompensationWeight +
                urn:smpte:ul:060e2b34.0101010e.05310116.00000000
              + LEAF + Chroma Compensation Weight + Amount of chroma adjustment + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SaturationGain +
                urn:smpte:ul:060e2b34.0101010e.05310117.00000000
              + LEAF + Saturation Gain + Amount of saturation adjustment + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneDetailFactor +
                urn:smpte:ul:060e2b34.0101010e.05310118.00000000
              + LEAF + Tone Detail Factor + Contribution of the detail management function + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceLowerBound +
                urn:smpte:ul:060e2b34.0101010e.05310119.00000000
              + LEAF + Luminance Lower Bound + Encoding of a lower bound of luminance + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceUpperBound +
                urn:smpte:ul:060e2b34.0101010e.0531011a.00000000
              + LEAF + Luminance Upper Bound + Encoding of an upper bound of luminance + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LuminanceRangeSelector +
                urn:smpte:ul:060e2b34.0101010e.0531011b.00000000
              + LEAF + Luminance Range Selector + True indicates inner luminance range + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityDiskCenter +
                urn:smpte:ul:060e2b34.0101010e.0531011c.00000000
              + LEAF + Chromaticity Disk Center + Center of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityDiskRadius +
                urn:smpte:ul:060e2b34.0101010e.0531011d.00000000
              + LEAF + Chromaticity Disk Radius + Radius of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChromaticityAreaSelector +
                urn:smpte:ul:060e2b34.0101010e.0531011e.00000000
              + LEAF + Chromaticity Area Selector + True indicates the area of the Chromaticity Disk + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SaturationGainFunction +
                urn:smpte:ul:060e2b34.0101010e.0531011f.00000000
              + LEAF + Saturation Gain Function + Sampled function, mapping a luminance based input value to a saturation scaling factor + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalWeights +
                urn:smpte:ul:060e2b34.0101010e.05310120.00000000
              + LEAF + Tone Mapping Input Signal Weights + Weights of R, G, B, and Y components + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 40 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalBlackLevelOffset +
                urn:smpte:ul:060e2b34.0101010e.05310121.00000000
              + LEAF + Tone Mapping Input Signal Black Level Offset + Used to calculate the gain of the signal as a first step in the Tone Mapping process + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingInputSignalWhiteLevelOffset +
                urn:smpte:ul:060e2b34.0101010e.05310122.00000000
              + LEAF + Tone Mapping Input Signal White Level Offset + Used to calculate the gain of the signal as a second step in the Tone Mapping process + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShadowGainControl +
                urn:smpte:ul:060e2b34.0101010e.05310123.00000000
              + LEAF + Shadow Gain Control + Control for the steepness of the curve in its shadow (darker) region + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HighlightGainControl +
                urn:smpte:ul:060e2b34.0101010e.05310124.00000000
              + LEAF + Highlight Gain Control + Control for the steepness of the curve in its highlight (brighter) region + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MidToneWidthAdjustmentFactor +
                urn:smpte:ul:060e2b34.0101010e.05310125.00000000
              + LEAF + Mid-Tone Width Adjustment Factor + Control for the width of the mid-tone region of the curve + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToneMappingOutputFineTuningFunction +
                urn:smpte:ul:060e2b34.0101010e.05310126.00000000
              + LEAF + Tone Mapping Output Fine Tuning Function + Sampled function, for tone mapping + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplaySignalFormat +
                urn:smpte:ul:060e2b34.0101010e.05310127.00000000
              + LEAF + Targeted System Display Signal Format + Enumerator of the signal format of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataColorCodingWorkspace +
                urn:smpte:ul:060e2b34.0101010e.05310128.00000000
              + LEAF + Metadata Color Coding Workspace + Enumerator of the color components and quantization range + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping1 +
                urn:smpte:ul:060e2b34.0101010e.05310129.00000000
              + LEAF + Pre-Matrix Tone Mapping 1 + Sampled function for first input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping2 +
                urn:smpte:ul:060e2b34.0101010e.0531012a.00000000
              + LEAF + Pre-Matrix Tone Mapping 2 + Sampled function for second input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreMatrixToneMapping3 +
                urn:smpte:ul:060e2b34.0101010e.0531012b.00000000
              + LEAF + Pre-Matrix Tone Mapping 3 + Sampled function for third input color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorRemappingMatrix +
                urn:smpte:ul:060e2b34.0101010e.0531012c.00000000
              + LEAF + Color Remapping Matrix + A 3x3 matrix between tone mapping stages + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 80 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping1 +
                urn:smpte:ul:060e2b34.0101010e.0531012d.00000000
              + LEAF + Post-Matrix Tone Mapping 1 + Sampled function for first post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping2 +
                urn:smpte:ul:060e2b34.0101010e.0531012e.00000000
              + LEAF + Post-Matrix Tone Mapping 2 + Sampled function for second post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostMatrixToneMapping3 +
                urn:smpte:ul:060e2b34.0101010e.0531012f.00000000
              + LEAF + Post-Matrix Tone Mapping 3 + Sampled function for third post matrix color component, in units of 1/16 383 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CenterOfEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310130.00000000
              + LEAF + Center Of Ellipse + Center position of the ellipses + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04011200.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RotationAngle +
                urn:smpte:ul:060e2b34.0101010e.05310131.00000000
              + LEAF + Rotation Angle + Clockwise rotation angle with respect to the positive direction of the x-axis of the ellipses + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMajorAxisInternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310132.00000000
              + LEAF + Semi-Major Axis Internal Ellipse + Semi-major axis value of the internal ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMajorAxisExternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310133.00000000
              + LEAF + Semi-Major Axis External Ellipse + Semi-major axis value of the external ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SemiMinorAxisExternalEllipse +
                urn:smpte:ul:060e2b34.0101010e.05310134.00000000
              + LEAF + Semi-Minor Axis External Ellipse + Semi-minor axis value of the external ellipse + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OverlapProcessOption +
                urn:smpte:ul:060e2b34.0101010e.05310135.00000000
              + LEAF + Overlap Process Option + Enumerator that indicates one of the two methods of combining rendered pixels + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310136.00000000
              + LEAF + Targeted System Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RowsInTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310137.00000000
              + LEAF + Rows In Targeted System Display Actual Peak Luminance + Number of rows (M) in the Targeted System Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MasteringDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310138.00000000
              + LEAF + Mastering Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the mastering display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RowsInMasteringDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310139.00000000
              + LEAF + Rows In Mastering Display Actual Peak Luminance + Number of rows (M) in the Mastering Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaxSCL +
                urn:smpte:ul:060e2b34.0101010e.0531013a.00000000
              + LEAF + Maximum Scene Color Component Levels + Maximum of each component of linearized RGB values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AverageMaxRGB +
                urn:smpte:ul:060e2b34.0101010e.0531013b.00000000
              + LEAF + Average MaxRGB + Average of linearized maxRGB values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistributionMaxRGBPercentages +
                urn:smpte:ul:060e2b34.0101010e.0531013c.00000000
              + LEAF + Distribution MaxRGB Percentages + First vector of DistributionMaxRGB with Integer percentage values + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistributionMaxRGBPercentiles +
                urn:smpte:ul:060e2b34.0101010e.0531013d.00000000
              + LEAF + Distribution MaxRGB Percentiles + Second vector of DistributionMaxRGB with Linearized maxRGB value at given percentile + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FractionBrightPixels +
                urn:smpte:ul:060e2b34.0101010e.0531013e.00000000
              + LEAF + Fraction Bright Pixels + Fraction of pixels that contains the brightest pixel + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KneePoint +
                urn:smpte:ul:060e2b34.0101010e.0531013f.00000000
              + LEAF + Knee Point + Separation point (K_S,K_F) between the linear part and the curved part of the tone mapping function, ordered K_S,K_F + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BezierCurveAnchors +
                urn:smpte:ul:060e2b34.0101010e.05310140.00000000
              + LEAF + Bezier Curve Anchors + Intermediate anchor parameters, ordered P1 to PN-1 + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ColorSaturationWeight +
                urn:smpte:ul:060e2b34.0101010e.05310141.00000000
              + LEAF + Color Saturation Weight + Adjusts the color saturation gain + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTSubDescriptorItems +
                urn:smpte:ul:060e2b34.0101010e.05310200.00000000
              + NODE + DMCVT SubDescriptor Items + DMCVT SubDescriptor Items + SMPTE ST 2094-2 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTApplicationIdentifier +
                urn:smpte:ul:060e2b34.0101010e.05310201.00000000
              + LEAF + DMCVT Application Identifier + Identifying an application and its defining document in the SMPTE ST 2094 suite + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTApplicationVersionNumber +
                urn:smpte:ul:060e2b34.0101010e.05310202.00000000
              + LEAF + DMCVT Application Version Number + The Application Version of the identified SMPTE ST 2094 application + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTBackwardsVersion +
                urn:smpte:ul:060e2b34.0101010e.05310203.00000000
              + LEAF + DMCVT Backwards Version + The lowest Application Version for which this metadata set is valid + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayPrimaries +
                urn:smpte:ul:060e2b34.0101010e.05310209.00000000
              + LEAF + DMCVT Targeted System Display Primaries + xy chromaticity coordinates of the three primaries of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 56 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayWhitePointChromaticity +
                urn:smpte:ul:060e2b34.0101010e.0531020a.00000000
              + LEAF + DMCVT Targeted System Display White Point Chromaticity + xy chromaticity coordinate of the targeted system display's white point + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04020200.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayMaximumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531020b.00000000
              + LEAF + DMCVT Targeted System Display Maximum Luminance + Maximum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayMinimumLuminance +
                urn:smpte:ul:060e2b34.0101010e.0531020c.00000000
              + LEAF + DMCVT Targeted System Display Minimum Luminance + Minimum luminance of the targeted system's display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplaySignalFormat +
                urn:smpte:ul:060e2b34.0101010e.05310227.00000000
              + LEAF + DMCVT Targeted System Display Signal Format + Enumerator of the signal format of the targeted system display + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310236.00000000
              + LEAF + DMCVT Targeted System Display Actual Peak Luminance + Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.04010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DMCVTRowsInTargetedSystemDisplayActualPeakLuminance +
                urn:smpte:ul:060e2b34.0101010e.05310237.00000000
              + LEAF + DMCVT Rows In Targeted System Display Actual Peak Luminance + Number of rows (M) in the DMCVT Targeted System Display Actual Peak Luminance array + SMPTE ST 2094-2 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessingHistory +
                urn:smpte:ul:060e2b34.01010101.05400000.00000000
              + NODE + Processing History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400100.00000000
              + NODE + Video Compression History + Audit history of compression for video payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05400101.00000000
              + LEAF + Video Compression Algorithm + Algorithm used to compress video content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGVideoRecodingDataset +
                urn:smpte:ul:060e2b34.01010101.05400102.00000000
              + LEAF + MPEG Video Recoding Dataset + Audit history of video coding - see SMPTE327. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400200.00000000
              + NODE + Audio Compression History + Audit history of compression for audio payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UpstreamAudioCompressionAlgorithm_ISO7 +
                urn:smpte:ul:060e2b34.01010101.05400201.00000000
              + LEAF + Upstream Audio Compression Algorithm + Algorithms used, bitrates used, modes used. + BB: Flag change since v8. Upstream added as name prefix because under audit history node + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MPEGAudioRecodingDataset +
                urn:smpte:ul:060e2b34.01010101.05400202.00000000
              + LEAF + MPEG Audio Recoding Dataset + Audio coding history as per SMPTEXXXX + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400300.00000000
              + NODE + Data Compression History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataCompressionHistory +
                urn:smpte:ul:060e2b34.01010101.05400400.00000000
              + NODE + Metadata Compression History + Audit history of compression for payload. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransferHistory +
                urn:smpte:ul:060e2b34.01010102.05401000.00000000
              + NODE + Transfer History + History of transfers occuring in the process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageTransferHistory +
                urn:smpte:ul:060e2b34.01010102.05401001.00000000
              + NODE + Image Transfer History + History of image transfers occuring in the process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownDirection +
                urn:smpte:ul:060e2b34.01010102.05401001.01000000
              + LEAF + Film-to-Video Transfer Direction + Specifies the history of the direction of transfer + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010a.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PulldownKind +
                urn:smpte:ul:060e2b34.01010102.05401001.02000000
              + LEAF + Film-to-Video Transfer Kind + Specifies the history of the kind of pulldown (3 2 525-line, 625-line, etc.) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0201010b.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PhaseFrame +
                urn:smpte:ul:060e2b34.01010102.05401001.03000000
              + LEAF + Film to Video Transfer Phase + Specifies the history of the position of the starting frame in the pulldown sequence (A is 0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Relational +
                urn:smpte:ul:060e2b34.01010101.06000000.00000000
              + NODE + RELATIONAL + Class 6 is reserved for information about the relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericRelationships +
                urn:smpte:ul:060e2b34.01010101.06010000.00000000
              + NODE + Generic Relationships + Specifies relationships which are generic between items + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceAndMetadataRelationships +
                urn:smpte:ul:060e2b34.01010101.06010100.00000000
              + NODE + Essence and Metadata Relationships + Type of relation (e.g., is part of, is an item of [program, series], remix, remake, ...) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceToEssenceRelationships +
                urn:smpte:ul:060e2b34.01010101.06010101.00000000
              + NODE + Essence to Essence Relationships + The relationship value in terms of Parent of; Child of; Item of; Excerpt of; Version of; Compilation of; etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TeletextSubtitlesFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.01000000
              + LEAF + Teletext Subtitles Flag + Flag indicating that teletext subtitles exist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubtitleDatafileFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.02000000
              + LEAF + Subtitle Datafile Flag + Flag indicating that a subtitle datfile exists. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClosedCaptionSubtitlesFlag +
                urn:smpte:ul:060e2b34.01010102.06010101.03000000
              + LEAF + Closed Caption Subtitles Flag + Flag indicating that closed caption subtitles exist. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToEssenceRelationships +
                urn:smpte:ul:060e2b34.01010101.06010102.00000000
              + NODE + Metadata to Essence Relationships + The relationship between metadata and essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SampleIndex +
                urn:smpte:ul:060e2b34.01010102.06010102.01000000
              + LEAF + Sample Index + Stream of byte offsets to individual samples in the essence data + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceContainerFormat +
                urn:smpte:ul:060e2b34.01010109.06010102.02000000
              + LEAF + Source Container Format + Format of essence container prior to encryption as a UL + DMS-Crypto~SourceEssenceContainerLabel + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceKey +
                urn:smpte:ul:060e2b34.01010109.06010102.03000000
              + LEAF + Source Key + Key of essence triplet prior to encryption + DCP + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DisplayType +
                urn:smpte:ul:060e2b34.0101010e.06010102.04000000
              + LEAF + Display Type + Indicates the type of display device intended for use with the enclosed XML resource + MXF + SMPTE ST 429-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntrinsicPictureResolution +
                urn:smpte:ul:060e2b34.0101010e.06010102.05000000
              + LEAF + Intrinsic Picture Resolution + Indicates the resolution of the primary picture on which Sub-Picture Ancillary Resources are to be rendered + MXF + SMPTE ST 429-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ZpositionInUse +
                urn:smpte:ul:060e2b34.0101010e.06010102.06000000
              + LEAF + Z-Position In Use + When non-zero, indicates that one or more subtitle instances in the enclosed XML resource make use of stereoscopic positioning features + MXF + SMPTE ST 429-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToMetadataRelationships +
                urn:smpte:ul:060e2b34.01010101.06010103.00000000
              + NODE + Metadata to Metadata Relationships + The relationship between metadata and metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourcePackageID +
                urn:smpte:ul:060e2b34.01010102.06010103.01000000
              + LEAF + Source Package ID + Specifies the reference to a precursor + AAF~SourceID mxflib~SourcePackageID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceTrackID +
                urn:smpte:ul:060e2b34.01010102.06010103.02000000
              + LEAF + Source Track ID + Specifies the track within the referenced precursor + AAF~SourceMobSlotID mxflib~SourceTrackID + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeScope +
                urn:smpte:ul:060e2b34.01010102.06010103.03000000
              + LEAF + Relative Scope + Specifies the the number of nested scopes that must be passed through to find the reference metadata + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeTrack +
                urn:smpte:ul:060e2b34.01010102.06010103.04000000
              + LEAF + Relative Track + Specifies the number of preceeding slots that must be passed through to find the reference slot within the specified reletive scope. + AAF~RelativeSlot + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedTrackID +
                urn:smpte:ul:060e2b34.01010105.06010103.05000000
              + LEAF + Linked Track ID + Link to (i.e. value of) the Track ID of the Track in this Package to which the Essence Descriptor applies. + AAF[1.12:]~LinkedSlotID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelID +
                urn:smpte:ul:060e2b34.01010107.06010103.06000000
              + LEAF + Channel ID + Specifies the channel within the referenced precursor + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ChannelIDs +
                urn:smpte:ul:060e2b34.01010107.06010103.07000000
              + LEAF + Channel IDs + Specifies an ordered array of channels within the referenced precursor + AAF[1.1:] + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MonoSourceTrackIDs +
                urn:smpte:ul:060e2b34.01010108.06010103.08000000
              + LEAF + Mono Source Track IDs + Specifies an ordered array of Tracks within the referenced precursor + AAF[1.1:]~MonoSourceSlotIDs + SMPTE ST 377-1:2011 with Amendment #1:2012 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DynamicSourcePackageID +
                urn:smpte:ul:060e2b34.01010109.06010103.09000000
              + LEAF + Dynamic Source Package ID + Specifies the package containing an essence event + AAF[1.3:] ASPA + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DynamicSourceTrackIDs +
                urn:smpte:ul:060e2b34.01010109.06010103.0a000000
              + LEAF + Dynamic Source Track IDs + Specifies one or more tracks within the referenced precursor containing an essence event + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010900.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceIndex +
                urn:smpte:ul:060e2b34.01010109.06010103.0b000000
              + LEAF + Source Index + Specifies a position or location within the referenced precursor + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceSpecies +
                urn:smpte:ul:060e2b34.01010109.06010103.0c000000
              + LEAF + Source Species + Specifies one or more metadata types to be extracted from the referenced precursor + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceValue +
                urn:smpte:ul:060e2b34.01010109.06010103.0d000000
              + LEAF + Source Value + Container for actual data of the referenced precursor + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimebaseReferenceTrackID +
                urn:smpte:ul:060e2b34.0101010c.06010103.0e000000
              + LEAF + Timebase Reference Track ID + Specifies the value of the Track ID of the target Track in the Material Package that provides the Edit Rate. + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventIDBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.0f000000
              + LEAF + ASM Event ID Batch + An unordered batch of ASM event identifiers. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 8+4n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.10000000
              + LEAF + ASM Link Encryption Key Batch + An unordered batch of link encryption key ID, encryption key, expiration time, and attribute data. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030400.00000000 + 8+(32*n) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMLinkEncryptionKeyIDBatch +
                urn:smpte:ul:060e2b34.0101010d.06010103.11000000
              + LEAF + ASM Link Encryption Key ID Batch + An unordered batch of ASM encryption key identifiers. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030200.00000000 + 8+4n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectToObjectRelationships +
                urn:smpte:ul:060e2b34.01010101.06010104.00000000
              + NODE + Object to Object Relationships + The relationship value in terms of Parent of; Child of; Item of; + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferences +
                urn:smpte:ul:060e2b34.01010102.06010104.01000000
              + NODE + Weak References + References to Uniquely Identified Objects + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectClass +
                urn:smpte:ul:060e2b34.01010102.06010104.01010000
              + LEAF + Object Class + Specifies a reference to the definition of a class of object + AAF~ObjClass + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerFormat +
                urn:smpte:ul:060e2b34.01010102.06010104.01020000
              + LEAF + Essence Container Format + Specifies a reference to the format of Container of Essence Data + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceContainerFormat +
                urn:smpte:ul:060e2b34.01010105.06010104.01020100
              + LEAF + Essence Container Format + Specifies a reference to the format of Container of Essence Data + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Codec +
                urn:smpte:ul:060e2b34.01010102.06010104.01030000
              + LEAF + Codec Definition + Specifies a reference to the codec used to create Essence Data. Listed in SMPTE RP224 + AAF~CodecDefinition + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010b00.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDefinition +
                urn:smpte:ul:060e2b34.01010105.06010104.01030100
              + LEAF + Codec Definition + UL to identify a codec compatible with this Essence Container. Listed in SMPTE RP224 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDefinitionReference +
                urn:smpte:ul:060e2b34.01010102.06010104.01040000
              + LEAF + Parameter Definition + Specifies a reference to the definition of a Parameter + AAF~Definition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Interpolation +
                urn:smpte:ul:060e2b34.01010102.06010104.01050000
              + LEAF + Interpolation + Specifies a reference to the definition of the interpolation to be used + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010500.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterType +
                urn:smpte:ul:060e2b34.01010102.06010104.01060000
              + LEAF + Parameter Data Type + Specifies a reference to the definition of the type of a parameter + AAF~Type + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileDescriptorClass +
                urn:smpte:ul:060e2b34.01010102.06010104.01070000
              + LEAF + Codec Essence Descriptor + Specifies a reference to the file essence descriptor used by the codec + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PrimaryPackage +
                urn:smpte:ul:060e2b34.01010104.06010104.01080000
              + LEAF + Primary Package + Specifies a reference to the primary package in this file + AAF[1.2:]~PrimaryMob ASPA[:0.8]~PrimaryMob + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataType +
                urn:smpte:ul:060e2b34.01010107.06010104.01090000
              + LEAF + KLV Data Type + Specifies a reference to the definition of the type of a KLV packet + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CompositionRendering +
                urn:smpte:ul:060e2b34.01010108.06010104.010a0000
              + LEAF + Composition Rendering + Specifies a reference to a rendering of a composition + AAF[1.1:]~Rendering + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BaseClass +
                urn:smpte:ul:060e2b34.0101010c.06010104.010b0000
              + LEAF + Base Class + Class identifier of the immediate superclass defined in an MXF specification that this object extends. + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferences +
                urn:smpte:ul:060e2b34.01010102.06010104.02000000
              + NODE + Strong References + References to a Contained Object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContentStorageObject +
                urn:smpte:ul:060e2b34.01010102.06010104.02010000
              + LEAF + Content + Specifes a reference to the packages and essence in a file + ASPA[0.8]~Content AAF~Content mxflib[:1.19]~ContentStorage + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dictionary +
                urn:smpte:ul:060e2b34.01010102.06010104.02020000
              + LEAF + Dictionary + Specifies a reference to the Dictionary of Definitions Used in Container + ASPA[0.8]~Dictionary AAF~Dictionary MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceDescription +
                urn:smpte:ul:060e2b34.01010102.06010104.02030000
              + LEAF + Essence Description + Specifies a reference to a format descriptor for the essence + AAF~EssenceDescription mxflib[:1.19]~Descriptor + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TrackSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02040000
              + LEAF + Segment + Specifies a reference to a segment of a track + AAF~Segment mxflib[:1.19]~Sequence + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TransitionOperation +
                urn:smpte:ul:060e2b34.01010102.06010104.02050000
              + LEAF + Transition Effect + Specifies a reference to the effect used in a transition + AAF~OperationGroup + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020500.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Rendering +
                urn:smpte:ul:060e2b34.01010102.06010104.02060000
              + LEAF + Effect Rendering + Specifies a reference to pre-rendered results of an operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InputSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02070000
              + LEAF + Input Segment + Specifies the input essence whose timebase is to be converted + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StillFrame +
                urn:smpte:ul:060e2b34.01010102.06010104.02080000
              + LEAF + Still Frame + Specifies a reference to a thumbnail representation of the essence + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SelectedSegment +
                urn:smpte:ul:060e2b34.01010102.06010104.02090000
              + LEAF + Selected + Specifies the segment selected by the editor + AAF~Selected + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationSource +
                urn:smpte:ul:060e2b34.01010102.06010104.020a0000
              + LEAF + Annotation + Specifies a reference to an annotation which is stored as essence + AAF~Annotation + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ManufacturerInfo +
                urn:smpte:ul:060e2b34.01010102.06010104.020b0000
              + LEAF + Manufacturer Information Object + Specifies a reference to an object that provides information about the manufacturer + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05020400.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveFrameworkObject +
                urn:smpte:ul:060e2b34.01010105.06010104.020c0000
              + LEAF + Descriptive Metadata Framework + Strong Reference to the Descriptive Metadata Framework + AAF[1.1:]~Description ASPA[:0.8]~DMFramework mxflib[:1.19]~DMFramework + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05021f00.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextObject +
                urn:smpte:ul:060e2b34.01010109.06010104.020d0000
              + LEAF + Cryptographic Context Object + A strong reference to the cryptographic context + DMS-Crypto~ContextSR + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationPlugInObjects +
                urn:smpte:ul:060e2b34.0101010c.06010104.020e0000
              + LEAF + Application Plug-In Batch + A batch of strong references to Application Plug-In Objects + 377M-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkerObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.020f0000
              + LEAF + Package Marker Object + A strong reference to a Package Marker object + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022e00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageTimelineMarkerObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02100000
              + LEAF + Package Timeline Marker Object + A strong reference to a Package Marker object + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022e00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02110000
              + LEAF + Register Administration Object + A strong reference to one concrete class of the Register Administration object base class. + SMPTE ST 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryAdministrationObject +
                urn:smpte:ul:060e2b34.0101010c.06010104.02120000
              + LEAF + Register Entry Administration Object + A strong reference to one concrete subclass of the EntryAdministration base class object. + SMPTE ST 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022d00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencingToDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010104.06010104.02400000
              + NODE + Strong Referencing to Descriptive Metadata Sets + References to a Contained Object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupSet +
                urn:smpte:ul:060e2b34.01010105.06010104.02400500
              + LEAF + Group Set + A strong reference to a Group set + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BankDetailsSet +
                urn:smpte:ul:060e2b34.01010105.06010104.02401c00
              + LEAF + Bank Details Set + A strong reference to a Bank Details set + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PictureFormatObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02401d00
              + LEAF + Image Format Set + A strong reference to the Image Format set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessingObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402000
              + LEAF + Processing Set + A strong reference to the Processing set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProjectObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402100
              + LEAF + Project Set + A strong reference to the Project set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactsListObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402200
              + LEAF + Contacts List Set + A strong reference to the Contacts List set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CueWordsSets +
                urn:smpte:ul:060e2b34.01010105.06010104.02402300
              + NODE + Cue Words Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationCueWordsObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402301
              + LEAF + Annotation Cue Words Set + A strong reference to a Cue Words set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotCueWordsObject +
                urn:smpte:ul:060e2b34.01010105.06010104.02402302
              + LEAF + Shot Cue Words Set + A strong reference to a Cue Words set + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencesBatches +
                urn:smpte:ul:060e2b34.01010102.06010104.03000000
              + NODE + Weak References Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDataDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.03010000
              + LEAF + Codec Essence Kinds + Specifies references to the basic essence kinds supported by the codec + AAF~DataDefinitions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationParametersDefined +
                urn:smpte:ul:060e2b34.01010102.06010104.03020000
              + LEAF + Operation Parameters + Specifies references to the paramater definitions that may be used with the effect + AAF~ParametersDefined + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05030e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010104.06010104.03030000
              + LEAF + Descriptive Metadata Sets + Specifies unordered references to descriptive metadata sets + SMPTE 377M + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataParentProperties +
                urn:smpte:ul:060e2b34.01010107.06010104.03040000
              + LEAF + KLV Data Parent Properties + Specifies an unordered set of references to the definitions of properties which may contain this KLVData + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TaggedValueParentProperties +
                urn:smpte:ul:060e2b34.01010107.06010104.03050000
              + LEAF + Tagged Value Parent Properties + Specifies an unordered set of references to the definitions of properties which may contain this Tagged Value + AAF[1.2:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GenericPayloads +
                urn:smpte:ul:060e2b34.0101010c.06010104.03060000
              + LEAF + Generic Payloads + A Batch of Universal Labels of all the Generic Payloads used in this file. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencingToDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03400000
              + NODE + Weak Referencing to Descriptive Metadata Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantRoleSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03401300
              + NODE + Participant Role Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardParticipants +
                urn:smpte:ul:060e2b34.01010105.06010104.03401301
              + LEAF + Award Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Awards + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractParticipants +
                urn:smpte:ul:060e2b34.01010105.06010104.03401302
              + LEAF + Contract Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Contract + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationParticipants +
                urn:smpte:ul:060e2b34.01010107.06010104.03401303
              + LEAF + Annotation Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Annotation + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionsDescriptionParticipantSets +
                urn:smpte:ul:060e2b34.01010108.06010104.03401304
              + LEAF + Captions Description Participant Sets + An unordered list of generalized weak (global) references to Participant sets for Captions Description + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Persons +
                urn:smpte:ul:060e2b34.01010105.06010104.03401400
              + LEAF + Person Sets + An unordered list of generalized weak (global) references to Person sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationSets +
                urn:smpte:ul:060e2b34.01010105.06010104.03401500
              + NODE + Organization Sets + An unordered list of generalized weak (global) references to Organization sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantOrganizations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401501
              + LEAF + Participant Organization Sets + An unordered list of generalized weak (global) references to Organization sets for Participant Roles + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonOrganizations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401502
              + LEAF + Person Organization Sets + An unordered list of generalized weak (global) references to Organization sets for Persons + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locations +
                urn:smpte:ul:060e2b34.01010105.06010104.03401600
              + LEAF + Location Sets + An unordered list of generalized weak (global) references to Location sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05070300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencesArrays +
                urn:smpte:ul:060e2b34.01010102.06010104.04000000
              + NODE + Weak References Arrays + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DegradeTo +
                urn:smpte:ul:060e2b34.01010102.06010104.04010000
              + LEAF + Degraded Effects + Specifies a vector of references to the effect definitions that may be substituted if the specified effect is not available + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DescriptiveMetadataSetReferences +
                urn:smpte:ul:060e2b34.01010104.06010104.04020000
              + LEAF + Descriptive Metadata Set References + Specifies ordered weak references to descriptive metadata sets + SMPTE 377M + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesBatches +
                urn:smpte:ul:060e2b34.01010102.06010104.05000000
              + NODE + Strong References Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Packages +
                urn:smpte:ul:060e2b34.01010102.06010104.05010000
              + LEAF + Packages + Specifies a unordered set of references to Packages + AAF~Mobs mxflib~Packages + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceDataObjects +
                urn:smpte:ul:060e2b34.01010102.06010104.05020000
              + LEAF + Essence Data + Specifies a unordered set of references to Essence Data + AAF~EssenceData mxflib[:1.19]~EssenceContainerData + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OperationDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05030000
              + LEAF + Operation Definitions + Specifies a unordered set of references to Operation Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050800.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParameterDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05040000
              + LEAF + Parameter Definitions + Specifies a unordered set of references to Parameter Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050900.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05050000
              + LEAF + Data Definitions + Specifies a unordered set of references to Data Definitions + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PluginDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05060000
              + LEAF + Plug-In Definitions + Specifies a unordered set of references to Plugin Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050a00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05070000
              + LEAF + Codec Definitions + Specifies a unordered set of references to Codec Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContainerDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05080000
              + LEAF + Container Definitions + Specifies a unordered set of references to Container Definitions + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InterpolationDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010104.05090000
              + LEAF + Interpolation Definitions + Specifies a unordered set of references to Interpolation Definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KLVDataDefinitions +
                urn:smpte:ul:060e2b34.01010107.06010104.050a0000
              + LEAF + KLV Data Definitions + Specifies a unordered set of references to KLV Data Definitions + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050d00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TaggedValueDefinitions +
                urn:smpte:ul:060e2b34.01010107.06010104.050b0000
              + LEAF + Tagged Value Definitions + Specifies a unordered set of references to Tagged Value Definitions + AAF[1.1:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesToDescriptiveMetadataBatches +
                urn:smpte:ul:060e2b34.01010104.06010104.05400000
              + NODE + Strong References to Descriptive Metadata Batches + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TitlesObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400400
              + LEAF + Titles Sets + An unordered list of strong references to Titles sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GroupRelationshipObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400500
              + LEAF + Group Sets + An unordered list of strong references to Group sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400600
              + LEAF + Identification Sets + An unordered list of strong references to Identification sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EpisodicItemSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05400700
              + LEAF + Episodic Item Sets + An unordered list of strong references to Episodic Item sets + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BrandingObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400800
              + LEAF + Branding Sets + An unordered list of strong references to Branding sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400900
              + LEAF + Event Sets + An unordered list of strong references to Event sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PublicationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400a00
              + LEAF + Publication Sets + An unordered list of strong references to Publication sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AwardObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400b00
              + LEAF + Award Sets + An unordered list of strong references to Award sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CaptionsDescriptionObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400c00
              + LEAF + Caption Description Sets + An unordered list of strong references to Caption Description sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AnnotationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400d00
              + LEAF + Annotation Sets + An unordered list of strong references to Annotation sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAnnotationObjects +
                urn:smpte:ul:060e2b34.01010108.06010104.05400d01
              + LEAF + Event Annotation Sets + An unordered list of strong references to Annotation sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e00
              + NODE + Setting Period Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionSettingPeriodObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e01
              + LEAF + Production Setting Period Sets + An unordered list of strong references to Setting Period sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneSettingPeriodObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e02
              + LEAF + Scene Setting Period Sets + An unordered list of strong references to Setting Period sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05400f00
              + LEAF + Scripting Sets + An unordered list of strong references to Scripting Metadata sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401000
              + LEAF + Classification Sets + An unordered list of strong references to Classification sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401100
              + NODE + Shot Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SceneShotObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401101
              + LEAF + Scene Shot Sets + An unordered list of strong references to Shot sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipShotObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401102
              + LEAF + Clip Shot Sets + An unordered list of strong references to Shot sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeyPointObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401200
              + LEAF + Key Point Sets + An unordered list of strong references to Key Point sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParticipantObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401300
              + LEAF + Shot Participant Role Sets + An unordered list of strong references to ParticipantRole sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PersonObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401400
              + LEAF + Shot Person Sets + An unordered list of one or more strong references to Person sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OrganizationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401500
              + LEAF + Organization Sets + An unordered list of one or more strong references to Organization sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401600
              + LEAF + Shot Location Sets + An unordered list of strong references to Location sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401700
              + LEAF + Address Sets + An unordered list of strong references to Address sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CommunicationsObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401800
              + LEAF + Communication Sets + An unordered list of strong references to Communications sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401900
              + LEAF + Contract Sets + An unordered list of strong references to Contract sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401a00
              + LEAF + Rights Sets + An unordered list of strong references to Rights sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentsSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401b00
              + LEAF + Payments Sets + An unordered list of strong references to Payments sets + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceParametersObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401e00
              + LEAF + Device Parameters Sets + An unordered list of strong references to Device Parameters sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NameValueSets +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f00
              + NODE + Name-Value Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassificationNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f01
              + LEAF + Classification Name-Value Sets + An unordered list of strong references to Name-Value sets (for categorising) + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f02
              + LEAF + Contact Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceParametersNameValueObjects +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f03
              + LEAF + Device Parameter Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressNameValueObjects +
                urn:smpte:ul:060e2b34.01010107.06010104.05401f04
              + LEAF + Address Name-Value Sets + An unordered list of strong references to Name-Value sets + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051000.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410000
              + NODE + Text-Based Descriptive Metadata Sets + Text-Based Descriptive Metadata Sets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextBasedObject +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410100
              + LEAF + Text-Based Object + Instance UID of the instance of a Text-based Object. This may be a Generic Stream Text-based Set, a UTF-8 Text-based Set or a UTF-16 Text-based Set. + SMPTE RP 2057 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022a00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StrongReferencesArrays +
                urn:smpte:ul:060e2b34.01010102.06010104.06000000
              + NODE + Strong References Arrays + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Choices +
                urn:smpte:ul:060e2b34.01010102.06010104.06010000
              + LEAF + Available Representations + Specifies a vector of references to available representations of the same original essence + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060700.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + InputSegments +
                urn:smpte:ul:060e2b34.01010102.06010104.06020000
              + LEAF + Input Segments + Specifies a vector of references to the input segments used of produce the effect or operation + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Locators +
                urn:smpte:ul:060e2b34.01010102.06010104.06030000
              + LEAF + Essence Locators + Specifies a vector of references to essence locators + AAF~Locator mxflib[:1.19]~Locators + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IdentificationList +
                urn:smpte:ul:060e2b34.01010102.06010104.06040000
              + LEAF + Identification List + Specifies a vector of references to modification identifiers + ASPA[0.8] AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageTracks +
                urn:smpte:ul:060e2b34.01010102.06010104.06050000
              + LEAF + Package Tracks + Specifies a vector of references to tracks + AAF~Slots mxflib[:1.19]~Tracks + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060500.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PointList +
                urn:smpte:ul:060e2b34.01010102.06010104.06060000
              + LEAF + Control Point List + Specifies a vector of references to time-specific operation control values + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NestedScopeTracks +
                urn:smpte:ul:060e2b34.01010102.06010104.06070000
              + LEAF + Nested Scope Tracks + Specifies a vector of references to segments + AAF~Slots + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AlternateSegments +
                urn:smpte:ul:060e2b34.01010102.06010104.06080000
              + LEAF + Alternates + Specifies a vector of references to alternate segments available to the editor + AAF~Alternates + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060600.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentObjects +
                urn:smpte:ul:060e2b34.01010102.06010104.06090000
              + LEAF + Components + Specifies a vector of references to the clips and transitions in the sequence + AAF~Components mxflib[:1.19]~StructuralComponents + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Parameters +
                urn:smpte:ul:060e2b34.01010102.06010104.060a0000
              + LEAF + Parameters + Specifies a vector of an unordered set of references to the effect or operation parameters + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060a00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileDescriptors +
                urn:smpte:ul:060e2b34.01010104.06010104.060b0000
              + LEAF + File Descriptors + Specifies a vector of an ordered set of references to File Descriptor sets + AAF[1.12:] ASPA[:0.8] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060b00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataServerLocators +
                urn:smpte:ul:060e2b34.01010105.06010104.060c0000
              + LEAF + Metadata Server Locators + Specifies a vector of an ordered set of references to Locators for metadata servers + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedMaterialLocators +
                urn:smpte:ul:060e2b34.01010105.06010104.060d0000
              + LEAF + Related Material Locators + Specifies a vector of an ordered set of references to Locators for related material of any kind + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ScriptingLocators +
                urn:smpte:ul:060e2b34.01010108.06010104.060e0000
              + LEAF + Scripting Locators + Specifies a vector of an ordered set of references to Locators for scripting material of any kind + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UnknownBWFChunks +
                urn:smpte:ul:060e2b34.01010108.06010104.060f0000
              + LEAF + Unknown BWF Chunks + Specifies an ordered vector of references to RIFF chunks containing data extracted from a BWF file + AAF[1.12:] + SMPTE 382M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060c00.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubDescriptors +
                urn:smpte:ul:060e2b34.01010109.06010104.06100000
              + LEAF + Sub-descriptors + Specifies a vector of an ordered set of references to SubDescriptor sets + AAF[1.2:] AAF[:1.13] ASPA + SMPTE ST 377-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060e00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterEntryArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06110000
              + LEAF + Register Entry Array + Array of strong references to Entry objects. The sequence of entries shall be according to ascending order of their UL Item Designator values. For the ordering, the most significant byte shall be byte 9 of the Universal Label, the least significant byte shall be byte 16 of the Universal Label. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterAdministrationArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06120000
              + LEAF + Register Administration Array + Strong reference to one concrete class of Register Administration object base class. + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ApplicationInformationArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06130000
              + LEAF + Application Information Array + This field is an informative listing of some known applications that use a particular data element. + true + UnknownContext + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterChildEntryArray +
                urn:smpte:ul:060e2b34.0101010c.06010104.06140000
              + LEAF + Register Child Entry Array + Array of strong references to Entry objects. The sequence of entries shall be according to ascending order of their UL Item Designator values. For the ordering, the most significant byte shall be byte 9 of the Universal Label, the least significant byte shall be byte 16 of the Universal Label. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05060f00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetadataToObjectRelationships +
                urn:smpte:ul:060e2b34.01010101.06010105.00000000
              + NODE + Metadata to Object Relationships + The relationship between metadata and an object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EssenceToObjectRelationships +
                urn:smpte:ul:060e2b34.01010102.06010106.00000000
              + NODE + Essence to Object Relationships + The relationship between metadata and an object + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LinkedPackageID +
                urn:smpte:ul:060e2b34.01010102.06010106.01000000
              + LEAF + Linked Package ID + Specifes a reference to a package associated with Essence Data + AAF~MobID mxflib[:1.19]~LinkedPackageUID + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030200.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncryptedTrackFileID +
                urn:smpte:ul:060e2b34.01010109.06010106.02000000
              + LEAF + Encrypted Track File ID + The identifier of the AS-DCP track file containing this triplet + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CryptographicContextLink +
                urn:smpte:ul:060e2b34.01010109.06010106.03000000
              + LEAF + Cryptographic Context Link + Links to the cryptographic context used for data encryption + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectDictionaryToMetadataRelationships +
                urn:smpte:ul:060e2b34.01010102.06010107.00000000
              + NODE + Object Dictionary to Metadata Relationships + The relationship between dictionary definitions and the structure of the metadata + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ParentClass +
                urn:smpte:ul:060e2b34.01010102.06010107.01000000
              + LEAF + Parent Class + Specifies a reference to the class definition of the parent + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Properties +
                urn:smpte:ul:060e2b34.01010102.06010107.02000000
              + LEAF + Properties + Specifies an unordered set of references to properties that are defined by the class + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050b00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsConcrete +
                urn:smpte:ul:060e2b34.01010102.06010107.03000000
              + LEAF + Is Concrete + Specifies that the class definition may be used to create a concrete instance (May be used = true) + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PropertyType +
                urn:smpte:ul:060e2b34.01010102.06010107.04000000
              + LEAF + Property Type + Specifies the data type defined for the key + AAF~Type MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalIdentification +
                urn:smpte:ul:060e2b34.01010102.06010107.05000000
              + LEAF + Local ID + Specifies a local identifier used by the container format to identity a property + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsUniqueIdentifier +
                urn:smpte:ul:060e2b34.01010102.06010107.06000000
              + LEAF + Is Unique Identifier + Specifies that the property defined by this item contains a unique identifier (contains Identifier = true) + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010107.07000000
              + LEAF + Class Definitions + Specifies a set of unordered references to the Class Definition objects that define the objects that are used in the container + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050100.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TypeDefinitions +
                urn:smpte:ul:060e2b34.01010102.06010107.08000000
              + LEAF + Type Definitions + Specifies a set of unordered references to the Type Definition objects that define the data types that are used in the container + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05050c00.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReferencedType +
                urn:smpte:ul:060e2b34.01010102.06010107.09000000
              + LEAF + Target Class of Strong Reference + Specifies a reference to the target class of a Strong Reference type + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + WeakReferencedType +
                urn:smpte:ul:060e2b34.01010102.06010107.0a000000
              + LEAF + Target Class of Weak Reference + Specifies a reference to the target class of a Weak Reference type + AAF~ReferencedType MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0b000000
              + LEAF + Enumeration Underlying Integer Type + Specifies the underlying type of an integer enumeration type + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FixedArrayElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0c000000
              + LEAF + Fixed Array Element Type + Specifies a reference to the underlying type used in the fixed array type + AAF~ElementType MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VariableArrayElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0d000000
              + LEAF + Variable Array Element Type + Specifies a reference to the underlying type used in the variable array type + AAF~ElementType MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SetElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0e000000
              + LEAF + Set Element Type + Specifies a reference to the underlying type used in an unordered set type + AAF~ElementType MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StringElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.0f000000
              + LEAF + String Element Type + Specifies a reference to the underlying character or integer type used in a string type + AAF~ElementType MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamElementType +
                urn:smpte:ul:060e2b34.01010102.06010107.10000000
              + LEAF + Stream Element Type + Specifies a reference to the underlying character or integer type used in a stream type + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberTypes +
                urn:smpte:ul:060e2b34.01010102.06010107.11000000
              + LEAF + Member Types + Specifies a vector to an ordered array of references to the types of the members in the record type + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05040200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RenamedType +
                urn:smpte:ul:060e2b34.01010102.06010107.12000000
              + LEAF + Renamed Type + Specifies a reference to the underlying type of a renamed type + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionIdentification +
                urn:smpte:ul:060e2b34.01010102.06010107.13000000
              + LEAF + MetaDefinition Identification + Specifies the unique identifier for the item being defined + AAF~Identification MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DictionaryDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010102.06010107.14000000
              + LEAF + Dictionary Description + Specifies a readable description of a dictionary definition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitionDescription +
                urn:smpte:ul:060e2b34.01010102.06010107.14010000
              + LEAF + MetaDefinition Description + Provides an explanation of the use of the item being defined + AAF~Description MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalTagEntries +
                urn:smpte:ul:060e2b34.01010105.06010107.15000000
              + LEAF + Local Tag Entries + Specifies an unordered batch of local tag/UID pairs used to map UIDs to the local tags of a local set. + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030300.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootMetaDictionary +
                urn:smpte:ul:060e2b34.0101010a.06010107.16000000
              + LEAF + Root Meta Dictionary + Specifies a reference to a collection of class, type and property definitions + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022700.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootPreface +
                urn:smpte:ul:060e2b34.0101010a.06010107.17000000
              + LEAF + Root Preface + Specifies a reference to the Preface object + AAF MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022800.00000000 + 16 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootObjectDirectory +
                urn:smpte:ul:060e2b34.0101010a.06010107.18000000
              + LEAF + Root Object Directory + Specifies a reference to a directory of Object locations + AAF[1.12:] + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100100.00000000 + 24 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootFormatVersion +
                urn:smpte:ul:060e2b34.0101010a.06010107.19000000
              + LEAF + Root Format Version + Specifies the underlying reference structure of the Root Object + AAF[1.12:] MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RootExtensions +
                urn:smpte:ul:060e2b34.0101010d.06010107.1a000000
              + LEAF + Root Extensions + References the Extension Schemes that are used in the file + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtensionSchemeID +
                urn:smpte:ul:060e2b34.0101010d.06010107.1b000000
              + LEAF + Extension Scheme ID + Globally unique identification of the ExtensionScheme + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01030100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SymbolSpaceURI +
                urn:smpte:ul:060e2b34.0101010d.06010107.1c000000
              + LEAF + Symbol Space URI + Namespace URI for the Extension Scheme + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreferredPrefix +
                urn:smpte:ul:060e2b34.0101010d.06010107.1d000000
              + LEAF + Preferred Prefix + Preferred namespace tag when SMPTE ST 2001-1 Reg-XML encoding is used + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ExtensionDescription +
                urn:smpte:ul:060e2b34.0101010d.06010107.1e000000
              + LEAF + Extension Description + Description of the Extension Scheme + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MetaDefinitions +
                urn:smpte:ul:060e2b34.0101010d.06010107.1f000000
              + LEAF + Meta-Definitions + References all the MetaDefinitions in this Extension Scheme when they are contained in the MXF file + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05051300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OriginalProperty +
                urn:smpte:ul:060e2b34.0101010d.06010107.20000000
              + LEAF + Original Property + Specifies the original definition of the reused Property + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010c00.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElementOf +
                urn:smpte:ul:060e2b34.0101010d.06010107.21000000
              + LEAF + Element Of + References the ExtendibleEnumerations in which this element is known to be used + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05031100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MemberOf +
                urn:smpte:ul:060e2b34.0101010d.06010107.22000000
              + LEAF + Member Of + Specified the class in which this property may be present + MXF + SMPTE ST 377-2 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedProductionMaterial +
                urn:smpte:ul:060e2b34.01010101.06020000.00000000
              + NODE + Related Production Material + Related production material + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramSupportMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020100.00000000
              + LEAF + Program Support Material Reference + eg printed educational material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdvertisingMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020200.00000000
              + LEAF + Advertising Material Reference + eg printed advertising material + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProgramCommercialMaterialReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06020300.00000000
              + LEAF + Program Commercial Material Reference + eg. Mugs, T-shirts, recordings + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedProductionContent +
                urn:smpte:ul:060e2b34.01010103.06030000.00000000
              + NODE + Related Production Content + Related content from the Production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelatedTextualContent +
                urn:smpte:ul:060e2b34.01010103.06030500.00000000
              + NODE + Related Textual Content + Related contetn of a textual nature - e.g. scripts and transcripts. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionScriptReference_ISO7 +
                urn:smpte:ul:060e2b34.01010103.06030501.00000000
              + LEAF + Production Script Reference + A descriptive reference to the production script used in making the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProductionScriptReference +
                urn:smpte:ul:060e2b34.01010103.06030501.01000000
              + LEAF + Production Script Reference + A descriptive reference to the production script used in making the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TranscriptReference_ISO7 +
                urn:smpte:ul:060e2b34.01010103.06030502.00000000
              + LEAF + Transcript Reference + A descriptive reference to a transcript of speech in the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TranscriptReference +
                urn:smpte:ul:060e2b34.01010103.06030502.01000000
              + LEAF + Transcript Reference + A descriptive reference to a transcript of speech in the production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamAndStorageRelationships +
                urn:smpte:ul:060e2b34.01010101.06080000.00000000
              + NODE + Stream and Storage Relationships + Relationships between data in streams and persistent storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamRelationships +
                urn:smpte:ul:060e2b34.01010101.06080100.00000000
              + NODE + Stream Relationships + Relationships between data in streams + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContinuityCounts +
                urn:smpte:ul:060e2b34.01010102.06080101.00000000
              + NODE + Continuity Counts + Defines packet etc. sequences + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BlockContinuityCount +
                urn:smpte:ul:060e2b34.01010102.06080101.01000000
              + LEAF + Block Continuity Count + Modulo 65536 count + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionalRelationships +
                urn:smpte:ul:060e2b34.01010102.06080102.00000000
              + NODE + Stream Positional Relationships + Information to indicate the position of a packet in a stream of packets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt8 +
                urn:smpte:ul:060e2b34.01010102.06080102.01000000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + SMPTE 332M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt16 +
                urn:smpte:ul:060e2b34.01010104.06080102.01010000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreamPositionIndicator_UInt32 +
                urn:smpte:ul:060e2b34.01010104.06080102.01020000
              + LEAF + Stream Position Indicator + Indicator for the position of a packet in a stream of packets + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BodyOffset +
                urn:smpte:ul:060e2b34.01010104.06080102.01030000
              + LEAF + Body Offset + Byte offset of the start of the Essence Container segment in the Partition, relative to the start of the Essence Container + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageRelationships +
                urn:smpte:ul:060e2b34.01010101.06080200.00000000
              + NODE + Storage Relationships + Relationships between data in persistent storage + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IsContiguous +
                urn:smpte:ul:060e2b34.01010101.06080201.00000000
              + LEAF + Contiguous Data Flag + Specifies if the data is stored in contiguous bytes (False=0) + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 + 1 byte + 00h=FALSE +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StorageOffsets +
                urn:smpte:ul:060e2b34.01010102.06080202.00000000
              + NODE + Storage Offsets + Memory offset between current location and desired location + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToMetadata_Int32 +
                urn:smpte:ul:060e2b34.01010104.06080202.01000000
              + LEAF + Offset to Metadata + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToMetadata +
                urn:smpte:ul:060e2b34.01010104.06080202.01010000
              + LEAF + Offset to Metadata + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToIndexTable_Int32 +
                urn:smpte:ul:060e2b34.01010104.06080202.02000000
              + LEAF + Offset to Index Table + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + OffsetToIndexTable +
                urn:smpte:ul:060e2b34.01010104.06080202.02010000
              + LEAF + Offset to Index Table + Offset between current location and metadata + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataRelationships +
                urn:smpte:ul:060e2b34.01010104.06090000.00000000
              + NODE + Data Relationships + Generic Relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDataRelationships +
                urn:smpte:ul:060e2b34.01010104.06090200.00000000
              + NODE + Local Data Relationships + Generic Relationships between data + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DataOffsets +
                urn:smpte:ul:060e2b34.01010104.06090201.00000000
              + NODE + Data Offsets + Generic Data Offsets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ByteOffset +
                urn:smpte:ul:060e2b34.01010104.06090201.01000000
              + LEAF + Byte Offset + Byte offset from start of file (byte 0)to 1st byte of partition pack key + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReversePlay +
                urn:smpte:ul:060e2b34.01010104.06090201.02000000
              + LEAF + Reverse Play + The value as defined in SMPTE 389M. This value shall only be used in the First Content Package Element and, where present, should be the first item. + SMPTE394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaintextOffset +
                urn:smpte:ul:060e2b34.01010109.06090201.03000000
              + LEAF + Plaintext Offset + The position within an encrypted value at which plaintext ends and ciphertext begins + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NumericalSequence +
                urn:smpte:ul:060e2b34.01010101.06100000.00000000
              + NODE + Numerical Sequence + information about numerical sequences + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionInSequence +
                urn:smpte:ul:060e2b34.01010101.06100100.00000000
              + LEAF + Position in Sequence + 1, 2, 3 etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePositionInSequenceOffset +
                urn:smpte:ul:060e2b34.01010101.06100200.00000000
              + LEAF + Relative Position in Sequence Offset + Numerical offset + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePositionInSequenceName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.06100300.00000000
              + LEAF + Relative Position in Sequence Name + Specifies relative Position in Sequence (previous, next etc) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TotalNumberInSequence +
                urn:smpte:ul:060e2b34.01010105.06100400.00000000
              + LEAF + Total Number in Sequence + Total number of groups, items, series etc in a sequence + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TripletSequenceNumber +
                urn:smpte:ul:060e2b34.01010109.06100500.00000000
              + LEAF + Triplet Sequence Number + Ordinal number of an encrypted triplet in a sequence + DCP + SMPTE 429.6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeNumericalSequences +
                urn:smpte:ul:060e2b34.01010104.06101000.00000000
              + NODE + Relative Numerical Sequences + Sequence numbers of related items + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstNumberInSequence_UInt32 +
                urn:smpte:ul:060e2b34.01010104.06101001.00000000
              + LEAF + First Number in Sequence + The first number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FirstNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101001.01000000
              + LEAF + First Number in Sequence + The first number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101002.00000000
              + LEAF + Previous Number in Sequence + The previous number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PreviousPartition +
                urn:smpte:ul:060e2b34.01010104.06101002.01000000
              + LEAF + Previous Partition + The number of the previous Partition in the sequence of Partitions (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CurrentNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101003.00000000
              + LEAF + Current Number in Sequence + The current number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ThisPartition +
                urn:smpte:ul:060e2b34.01010104.06101003.01000000
              + LEAF + This Partition + The number of this Partition in the sequence of Partitions (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NextNumberInSequence_Int32 +
                urn:smpte:ul:060e2b34.01010104.06101004.00000000
              + LEAF + Next Number in Sequence + The next number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NextNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101004.01000000
              + LEAF + Next Number in Sequence + The next number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LastNumberInSequence +
                urn:smpte:ul:060e2b34.01010104.06101005.00000000
              + LEAF + Last Number in Sequence + The last number in a sequence + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FooterPartition +
                urn:smpte:ul:060e2b34.01010104.06101005.01000000
              + LEAF + Footer Partition + The number of the Footer Partition (as a byte offset relative to the start of the Header Partition) + MXF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SpatioTemporal +
                urn:smpte:ul:060e2b34.01010101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + Class 7 is reserved for information about space and time + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionAndSpaceVectors +
                urn:smpte:ul:060e2b34.01010101.07010000.00000000
              + NODE + Position and Space Vectors + Information about position in space and associated vectors (if any) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionalSystemInformation +
                urn:smpte:ul:060e2b34.01010101.07010100.00000000
              + NODE + Positional System Information + Information about absolute system in use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageCoordinateSystem_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07010101.00000000
              + LEAF + Image Coordinate System + Identifies the Digital Geographic Information Exchange Standard (DIGEST) geo-referenced coordinate system used at image capture. + DIGEST V2.1 (Part3 Section 6.4) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MapDatumUsed_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07010102.00000000
              + LEAF + Map Datum Used + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + HorizontalDatum_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010103.00000000
              + LEAF + Horizontal Datum + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VerticalDatum_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010104.00000000
              + LEAF + Vertical Datum + Identifies the Digital Geographic Information Exchange Standard (DIGEST) map datum used to derive the coordinates (UTM or GEO). + DIGEST V2.1 (Part3 Section 6.2) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionalInformation +
                urn:smpte:ul:060e2b34.01010101.07010200.00000000
              + NODE + Positional Information + Information about absolute and relative position in space + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.00000000
              + NODE + Absolute Position + Absolute positional information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.01000000
              + NODE + Local Datum Absolute Position + The absolute position of a local datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumAbsolutePositionAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.01010000
              + LEAF + Local Datum Absolute Position Accuracy + The accuracy with which the measurement of absolute position of the local datum is made, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.02000000
              + NODE + Device Absolute Position + The absolute position of the essence-capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsolutePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.02010000
              + LEAF + Device Absolute Positional Accuracy + Accuracy of frame center coordinates as a Circular Error Probable (CEP) (50%), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAltitude +
                urn:smpte:ul:060e2b34.01010101.07010201.02020000
              + LEAF + Device Altitude + Altitude of sensor as measured from Mean Sea Level (MSL), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAltitudeConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02020100
              + LEAF + Device Altitude (Concise) + Altitude of sensor as measured from Mean Sea Level (MSL), (default metres) + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitude_Float +
                urn:smpte:ul:060e2b34.01010101.07010201.02040000
              + LEAF + Device Latitude + Specifies a sensor's geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02040100
              + LEAF + Device Latitude (Degrees, Concise) + Specifies a sensor's geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLatitude +
                urn:smpte:ul:060e2b34.01010103.07010201.02040200
              + LEAF + Device Latitude + Specifies a sensor's geographic location in decimal degrees of latitude. + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitude_Float +
                urn:smpte:ul:060e2b34.01010101.07010201.02060000
              + LEAF + Device Longitude + Specifies a sensor's geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere, negative values indicate western hemisphere. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.02060100
              + LEAF + Device Longitude (Degrees, Concise) + Specifies a sensor's geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere, negative values indicate western hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceLongitude +
                urn:smpte:ul:060e2b34.01010103.07010201.02060200
              + LEAF + Device Longitude + Specifies a sensor's geographic location in decimal degrees of longitude. + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceXDimension +
                urn:smpte:ul:060e2b34.01010101.07010201.02100000
              + LEAF + Device X Dimension + Specifies the sensor location along the x-axis in Earth Centered, Earth Fixed (ECEF) Cartesian coordinates, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceYDimension +
                urn:smpte:ul:060e2b34.01010101.07010201.02110000
              + LEAF + Device Y Dimension + Specifies the sensor location along the y-axis in Earth Centered, Earth Fixed (ECEF) Cartesian coordinates, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NMEA0183GPSDocumentText_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07010201.02300000
              + LEAF + NMEA-0183 GPS Document Text + National Marine Electronics Association (NMEA) text document complying with the NMEA-0183 Interface Standard when used to describe GPS positional information. + National Marine Electronics Association Standard NMEA-0183 + NMEA-0183 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsolutePosition +
                urn:smpte:ul:060e2b34.01010101.07010201.03000000
              + NODE + Subject Absolute Position + The absolute position of the subject depicted in the essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FramePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010201.03010000
              + LEAF + Frame Positional Accuracy + Accuracy of frame center coordinates as a Circular Error Probable (CEP) (50%), (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitude +
                urn:smpte:ul:060e2b34.01010101.07010201.03020000
              + LEAF + Frame Center Latitude + Specifies the video frame center point geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitude02 +
                urn:smpte:ul:060e2b34.01010103.07010201.03020200
              + LEAF + Frame Center Latitude + Specifies the video frame center point geographic location in decimal degrees of latitude. + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.03030000
              + LEAF + Frame Center Latitude (Degrees, Concise) + Specifies the video frame center point geographic location in decimal degrees of latitude. Positive values indicate northern hemisphere; negative values indicate southern hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitude +
                urn:smpte:ul:060e2b34.01010101.07010201.03040000
              + LEAF + Frame Center Longitude + Specifies the video frame center point geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere; negative values indicate western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitude02 +
                urn:smpte:ul:060e2b34.01010103.07010201.03040200
              + LEAF + Frame Center Longitude + Specifies the video frame center point geographic location in decimal degrees of longitude. + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere. + false + UnknownContext + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLongitudeDegreesConcise +
                urn:smpte:ul:060e2b34.01010101.07010201.03050000
              + LEAF + Frame Center Longitude (Degrees, Concise) + Specifies the video frame center point geographic location in decimal degrees of longitude. Positive values indicate eastern hemisphere; negative values indicate western hemisphere. + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + 4 bytes + As per SMPTE 330M (UMID) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterLatLong +
                urn:smpte:ul:060e2b34.01010101.07010201.03060000
              + LEAF + Frame Center Latitude-Longitude + Specifies a video frame center point geographic location Latitude and Longitude. + Format is ddmmssXddmmssY, where 'dd' is degrees latitude or longitude, 'mm' is minutes, 'ss' is seconds, 'X' is either N for north or S for south, 'Y' is either E for east or W for west + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 14 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint1_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03070000
              + LEAF + Corner Latitude Point 1 + Latitude coordinate of corner 1 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint1DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03070100
              + LEAF + Corner Latitude Point 1 (Decimal Degrees) + Latitude coordinate of corner 1 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint2_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03080000
              + LEAF + Corner Latitude Point 2 + Latitude coordinate of corner 2 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint2DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03080100
              + LEAF + Corner Latitude Point 2 (Decimal Degrees) + Latitude coordinate of corner 2 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint3_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.03090000
              + LEAF + Corner Latitude Point 3 + Latitude coordinate of corner 3 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint3DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.03090100
              + LEAF + Corner Latitude Point 3 (Decimal Degrees) + Latitude coordinate of corner 3 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint4_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030a0000
              + LEAF + Corner Latitude Point 4 + Latitude coordinate of corner 4 of an image or bounding rectangle + Format is ddmmssX where 'dd' is deg lat, 'mm' is min, 'ss' is sec, 'X' is either N for northern hemisphere or S for southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLatitudePoint4DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030a0100
              + LEAF + Corner Latitude Point 4 (Decimal Degrees) + Latitude coordinate of corner 4 of an image or bounding rectangle + Format is signed decimal degrees latitude where positive (+) is northern hemisphere and negative (-) is southern hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint1_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030b0000
              + LEAF + Corner Longitude Point 1 + Longitude coordinate of corner 1 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint1DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030b0100
              + LEAF + Corner Longitude Point 1 (Decimal Degrees) + Longitude coordinate of corner 1 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint2_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030c0000
              + LEAF + Corner Longitude Point 2 + Longitude coordinate of corner 2 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint2DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030c0100
              + LEAF + Corner Longitude Point 2 (Decimal Degrees) + Longitude coordinate of corner 2 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint3_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030d0000
              + LEAF + Corner Longitude Point 3 + Longitude coordinate of corner 3 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint3DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030d0100
              + LEAF + Corner Longitude Point 3 (Decimal Degrees) + Longitude coordinate of corner 3 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint4_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07010201.030e0000
              + LEAF + Corner Longitude Point 4 + Longitude coordinate of corner 4 of an image or bounding rectangle + Format is dddmmssY where 'ddd' is deg long, 'mm' is min, 'ss' is sec, 'Y' is either E for eastern hemisphere or W for western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CornerLongitudePoint4DecimalDegrees +
                urn:smpte:ul:060e2b34.01010103.07010201.030e0100
              + LEAF + Corner Longitude Point 4 (Decimal Degrees) + Longitude coordinate of corner 4 of an image or bounding rectangle + Format is signed decimal degrees longitude where positive (+) is eastern hemisphere and negative (-) is western hemisphere; Corners shall be listed in a clockwise direction, with the first corner the North-most corner (northeast if two corners are equally north). + false + UnknownContext + 8 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Bounding_Rectangle +
                urn:smpte:ul:060e2b34.01010109.07010201.030f0000
              + LEAF + Bounding Rectangle + Geographic rectangle specified by four corner points, coordinate system and datum + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Geographic_Location +
                urn:smpte:ul:060e2b34.01010109.07010201.03100000
              + LEAF + Geographic Location + Geographic rectangle specified by at least 3 corner points, coordinate system and datum + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05022500.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicPolygon_Coords +
                urn:smpte:ul:060e2b34.01010109.07010201.03110000
              + LEAF + Geographic Polygon Coordinates + A vector of geographic coordinates (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020300.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_NorthWest +
                urn:smpte:ul:060e2b34.01010109.07010201.03120000
              + LEAF + Geographic Area Northwest + The geographic coordinate of the NorthWest corner of a rectangle (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_SouthEast +
                urn:smpte:ul:060e2b34.01010109.07010201.03130000
              + LEAF + Geographic Area Southeast + The geographic coordinate of the SouthEast corner of a rectangle (measured in milliarcseconds relative to the datum) + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicArea_SourceDatum +
                urn:smpte:ul:060e2b34.01010109.07010201.03140000
              + LEAF + Geographic Area Source Datum + The code for the datum point for a Geographic Area + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicPolygon_SourceDatum +
                urn:smpte:ul:060e2b34.01010109.07010201.03150000
              + LEAF + Geographic Polygon Source Datum + The code for the datum point for a Geographic Polygon + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + variable + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCenterElevation +
                urn:smpte:ul:060e2b34.0101010a.07010201.03160000
              + LEAF + Frame Center Elevation + The elevation of field of view frame center, measured in meters above WGS-84 spheroid + MISB ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes + Specified format (see notes) +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.00000000
              + NODE + Relative Position + Relative positional information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.01000000
              + NODE + Local Datum Relative Position + The relative position of a local datum to another specified datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalDatumRelativePositionAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.01010000
              + LEAF + Local Datum Relative Position Accuracy + The accuracy with which the measurement of relative position of the local datum is made + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.02000000
              + NODE + Device Relative Position + The relative position of the essence-capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.02010000
              + LEAF + Device Relative Positional Accuracy + Accuracy of frame center coordinates + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionX +
                urn:smpte:ul:060e2b34.01010101.07010202.02020000
              + LEAF + Device Relative Position X + Defined by the X translational position of the camera from a local Datum Absolute Position. Positive values indicate translations in which the camera has physically moved from left to right, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionY +
                urn:smpte:ul:060e2b34.01010101.07010202.02030000
              + LEAF + Device Relative Position Y + Defined by the Y translational position of the camera from a local Datum Absolute Position. Positive values indicate translations in which the camera has physically moved to a higher elevation, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativePositionZ +
                urn:smpte:ul:060e2b34.01010101.07010202.02040000
              + LEAF + Device Relative Position Z + Defined by the Z translational position of the camera from a local Datum Absolute Position. Positive values shall indicate translations in which the camera has physically moved towards the target, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativePosition +
                urn:smpte:ul:060e2b34.01010101.07010202.03000000
              + NODE + Subject Relative Position + The position of the subject depicted in the essence relative to another specified datum + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativePositionalAccuracy +
                urn:smpte:ul:060e2b34.01010101.07010202.03010000
              + LEAF + Subject Relative Positional Accuracy + The accuracy with which the measurement of relative position of the subject is made, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImagePositionalInformation +
                urn:smpte:ul:060e2b34.01010101.07010203.00000000
              + NODE + Image Positional Information + Positional information relating to a subset of the whole image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionWithinViewportImageXCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.01000000
              + LEAF + Position Within Viewport Image X Coordinate (Pixels) + The position of a point (or object) within the viewed image expressed as x/y coordinates of the viewed image. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PositionWithinViewportImageYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.02000000
              + LEAF + Position Within Viewport Image Y Coordinate (Pixels) + The position of a point (or object) within the viewed image expressed as x/y coordinates of the viewed image. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceImageCenterXCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.03000000
              + LEAF + Source Image Center X Coordinate (Pixels) + The x position of the centre of the captured (source) image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SourceImageCenterYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.04000000
              + LEAF + Source Image Center Y Coordinate (Pixels) + The y position of the centre of the captured (source) image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportImageCenterCCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.05000000
              + LEAF + Viewport Image Center C Coordinate (Pixels) + The x position of the centre of the viewed image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportImageCenterYCoordinatePixels +
                urn:smpte:ul:060e2b34.01010101.07010203.06000000
              + LEAF + Viewport Image Center Y Coordinate (Pixels) + The y position of the centre of the viewed image expressed as x/y coordinates of the viewed image + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010300.00000000
              + NODE + Rate and Direction of Positional Change + Information about rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.00000000
              + NODE + Absolute Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.01000000
              + NODE + Device Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change of the capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsoluteSpeed +
                urn:smpte:ul:060e2b34.01010101.07010301.01010000
              + LEAF + Device Absolute Speed + Defined by the relative speed of the sensor along the heading. Expressed in metres/second . Speed values shall indicate translations in which the capturing device has physically moved. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAbsoluteHeading +
                urn:smpte:ul:060e2b34.01010101.07010301.01020000
              + LEAF + Device Absolute Heading + Defined by the absolute heading of the sensor. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010301.02000000
              + NODE + Subject Rate and Direction of Positional Change + Information about the absolute rate and direction of positional change of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsoluteSpeed +
                urn:smpte:ul:060e2b34.01010101.07010301.02010000
              + LEAF + Subject Absolute Speed + Defined by the absolute speed of the subject along the heading, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAbsoluteHeading +
                urn:smpte:ul:060e2b34.01010101.07010301.02020000
              + LEAF + Subject Absolute Heading + Defined by the absolute heading of the subject. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.00000000
              + NODE + Relative Rate and Direction of Positional Change + Information about the relative rate and direction of positional change + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.01000000
              + NODE + Device Relative Rate and Direction of Positional Change + Information about relative rate and direction of positional change of the capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeSpeed +
                urn:smpte:ul:060e2b34.01010101.07010302.01010000
              + LEAF + Device Relative Speed + Defined by the relative speed of the sensor along the heading. Speed values shall indicate translations in which the camera has physically moved, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceRelativeHeading +
                urn:smpte:ul:060e2b34.01010101.07010302.01020000
              + LEAF + Device Relative Heading + Defined by the relative heading of the sensor. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeRateAndDirectionOfPositionalChange +
                urn:smpte:ul:060e2b34.01010101.07010302.02000000
              + NODE + Subject Relative Rate and Direction of Positional Change + Relative information about rate and direction of positional change of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeSpeed +
                urn:smpte:ul:060e2b34.01010101.07010302.02010000
              + LEAF + Subject Relative Speed + Defined by the relative speed of the subject along the heading, (default metres/second) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectRelativeHeading +
                urn:smpte:ul:060e2b34.01010101.07010302.02020000
              + LEAF + Subject Relative Heading + Defined by the relative heading of the subject. Expressed in degrees and tenths of degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DistanceMeasurements +
                urn:smpte:ul:060e2b34.01010101.07010800.00000000
              + NODE + Distance Measurements + Length measurements relating to distance + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceToSubjectDistance +
                urn:smpte:ul:060e2b34.01010101.07010801.00000000
              + NODE + Device to Subject Distance + Length measurements relating to distance between capturing device and the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SlantRange +
                urn:smpte:ul:060e2b34.01010101.07010801.01000000
              + LEAF + Slant Range + Distance from the sensor to the center point on ground of the framed subject (image) depicted in the captured essence, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectDistance +
                urn:smpte:ul:060e2b34.01010103.07010801.02000000
              + LEAF + Subject Distance + Distance from the sensor to the center of interest on the framed subject depicted in the captured essence, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Dimensions +
                urn:smpte:ul:060e2b34.01010101.07010900.00000000
              + NODE + Dimensions + Length measurements relating to size + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceDimensions +
                urn:smpte:ul:060e2b34.01010101.07010901.00000000
              + NODE + Device Dimensions + Physical measurements relating to the size of the device used for the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectDimensions +
                urn:smpte:ul:060e2b34.01010101.07010902.00000000
              + NODE + Subject Dimensions + Physical measurements relating to the size of the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TargetWidth +
                urn:smpte:ul:060e2b34.01010101.07010902.01000000
              + LEAF + Target Width + Horizontal half width of the target frame image; used to compute the four corner points of the frame, (default metres) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDimensions +
                urn:smpte:ul:060e2b34.01010101.07010903.00000000
              + NODE + Location Dimensions + Length measurements relating to the size of the location or studio in which the essence was catured + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MediaDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.00000000
              + NODE + Media Dimensions + Length measurements relating to the physical size of the image formed in a capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ImageDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.01000000
              + NODE + Image Dimensions + Length measurements relating to the physical size of the image formed in a capturing device + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PanAndScanImageDimensions +
                urn:smpte:ul:060e2b34.01010101.07010904.01010000
              + NODE + Pan-and-Scan Image Dimensions + Length measurements relating to pan and scan subsetting of a captured image + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportHeight +
                urn:smpte:ul:060e2b34.01010101.07010904.01010100
              + LEAF + Viewport Height + The height of the viewed area within a captured image (in pixels) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ViewportWidth +
                urn:smpte:ul:060e2b34.01010101.07010904.01010200
              + LEAF + Viewport Width + The width of the viewed area within a captured image (in pixels) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 2 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngularSpecifications +
                urn:smpte:ul:060e2b34.01010101.07011000.00000000
              + NODE + Angular Specifications + Information regarding angles related to positioning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DeviceAngles +
                urn:smpte:ul:060e2b34.01010101.07011001.00000000
              + NODE + Device Angles + Device information regarding angles related to positioning information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SensorRollAngle +
                urn:smpte:ul:060e2b34.01010101.07011001.01000000
              + LEAF + Sensor Roll Angle + Specifies the roll angle of the sensor. Expressed in degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AngleToNorth +
                urn:smpte:ul:060e2b34.01010101.07011001.02000000
              + LEAF + Angle to North + Angle in degrees from the first row of the image to true north. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObliquityAngle +
                urn:smpte:ul:060e2b34.01010101.07011001.03000000
              + LEAF + Obliquity Angle + Obliquity angle of image expressed in degrees. The inverse of sensor depression angle. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformRollAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.04000000
              + LEAF + Platform Roll Angle + Roll angle of platform expressed in degrees. The Roll of an airborne platform is rotation about its longitudinal (front-to-back) axis; wings level is zero degrees, positive (negative) angles describe a platform orientation with the right wing down(up). Range of values is -180 to +180 degrees + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformPitchAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.05000000
              + LEAF + Platform Pitch Angle + Pitch angle of platform expressed in degrees.The Pitch of an airborne platform describes the angle of its longitudinal (front-to-back) axis makes with the horizontal (i.e., equi-potential gravitational surface); positive (negative) angles describe a nose up (down) orientation. Range of values is -90 to +90 degrees. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlatformHeadingAngle +
                urn:smpte:ul:060e2b34.01010107.07011001.06000000
              + LEAF + Platform Heading Angle + Heading angle of platform expressed in degrees. The Heading of an airborne platform is the angle from True North of its longitudinal axis projected onto the horizontal plane. Range of values is 000 to almost 360 degrees; North is 000, East is 090; South is 180, and West is 270. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SubjectAngles +
                urn:smpte:ul:060e2b34.01010101.07011002.00000000
              + NODE + Subject Angles + Angles relating to the subject depicted in the captured essence + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbstractLocations +
                urn:smpte:ul:060e2b34.01010101.07012000.00000000
              + NODE + Abstract Locations + Abstract information about position + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceNames +
                urn:smpte:ul:060e2b34.01010101.07012001.00000000
              + NODE + Place Names + Place information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbstractNames +
                urn:smpte:ul:060e2b34.01010101.07012001.01000000
              + NODE + Abstract Names + Abstract place information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceKeyword_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.01010000
              + LEAF + Place Keyword + The geographic name(s) of location(s) covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceKeyword +
                urn:smpte:ul:060e2b34.01010103.07012001.01010100
              + LEAF + Place Keyword + The geographic name(s) of location(s) covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryCodes +
                urn:smpte:ul:060e2b34.01010101.07012001.02000000
              + NODE + Country Codes + Country code information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02010000
              + LEAF + Object Country Code + The ISO code that represents the country depicted in the essence. + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCode +
                urn:smpte:ul:060e2b34.01010103.07012001.02010100
              + LEAF + Object Country Code + The country code or text that represents the country depicted in the essence. + ASPA MISB_RP_0102 + ISO 3166 or other coding system + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02020000
              + LEAF + Shooting Country Code + The ISO code that represents the country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02030000
              + LEAF + Setting Country Code + The ISO code that represents the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02040000
              + LEAF + Copyright License Country Code + The ISO code that represents a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyLicenseCountryCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.02050000
              + LEAF + Intellectual Property License Country Code + The ISO code that represents a country where IP rights are licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 4 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectCountryCodeMethod_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07012001.02060000
              + LEAF + Object Country Code Method + The coding method used to identify the object country code + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NonUSClassifyingCountryAndReleasingInstructionsCountryCodeMethod +
                urn:smpte:ul:060e2b34.01010103.07012001.02070000
              + LEAF + Country Code Method + The coding method used to identify the Non-US classifying country and countries in the releasing instructions + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 40 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CountryCodeMethod +
                urn:smpte:ul:060e2b34.01010109.07012001.02070100
              + LEAF + Country Code Method + The coding method used to identify the Non-US classifying country and countries in the releasing instructions + MISB_RP_0102 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + NonUSClassifyingCountry +
                urn:smpte:ul:060e2b34.01010103.07012001.02080000
              + LEAF + Non-US Classifying Country Code + ISO 3166 code of non-US country setting the security classification + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 6 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClassifyingCountryCode +
                urn:smpte:ul:060e2b34.01010109.07012001.02080100
              + LEAF + Classifying Country Code + ISO 3166 code of non-US country setting the security classification + MISB_RP_0102 + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReleaseInstructions +
                urn:smpte:ul:060e2b34.01010103.07012001.02090000
              + LEAF + Releasable Country Code + ISO 3166 codes of countries to which classified information is releasable + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ReleasableCountryCode +
                urn:smpte:ul:060e2b34.01010109.07012001.02090100
              + LEAF + Releasable Country Code + ISO 3166 codes of countries to which classified information is releasable + MISB_RP_0102 + ISO 3166 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Regions +
                urn:smpte:ul:060e2b34.01010101.07012001.03000000
              + NODE + Regions + Information about Regions within a country + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03010000
              + LEAF + Object Region Code + The ISO code that represents the region in a country where object is depicted + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ObjectRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03010100
              + LEAF + Object Region Name + Region in a country where object is depicted + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03020000
              + LEAF + Shooting Region Code + The ISO code that represents the region within a country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShootingRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03020100
              + LEAF + Shooting Region Name + Region within a country where shooting took place + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03030000
              + LEAF + Setting Region Code + The ISO code that represents the region of the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03030100
              + LEAF + Setting Region Name + The region of the country where the depicted action is set in the production + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03040000
              + LEAF + Copyright License Region Code + The ISO code that represents a region of a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CopyrightLicenseRegionName +
                urn:smpte:ul:060e2b34.01010103.07012001.03040100
              + LEAF + Copyright License Region Name + The region of a country where copyright is licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IntellectualPropertyLicenseRegionCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.03050000
              + LEAF + Intellectual Property License Region Code + The ISO code that represents a region of a country where IP rights are licensed + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegionAreaOfIPLicense +
                urn:smpte:ul:060e2b34.01010103.07012001.03050100
              + LEAF + Intellectual Property License Region Name + The region of a country where IP rights are licensed + DMS-1 + ISO 3166-1, ISO 3166-2, ISO 3166-3 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Addresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04000000
              + NODE + Addresses + Information about Addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalAddresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04010000
              + NODE + Postal Addresses + Information about Postal Addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010100
              + LEAF + Room Number + The aphanumeric room, suite or apartment number of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04010101
              + LEAF + Room Number + The aphanumeric room, suite or apartment number of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010200
              + LEAF + Street Number + The alphanumeric street number of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04010201
              + LEAF + Street Number + The alphanumeric street number of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010300
              + LEAF + Street Name + The street or thoroughfare name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StreetName +
                urn:smpte:ul:060e2b34.01010103.07012001.04010301
              + LEAF + Street Name + The street or thoroughfare name + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalTown_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010400
              + LEAF + Postal Town + The postal town name + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalTown +
                urn:smpte:ul:060e2b34.01010103.07012001.04010401
              + LEAF + Postal Town + The postal town name + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CityName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010500
              + LEAF + City Name + The city of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + City +
                urn:smpte:ul:060e2b34.01010103.07012001.04010501
              + LEAF + City Name + The city of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StateProvinceCounty_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010600
              + LEAF + State or Province or County Name + The state, province or county of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StateProvinceCounty +
                urn:smpte:ul:060e2b34.01010103.07012001.04010601
              + LEAF + State or Province or County Name + The state, province or county of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010700
              + LEAF + Postal Code + The ZIP or other postal code of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PostalCode +
                urn:smpte:ul:060e2b34.01010103.07012001.04010701
              + LEAF + Postal Code + The ZIP or other postal code of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Country_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04010800
              + LEAF + Country Name + The country of the address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Country +
                urn:smpte:ul:060e2b34.01010103.07012001.04010801
              + LEAF + Country Name + The country of the address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07012001.04011100
              + LEAF + Room or Suite Name + The room, suite or apartment name of an address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RoomSuiteName +
                urn:smpte:ul:060e2b34.01010105.07012001.04011101
              + LEAF + Room or Suite Name + The room, suite or apartment name of an address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BuildingName_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07012001.04011200
              + LEAF + Building Name + The building name of an address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BuildingName +
                urn:smpte:ul:060e2b34.01010105.07012001.04011201
              + LEAF + Building Name + The building name of an address. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressLine_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011300
              + LEAF + Address Line + The address line as a single string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 128 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AddressLine +
                urn:smpte:ul:060e2b34.01010107.07012001.04011301
              + LEAF + Address Line + The address line as a single string + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceName_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011400
              + LEAF + Place Name + The place name of an address as string (e.g., "The Post Office") + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceName +
                urn:smpte:ul:060e2b34.01010107.07012001.04011401
              + LEAF + Place Name + The place name of an address as string (e.g., "The Post Office") + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeographicalCoordinates +
                urn:smpte:ul:060e2b34.01010107.07012001.04011500
              + LEAF + Geographical Coordinates + Geographic coordinates of an address as a 12-byte spatial coordinate component as defined in SMPTE 330M-2003 + DMS-1 + SMPTE 330M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04010f00.00000000 + 12 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AstronomicalBodyName_ISO7 +
                urn:smpte:ul:060e2b34.01010107.07012001.04011600
              + LEAF + Astronomical Body Name + The name of the astronomical body as a string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 chars +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AstronomicalBodyName +
                urn:smpte:ul:060e2b34.01010107.07012001.04011601
              + LEAF + Astronomical Body Name + The name of the astronomical body as a string + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingAddresses +
                urn:smpte:ul:060e2b34.01010101.07012001.04020000
              + NODE + Setting Addresses + Information about address depicted in the setting of a production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRoomNumber_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020100
              + LEAF + Setting Room Number + The room number of a depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingRoomNumber +
                urn:smpte:ul:060e2b34.01010103.07012001.04020101
              + LEAF + Setting Room Number + The room number of a depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetNumberOrBuildingName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020200
              + LEAF + Setting Street Number or Building Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetNumberOrBuildingName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020201
              + LEAF + Setting Street Number or Building Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020300
              + LEAF + Setting Street Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStreetName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020301
              + LEAF + Setting Street Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingTownName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020400
              + LEAF + Setting Town Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingTownName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020401
              + LEAF + Setting Town Name + An address line for the depicted address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCityName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020500
              + LEAF + Setting City Name + The city of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCityName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020501
              + LEAF + Setting City Name + The city of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStateOrProvinceOrCountyName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020600
              + LEAF + Setting State or Province or County Name + The state, province or county of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingStateOrProvinceOrCountyName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020601
              + LEAF + Setting State or Province or County Name + The state, province or county of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPostalCode_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020700
              + LEAF + Setting Postal Code + The ZIP or other postal code of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPostalCode +
                urn:smpte:ul:060e2b34.01010103.07012001.04020701
              + LEAF + Setting Postal Code + The ZIP or other postal code of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryName_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.04020800
              + LEAF + Setting Country Name + The country of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingCountryName +
                urn:smpte:ul:060e2b34.01010103.07012001.04020801
              + LEAF + Setting Country Name + The country of the depicted address. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectronicAddressVarieties +
                urn:smpte:ul:060e2b34.01010104.07012001.10000000
              + NODE + Electronic Address Varieties + Information about electronic addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ElectronicAddressInformation +
                urn:smpte:ul:060e2b34.01010101.07012001.10030000
              + NODE + Electronic Address Information + Information about electronic addresses + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TelephoneNumber +
                urn:smpte:ul:060e2b34.01010101.07012001.10030100
              + LEAF + Telephone Number + Telephone number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TelephoneNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.07012001.10030101
              + LEAF + Telephone Number + Telephone number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FaxNumber +
                urn:smpte:ul:060e2b34.01010101.07012001.10030200
              + LEAF + Fax Number + Fax number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FaxNumber_UTF16String +
                urn:smpte:ul:060e2b34.01010103.07012001.10030201
              + LEAF + Fax Number + Fax number + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EmailAddress_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012001.10030300
              + LEAF + E-Mail Address + e-mail address + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EmailAddress +
                urn:smpte:ul:060e2b34.01010103.07012001.10030301
              + LEAF + E-Mail Address + e-mail address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CentralTelephoneNumber +
                urn:smpte:ul:060e2b34.01010104.07012001.10030400
              + LEAF + Central Telephone Number + Telephone number of organization switchboard + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MobileTelephoneNumber +
                urn:smpte:ul:060e2b34.01010104.07012001.10030500
              + LEAF + Mobile Telephone Number + Mobile telephone number + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactWebPage_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012001.10030600
              + LEAF + URL + Web home page URL + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContactWebPage +
                urn:smpte:ul:060e2b34.01010105.07012001.10030601
              + LEAF + URL + The contact's web home page address + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PlaceDescriptions +
                urn:smpte:ul:060e2b34.01010101.07012002.00000000
              + NODE + Place Descriptions + Place descriptions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07012002.01000000
              + LEAF + Setting Description + eg. 'A clearing in a wood' or 'Falstaffs living room' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 127 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDescription +
                urn:smpte:ul:060e2b34.01010103.07012002.01010000
              + LEAF + Setting Description + eg. 'A clearing in a wood' or 'Falstaffs living room' + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012002.02000000
              + LEAF + Location Description + The description of a location covered by a data set. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationDescription +
                urn:smpte:ul:060e2b34.01010104.07012002.02010000
              + LEAF + Location Description + The description of a location covered by a data set. + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationKind_ISO7 +
                urn:smpte:ul:060e2b34.01010104.07012002.03000000
              + LEAF + Location Kind + The kind of location - e.g. the location of the camera, the location of the action etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocationKind +
                urn:smpte:ul:060e2b34.01010104.07012002.03010000
              + LEAF + Location Kind + The kind of location - e.g. the location of the camera, the location of the action etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Temporal +
                urn:smpte:ul:060e2b34.01010101.07020000.00000000
              + NODE + Temporal + Information about temporal information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020100.00000000
              + NODE + Dates and Times + All information about dates and times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + GeneralDatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020101.00000000
              + NODE + General Dates and Times + General information about dates and times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01000000
              + NODE + User Date-Time + Time stamp application defined by user application + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCUserDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020101.01010000
              + LEAF + UTC User Date-Time + Time stamp application defined by user application + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalUserDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020101.01020000
              + LEAF + Local User Date-Time + Time stamp application defined by user application + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTE309MUserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01030000
              + LEAF + SMPTE 309M User Date-Time + Time stamp application defined by user application + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SMPTE12MUserDateTime +
                urn:smpte:ul:060e2b34.01010101.07020101.01040000
              + LEAF + SMPTE 12M User Date-Time + Time stamp application defined by user application + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012006.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + POSIXMicroseconds +
                urn:smpte:ul:060e2b34.01010103.07020101.01050000
              + LEAF + POSIX Microseconds + Time stamp application defined by user + 64 bit integer which represents the number of microseconds since Jan 1, 1970 UTC derived from the POSIX (IEEE 1003.1) standard. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterReleaseDateTime +
                urn:smpte:ul:060e2b34.0101010c.07020101.01060000
              + LEAF + Register Release Date-Time + The publication date of the register. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RegisterItemStatusChangeDateTime +
                urn:smpte:ul:060e2b34.0101010c.07020101.01070000
              + LEAF + Register Item Status Change Date-Time + The timestamp that indicates the last change of status of a register or entry. + SMPTE 2045 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012007.00000000 + 32 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMCurrentTime +
                urn:smpte:ul:060e2b34.0101010d.07020101.01080000
              + LEAF + ASM Current Time + The current UTC time expressed as a 64-bit integer representing the number of seconds elapsed since midnight, January 1, 1970. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteDatesAndTimes +
                urn:smpte:ul:060e2b34.01010101.07020102.00000000
              + NODE + Absolute Dates and Times + Absolute date and time information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.01000000
              + NODE + Material Start True Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.01010000
              + LEAF + UTC Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCStartDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.01010100
              + LEAF + UTC Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.01020000
              + LEAF + Local Start Date-Time + Absolute time at start of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCInstantDateTime_UTCmilliseconds +
                urn:smpte:ul:060e2b34.01010109.07020102.01030000
              + LEAF + UTC Instant Date-Time + Absolute time at instant of creating the segment, shot, clip, item etc. + MISB_EG_0104 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01200600.00000000 + 32 chars max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCInstantDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.01030100
              + LEAF + UTC Instant Date-Time + Absolute time at instant of creating the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.02000000
              + NODE + Material Start Time Address + Media time at start of segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.02010000
              + LEAF + Timecode Start Date-Time + Media time at start of segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + STLReferencePointTimecode +
                urn:smpte:ul:060e2b34.0101010e.07020102.02020000
              + LEAF + STL Reference Point Timecode + Specifies the Reference Point Timecode of the STL essence. + SMPTE ST 2075 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.03000000
              + NODE + Material End True Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.03010000
              + LEAF + UTC End Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.03020000
              + LEAF + Local End Date-Time + Absolute time at end of creating the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.04000000
              + NODE + Material End Time Address + Media time at end of segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.04010000
              + LEAF + Timecode End Date-Time + Media time at end of segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOccurrenceTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.05000000
              + NODE + Material Occurrence True Date-Time + Absolute time of an occurance to the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCLastModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.05010000
              + LEAF + UTC Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCLastModificationDateTime +
                urn:smpte:ul:060e2b34.01010109.07020102.05010100
              + LEAF + UTC Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalLastModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.05020000
              + LEAF + Local Last Modification Date-Time + Absolute time of the last modification of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOccurrenceTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.06000000
              + NODE + Material Occurrence Time Address + Media time of the last modification of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeLastModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.06010000
              + LEAF + Timecode Last Modification Date-Time + Media time of the last modification of the segment, shot, clip, item etc. + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.07000000
              + NODE + Event Start True Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventStartDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.07010000
              + LEAF + UTC Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.07010100
              + LEAF + UTC Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.07020000
              + LEAF + Local Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEventStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.07020100
              + LEAF + Local Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventListStartTime +
                urn:smpte:ul:060e2b34.0101010d.07020102.07030000
              + LEAF + ASM Event List Start Time + Start of the event list period. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefinedEventStartTrueDateTime +
                urn:smpte:ul:060e2b34.01010105.07020102.07100000
              + NODE + Defined Event Start True Date-Time + The absolute beginning date and time of a defined event + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FestivalDateTime +
                urn:smpte:ul:060e2b34.01010105.07020102.07100100
              + LEAF + Local Festival Date-Time + The beginning date and time of the festival (local time) + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.08000000
              + NODE + Event Start Time Address + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEventStartDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.08010000
              + LEAF + Timecode Event Start Date-Time + The absolute beginning date and time of the project, mission, scene, editing event, license, publication etc + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeArray +
                urn:smpte:ul:060e2b34.01010107.07020102.08020000
              + LEAF + Timecode Array + An ordered array of Timecodes with individual timecode packets as specified in SMPTE 331M, section 8.2. + SMPTE394M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04020400.00000000 + 8n +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTrueDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.09000000
              + NODE + Event End True Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventEndDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020102.09010000
              + LEAF + UTC Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UTCEventEndDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.09010100
              + LEAF + UTC Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.09020000
              + LEAF + Local Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalEventEndDateTime +
                urn:smpte:ul:060e2b34.01010104.07020102.09020100
              + LEAF + Local Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimeAddress +
                urn:smpte:ul:060e2b34.01010101.07020102.0a000000
              + NODE + Event End Time Address + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeEventEndDateTime +
                urn:smpte:ul:060e2b34.01010101.07020102.0a010000
              + LEAF + Timecode Event End Date-Time + The absolute ending date and time of the project, mission, scene, editing event, license, publication etc + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ASMEventListStopTime +
                urn:smpte:ul:060e2b34.0101010d.07020102.0a020000
              + LEAF + ASM Event List Stop Time + Stop of the event list period. + DC + SMPTE 430-6 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.00000000
              + NODE + Relative Times + Relative time information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialStartRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.01000000
              + NODE + Material Start Relative Times + The relative start time of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimeRelativeToReference_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.01010000
              + LEAF + Start Time Relative to Reference + The relative start time of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimecodeRelativeToReference +
                urn:smpte:ul:060e2b34.01010101.07020103.01020000
              + LEAF + Start Timecode Relative to Reference + The relative start time of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Origin +
                urn:smpte:ul:060e2b34.01010102.07020103.01030000
              + LEAF + Origin + Specifies the point, in edit units, in a track from which relative times are measured. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartPosition +
                urn:smpte:ul:060e2b34.01010102.07020103.01040000
              + LEAF + Start Time Relative to Reference + The relative start time from an origin within the track of a clip, expressed in edit units + AAF~StartTime mxflib~StartPosition + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + StartTimecode +
                urn:smpte:ul:060e2b34.01010102.07020103.01050000
              + LEAF + Start Timecode + The timecode within a track at the starting point of the essence + AAF~Start + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CutPoint +
                urn:smpte:ul:060e2b34.01010102.07020103.01060000
              + LEAF + Cut Point + Specifies the point, in edit units, in a track at which a cut occurs. + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + KeypointPosition +
                urn:smpte:ul:060e2b34.01010104.07020103.01070000
              + LEAF + Key Time Point + Specifies the point at which a key event occurs + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotStartPosition +
                urn:smpte:ul:060e2b34.01010105.07020103.01090000
              + LEAF + Shot Start Position + Defines the first edit unit to which this shot applies + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexStartPosition +
                urn:smpte:ul:060e2b34.01010105.07020103.010a0000
              + LEAF + Indexing Start Position + Specifies the position reletive to start of essence, in edit units, where indexing starts + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventTrackOrigin +
                urn:smpte:ul:060e2b34.01010105.07020103.010b0000
              + LEAF + Event Origin + Specifies the point, in edit units, in an event track from which relative times are measured. + AAF~EventSlotOrigin mxflib[:1.19]~EventOrigin + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MarkIn +
                urn:smpte:ul:060e2b34.01010107.07020103.010c0000
              + LEAF + Mark In + Specifies an optional IN point mark. The position is measured relative to the origin, in edit units, and applies to the track of material in which it is specified. + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + UserPosition +
                urn:smpte:ul:060e2b34.01010107.07020103.010d0000
              + LEAF + User Position + Specifies a position relative to the origin, in edit units, where material was previously positioned for viewing + AAF[1.1:]~UserPos + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkInPosition +
                urn:smpte:ul:060e2b34.0101010a.07020103.010e0000
              + LEAF + Package Mark In Position + Specifies an optional start of playback position. The position is measured relative to the origin, in edit units, and applies to all tracks of the material. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.02000000
              + NODE + Material End Relative Times + The relative end time of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.02010000
              + LEAF + Material End Time Offset + The relative end time of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialEndTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.02020000
              + LEAF + Material End Timecode Offset + The relative end time of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MarkOut +
                urn:smpte:ul:060e2b34.01010107.07020103.02030000
              + LEAF + Mark Out + Specifies an optional OUT point mark. The position is measured relative to the origin, in edit units, and applies to the track of material in which it is specified. + AAF[1.1:] + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageMarkOutPosition +
                urn:smpte:ul:060e2b34.0101010a.07020103.02040000
              + LEAF + Package Mark Out Position + Specifies an optional end of playback position. The position is measured relative to the origin, in edit units, and applies to all tracks of the material. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.03000000
              + NODE + Event Start Relative Times + The relative start time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.03010000
              + LEAF + Event Start Time Offset + The relative start time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventStartTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.03020000
              + LEAF + Event Start Timecode Offset + The relative start time of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventPosition +
                urn:smpte:ul:060e2b34.01010102.07020103.03030000
              + LEAF + Event Start + Specifies the Starting Time of an Event in edit units, relative to the origin + AAF~Position + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndRelativeTimes +
                urn:smpte:ul:060e2b34.01010101.07020103.04000000
              + NODE + Event End Relative Times + The relative end time of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimeOffset_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020103.04010000
              + LEAF + Event End Time Offset + The relative end time of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventEndTimecodeOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.04020000
              + LEAF + Event End Timecode Offset + The relative end time of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Offsets +
                urn:smpte:ul:060e2b34.01010101.07020103.10000000
              + NODE + Offsets + Information about offset times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialOffsets +
                urn:smpte:ul:060e2b34.01010101.07020103.10010000
              + NODE + Material Offsets + Information about material offset timing + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCountOffset +
                urn:smpte:ul:060e2b34.01010101.07020103.10010100
              + LEAF + Frame Count Offset + Offset of the content from a given timecode in timecode frames. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditOffsets +
                urn:smpte:ul:060e2b34.01010102.07020103.10020000
              + NODE + Edit Offsets + Information about editing offsets + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ControlPointTime +
                urn:smpte:ul:060e2b34.01010102.07020103.10020100
              + LEAF + Control Point Time + Control Point Time Offset - expressed as proportion of the duration of the effect + AAF~Time + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventOffsets +
                urn:smpte:ul:060e2b34.01010103.07020103.10030000
              + NODE + Event Offsets + Information about events offset from the beginning of material - ie, an event occuring after a given time interval from the start of a segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventElapsedTimeToStart_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07020103.10030100
              + LEAF + Event Elapsed Time to Start + The elapsed time into the segment, shot, clip, item etc. when an event begins (Days, Hours, minutes, seconds, fractions of seconds) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventElapsedTimeToEnd_ISO7 +
                urn:smpte:ul:060e2b34.01010103.07020103.10030200
              + LEAF + Event Elapsed Time to End + The elapsed time into the segment, shot, clip, item etc. when an event finishes (Days, Hours, minutes, seconds, fractions of seconds) + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDateAndTime +
                urn:smpte:ul:060e2b34.01010101.07020108.00000000
              + NODE + Setting Date and Time + Time period(s) characterized by the data set. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimePeriodKeyword_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020108.01000000
              + LEAF + Time Period Name + The name of a time period covered by a data set. Eg Cretaceous + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimePeriodKeyword +
                urn:smpte:ul:060e2b34.01010104.07020108.01010000
              + LEAF + Time Period Name + The name of a time period covered by a data set. Eg Cretaceous + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingDateTime +
                urn:smpte:ul:060e2b34.01010104.07020108.02000000
              + LEAF + Setting Date-Time + The date (and time if appropriate) of the setting as a timestamp + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodDescription_ISO7 +
                urn:smpte:ul:060e2b34.01010105.07020108.03000000
              + LEAF + Setting Period Description + Free-form text description of the setting period + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + SettingPeriodDescription +
                urn:smpte:ul:060e2b34.01010105.07020108.03010000
              + LEAF + Setting Period Description + Free-form text description of the setting period + DMS-1 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ProcessDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.00000000
              + NODE + Process Date-Time + Date and Time information relating to Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CreationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.01000000
              + NODE + Creation Date-Time + Identifies date and time at the point of creation. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalCreationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020110.01010000
              + LEAF + Local Creation Date-Time + Identifies date and time at the point of creation. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeCreationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.01020000
              + LEAF + Timecode Creation Date-Time + Identifies date and time at the point of creation. + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CreationTime +
                urn:smpte:ul:060e2b34.01010102.07020110.01030000
              + LEAF + Creation Date-Time + Identifies date and time at the point of creation. + AAF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ClipCreationDateTime +
                urn:smpte:ul:060e2b34.01010107.07020110.01040000
              + LEAF + Clip Creation Date-Time + Identifies date and time of creation of a clip + DMS-1 + SMPTE 380M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.02000000
              + NODE + Modification Date-Time + Identifies date and time at the point of modification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + LocalModificationDateTime_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020110.02010000
              + LEAF + Local Modification Date-Time + Identifies date and time at the point of modification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TimecodeModificationDateTime +
                urn:smpte:ul:060e2b34.01010101.07020110.02020000
              + LEAF + Timecode Modification Date-Time + Identifies date and time at the point of modification + The Field Flag / Phase bits and the Color Frame Flag bit shall be ignored. The Binary Group Flags and the Binary Groups shall be assumed to contain data as defined in SMPTE 309M. + SMPTE 309M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileModificationDate +
                urn:smpte:ul:060e2b34.01010102.07020110.02030000
              + LEAF + Modification Date-Time + Identifies date and time at the point of modification + AAF~Date + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FileLastModified +
                urn:smpte:ul:060e2b34.01010102.07020110.02040000
              + LEAF + Container Last Modification Date-Time + Identifies date and time at the point of most recent modification of any item in the container + ASPA[0.8]~LastModified AAF~LastModified + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PackageLastModified +
                urn:smpte:ul:060e2b34.01010102.07020110.02050000
              + LEAF + Package Last Modification Date-Time + Identifies date and time at the point of most recent modification of the package + AAF~LastModified + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AdministrativeDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.00000000
              + NODE + Administrative Date-Time + Date and Time information relating to Process + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ContractDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.01000000
              + LEAF + Contract Date-Time + Date and time of a contract. + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsStartDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.02000000
              + LEAF + Rights Start Date-Time + Date and time of the start of a rights contract + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RightsStopDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.03000000
              + LEAF + Rights Stop Date-Time + Date and time of the completion of a rights contract + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + PaymentDueDateTime +
                urn:smpte:ul:060e2b34.01010104.07020120.04000000
              + LEAF + Payment Due Date-Time + The due Date and time of a payment + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Durations +
                urn:smpte:ul:060e2b34.01010101.07020200.00000000
              + NODE + Durations + Information about time durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.00000000
              + NODE + Absolute Durations + Absolute time duration information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EditTimelineDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01000000
              + NODE + Edit Timeline Durations + Time duration information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FrameCount +
                urn:smpte:ul:060e2b34.01010101.07020201.01010000
              + LEAF + Frame Count + Length of the segment, shot, clip, item etc in frames. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + IndexDuration +
                urn:smpte:ul:060e2b34.01010105.07020201.01020000
              + LEAF + Index Duration + Specifies the duration of an Index table in content units + MXF + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ComponentLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01030000
              + LEAF + Component Length + The absolute duration of a compositional component - eg clip, effect, sequence etc in units of edit rate + AAF~Length mxflib[:1.19]~Duration + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01040000
              + NODE + Video Durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + AudioDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.01050000
              + NODE + Audio Durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DefaultFadeLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050100
              + LEAF + Default Fade Duration + Specifies the default length of an audio fade-in or fade-out to be applied, in units of edit rate + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeInLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050200
              + LEAF + Fade-In Duration + Specifies the length of an audio fade-in to be applied, in units of edit rate + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + FadeOutLength +
                urn:smpte:ul:060e2b34.01010102.07020201.01050300
              + LEAF + Fade-Out Duration + Specifies the length of an audio fade-out to be applied, in units of edit rate + AAF + Deprecate in AAF v1.1 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.02000000
              + NODE + Material Absolute Durations + The absolute duration of the segment, shot, clip, item etc. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDuration_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020201.02010000
              + LEAF + Material Absolute Duration + The absolute duration of the segment, shot, clip, item etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + MaterialAbsoluteDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.02020000
              + LEAF + Material Absolute Duration + The absolute duration of the segment, shot, clip, item etc. + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TextlessBlackDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.02030000
              + LEAF + Textless Black Duration + eg. 1 minutes after end of program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShotDuration +
                urn:smpte:ul:060e2b34.01010105.07020201.02040000
              + LEAF + Shot Duration + Defines the duration of this shot in edit units. A value of 1 defines a single edit unit length + DMS-1 + SMPTE 377M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 + 8 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + VideoClipDuration +
                urn:smpte:ul:060e2b34.01010107.07020201.02050000
              + LEAF + Video Clip Duration + The amount of time elapsed between the start of capture and the end of capture of the video clip. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes + Seconds +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDurations +
                urn:smpte:ul:060e2b34.01010101.07020201.03000000
              + NODE + Event Absolute Durations + The absolute duration of the project, mission, scene, editing event, license, publication etc + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDurationFrameCount +
                urn:smpte:ul:060e2b34.01010101.07020201.03010000
              + LEAF + Event Absolute Duration Frame Count + The absolute duration of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + 4 bytes +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDuration_ISO7 +
                urn:smpte:ul:060e2b34.01010101.07020201.03020000
              + LEAF + Event Absolute Duration + The absolute duration of the project, mission, scene, editing event, license, publication etc + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100400.00000000 + 32 bytes max +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EventAbsoluteDuration +
                urn:smpte:ul:060e2b34.01010101.07020201.03030000
              + LEAF + Event Absolute Duration + The absolute duration of the project, mission, scene, editing event, license, publication etc + The Binary Groups, the Binary Group Flags, the Field Flag / Phase bits and the Color Frame Flag bit shall be ignored + SMPTE 12M & SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + 8 bytes + Bitwise mapping of 64-bit timecode into 8 bytes, lsb first +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + RelativeScalingDurations +
                urn:smpte:ul:060e2b34.01010101.07020202.00000000
              + NODE + Relative Scaling Durations + Relative time duration information (twice as long, slow speed etc.) + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Delay +
                urn:smpte:ul:060e2b34.01010101.07020300.00000000
              + NODE + Delay + Information about Delay durations + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncodingAndDecoding +
                urn:smpte:ul:060e2b34.01010101.07020301.00000000
              + NODE + Encoding and Decoding + Information about delay durations in encoding and decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + CodecDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.01000000
              + NODE + Codec Delay + Information about combined delay in encoding & decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + EncodingDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.02000000
              + NODE + Encoding Delay + Information about delay durations in encoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + DecodingDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.03000000
              + NODE + Decoding Delay + Information about delay durations in decoding processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + BufferDelay +
                urn:smpte:ul:060e2b34.01010101.07020301.03010000
              + LEAF + Buffer Delay + Buffer delay per definition in SDTI-CP (E&M) + SMPTE 331M + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + Latency +
                urn:smpte:ul:060e2b34.01010101.07020500.00000000
              + NODE + Latency + Information about response times + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceMode +
                urn:smpte:ul:060e2b34.01010109.07020501.00000000
              + LEAF + Tolerance Mode + Enumerated mode of sampling or interpolation affecting the precision of an observation + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010129.00000000 + 1 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceWindow +
                urn:smpte:ul:060e2b34.01010109.07020502.00000000
              + LEAF + Tolerance Window + The duration of an observation or interpolation window. + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04100300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ToleranceInterpolationMethod +
                urn:smpte:ul:060e2b34.01010109.07020503.00000000
              + LEAF + Tolerance Interpolation Method + The reference to a interpolation method used to interpolate values to the reference time + AAF[1.3:] ASPA + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.05010500.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + TemporalCharacteristics +
                urn:smpte:ul:060e2b34.01010101.07020600.00000000
              + NODE + Temporal Characteristics + Information about temporal characteristics of processes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterCharacteristics +
                urn:smpte:ul:060e2b34.01010101.07020601.00000000
              + NODE + Shutter Characteristics + Shutter characteristics. + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterSpeed +
                urn:smpte:ul:060e2b34.01010101.07020601.01000000
              + NODE + Shutter Speed + Shutter speed + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012 + ShutterGating +
                urn:smpte:ul:060e2b34.01010101.07020601.02000000
              + NODE + Shutter Gating + Shutter Gating characteristics + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.01010101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.01010101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010100.00000000
              + NODE + AAF Attributes + AAF Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFInformationAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010101.00000000
              + NODE + AAF Information Attributes + AAF Information Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AAFInformationAttributesVersion1X +
                urn:smpte:ul:060e2b34.01010101.0d010101.01000000
              + NODE + AAF Information Attributes Version 1.x + AAF Information Attributes Version 1.x + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + EnumeratedAttributes +
                urn:smpte:ul:060e2b34.01010101.0d010101.01010000
              + NODE + Enumerated Attributes + Enumerated Attributes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + TapeFormat +
                urn:smpte:ul:060e2b34.01010102.0d010101.01010100
              + LEAF + Tape Format + Physical tape format from an enumerated list + AAF + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.02010102.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + MXFDescriptiveMetadataSchemes +
                urn:smpte:ul:060e2b34.01010101.0d010400.00000000
              + NODE + MXF Descriptive Metadata Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + MXFDMSStructureVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010401.00000000
              + NODE + MXF-DMS Structure Version-1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.01010101.0d010401.03000000
              + NODE + DMS AS-03 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + DMS_AS_03_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010000
              + NODE + DMS AS-03 Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_IdentifierKind +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010100
              + LEAF + AS-03 Identifier Kind + A controlled-vocabulary string value indicating the kind of program identifier, e.g. PBS PackageID + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_Identifier +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010200
              + LEAF + AS-03 Identifier + The program identifier as a text string, e.g. P900000HD + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_ShimName +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010300
              + LEAF + AS-03 Shim Name + A controlled-vocabulary string value indicating the AS-03 Shim Name, e.g. PBS NGIS HD Playout + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_SignalStandard +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010400
              + LEAF + AS-03 Signal Standard + A controlled-vocabulary string value indicating the signal standard of video contained in this AS-03 file + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_IntendedAFD +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010500
              + LEAF + AS-03 Intended AFD + A string value indicating the intended display format for the program, per SMPTE 2016-1 table 1 a3 a2 a1 a0 with optional informative appended text e.g. 1001 Pillarbox, 0100 Letterbox, 1000 FullHD + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_SlateTitle +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010600
              + LEAF + AS-03 Slate Title + A string that specifies a program title to be displayed to traffic and master control operators, e.g. Sesame Street + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_NOLACode +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010700
              + LEAF + AS-03 NOLA Code + A string that specifies the program series code and episode number, e.g. SESA 4187 + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_Rating +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010800
              + LEAF + AS-03 Rating + A controlled-vocabulary string that specifies the V-Chip rating of the program, e.g. TV-G + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/aaf + AS_03_NielsenStreamIdentifier +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010900
              + LEAF + AS-03 Nielsen Stream Identifier + A string that specifies Nielsen stream identifier for the program + AMWA Application Specification AS-03 MXF Program Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.01010101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010000
              + NODE + DMS AS-10 Core + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + DMS_AS_10_Core_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010100
              + NODE + DMS AS-10 Core Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Shim_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010101
              + LEAF + AS-10 Shim Name + The name of the AS_10 shim + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Type +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010102
              + LEAF + AS-10 Type + Type that describes the production category of clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Main_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010103
              + LEAF + AS-10 Main Title + Main title associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Sub_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010104
              + LEAF + AS-10 Sub Title + Sub title associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Title_Description +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010105
              + LEAF + AS-10 Title Description + Title description associated with the clip + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Organization_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010106
              + LEAF + AS-10 Organization Name + The name of a Organization + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Person_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010107
              + LEAF + AS-10 Person Name + The name of a Person + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Location_Description +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010108
              + LEAF + AS-10 Location Description + The text description of a location + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Common_Spanning_ID +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010109
              + LEAF + AS-10 Common Spanning ID + UMID for the total spanning clips + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01300100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Spanning_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010a
              + LEAF + AS-10 Spanning Number + Identifier for the spanning number (1st clip: 00 01) + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 + AS_10_Cumulative_Duration +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010b
              + LEAF + AS-10 Cumulative Duration + Cumulative Duration of preceding spanning clips in this set (spanning number 0 up to this-1), in Edit Units + AMWA Application Specification AS-10 MXF for Production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Core_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010100
              + NODE + AS-11 Core Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Series_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010101
              + LEAF + Series Title + The final name of a "group" of episodes to which the programme belongs. These episodes have a shared identification and branding and are linked by common characters, subject matter, style or story. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Programme_Title +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010102
              + LEAF + Programme Title + The final name of the programme used to identify it as a version of an episode. This name indicates the specific purpose for which the version was created. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Episode_Title_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010103
              + LEAF + Episode Title/Episode No. + The final name of the programme used to identify it as an editorially distinct member of a series i.e. an episode. This name may include a number (or consist only of a number) indicating the position of the episode within the series. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Shim_Name +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010104
              + LEAF + Shim Name + The name of the AS-11 shim specification to which the MXF file conforms. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Audio_Track_Layout +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010105
              + LEAF + Audio Track Layout + A code to identify the scheme that describes the usage of the audio channels encoded in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010200 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Primary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010106
              + LEAF + Primary Audio Language + A code to identify the main language used on primary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Closed_Captions_Present +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010107
              + LEAF + Closed Captions Present + A flag to indicate whether the programme contains embedded (out of vision) subtitling information. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Closed_Captions_Type +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010108
              + LEAF + Closed Captions Type + A code to identify the editorial description of the closed captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Caption_Language +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010109
              + LEAF + Closed Captions Language + A code to identify the main language used in the closed captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Shim_Version +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b01010a
              + LEAF + Shim Version + The version of the AS-11 shim specification to which the MXF file conforms. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020000
              + NODE + AS-11 Segmentation + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + DM_AS_11_Segmentation_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020100
              + NODE + AS-11 Segmentation Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Part_Number +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020101
              + LEAF + Part Number + A number that both: uniquely identifies the part / segment within the programme; and identifies the position of the part / segment within the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 + AS_11_Part_Total +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020102
              + LEAF + Part Total + The count of parts / segments in the entire programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + DMS_AS_12_Framework +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010100
              + NODE + DMS_AS_12_Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12_ShimName +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010101
              + LEAF + AS_12_ShimName + An informative shim name that identifies the specification for provider dependent metadata that may be shimmed into this file. E.g. "Ad-ID Digital Identification". Note, this string is informative therefore should not be considered to be a definitive indication that additional, shimmed, metadata is present in the file. The definitive indication is the presence of a shim's concrete subclass of "AS_12_DescriptiveObject". + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 + AS_12_Slate +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010102
              + LEAF + AS_12_Slate + A Strong Reference to the provider dependent metadata contained in a Descriptive Object as defined by the provider dependent shim + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0c010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.01010101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + Specification_Identification +
                urn:smpte:ul:060e2b34.01010101.0d010801.01000000
              + NODE + Specification Identification + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules + Specification_Identifiers +
                urn:smpte:ul:060e2b34.01010101.0d010801.01010000
              + LEAF + Specification Identifiers + A set of AUIDs where each AUID identifies a "file format" "Block" to which the MXF file conforms. A "file format" "Block" is a "Block" (a Rules Framework Component) that is usually at (or close to) the root of a Rules-based Specification. + AMWA Rules-based Specification component + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.04030100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/smpte/class13/element + EBU_UER +
                urn:smpte:ul:060e2b34.01010105.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ebucore +
                urn:smpte:ul:060e2b34.01010101.0d020100.00000000
              + NODE + ebucore + The EBUCore schema + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + EBUCoreMainFramework +
                urn:smpte:ul:060e2b34.01010101.0d020101.00000000
              + NODE + EBU Core Main Framework + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + documentLocator +
                urn:smpte:ul:060e2b34.01010101.0d020101.01000000
              + LEAF + Document Locator + the location where an instance of the metadata document can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + documentId +
                urn:smpte:ul:060e2b34.01010101.0d020101.02000000
              + LEAF + Document ID + An identifier associated with the metadata instance / document + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coreMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d020101.03000000
              + LEAF + Core Metadata Set + A strong reference to EBUCore's core set of descriptive and technical metadata + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaInformationObject +
                urn:smpte:ul:060e2b34.01010101.0d020101.04000000
              + LEAF + Metadata Schema Information Set + A strong reference to information about the EBUCore schema (version...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01020000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coreMetadata +
                urn:smpte:ul:060e2b34.01010101.0d020102.00000000
              + NODE + Core Metadata + EBUCore's core set of descriptive and technical metadata + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.01000000
              + LEAF + Identifier Sets + A batch of strong references to one or more identifiers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.02000000
              + LEAF + Title Sets + A batch of strong references to one or more titles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03020000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.03000000
              + LEAF + Alternative Title Sets + A batch of strong references to one or more alternative titles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03030000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + creatorEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.04000000
              + LEAF + Creator Entity Sets + A batch of strong references to one or more creators + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.05000000
              + LEAF + Subject Sets + A batch of strong references to one or more subjects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03050000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.06000000
              + LEAF + Description Sets + A batch of strong references to one or more descriptions + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publisherEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.07000000
              + LEAF + Publisher Entity Sets + A batch of strong references to one or more publishers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contributorEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.08000000
              + LEAF + Contributor Entity Sets + A batch of strong references to one or more contributors with varying roles + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.09000000
              + LEAF + Date Sets + A batch of strong references to one or more dates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0a000000
              + LEAF + Type Sets + A batch of strong references to one or more types (object type, genre, target audience or audience level...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03080000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0b000000
              + LEAF + Language Sets + A batch of strong references to one or more languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03090000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0c000000
              + LEAF + Coverage Sets + A batch of strong references to one or more coverages (temporal, spatial) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0d000000
              + LEAF + Rights Sets + A batch of strong references to one or more expressions of rights + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.0e000000
              + LEAF + Rating Sets + A batch of strong references to one or more ratings (user or audience rating) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.0f000000
              + LEAF + Version Set + A strong reference to a set of version information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01030000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistoryObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.10000000
              + LEAF + Publication History Set + A strong reference to a set of publication history information (published where, when, how) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningObject +
                urn:smpte:ul:060e2b34.01010101.0d020102.11000000
              + LEAF + Planning Set + A strong reference to a set of planning information (planned where, when, how) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01050000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.12000000
              + LEAF + Custom Relation Sets + A batch of strong references to one or more custom relations to other resources + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicRelationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.13000000
              + LEAF + Basic Relation Sets + A batch of strong references to one or more basic relations to other resources + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.14000000
              + LEAF + Format Sets + A batch of strong references to one or more formats in which the resource exists + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.15000000
              + LEAF + Part Sets + A batch of strong references to one or more parts/segments (editorial, technical parameter timeline...) within the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03100000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceRatingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.16000000
              + LEAF + Audience Rating Sets + The audience rating for a media resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventObjects +
                urn:smpte:ul:060e2b34.01010101.0d020102.17000000
              + LEAF + Event Sets + Events related to the media resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaInformation +
                urn:smpte:ul:060e2b34.01010101.0d020103.00000000
              + NODE + Metadata Schema Information + A set of schema related properties + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchema +
                urn:smpte:ul:060e2b34.01010101.0d020103.01000000
              + LEAF + Metadata Schema + The name of the reference schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataSchemaVersion +
                urn:smpte:ul:060e2b34.01010101.0d020103.02000000
              + LEAF + Metadata Schema Version + The version of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFrameworkTextLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020103.03000000
              + LEAF + Metadata Framework Text Language + Codes assigned by ISO 639-1 for the identification of languages. The (main) language of the metadata + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataNamespacePrefix +
                urn:smpte:ul:060e2b34.01010101.0d020103.04000000
              + LEAF + Metadata Namespace Prefix + The prefix associated with EBUCore metadata namespace in the xml domain + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataNamespace +
                urn:smpte:ul:060e2b34.01010101.0d020103.05000000
              + LEAF + Metadata Namespace + The namespace of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataProviderEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020103.06000000
              + LEAF + Metadata Provider Entity Set + A strong reference to ane entity identified as the provider of the schema + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataDateLastModified +
                urn:smpte:ul:060e2b34.01010101.0d020103.07000000
              + LEAF + Metadata Date Last Modified + The date when the schema was last modified/updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTimeLastModified +
                urn:smpte:ul:060e2b34.01010101.0d020103.08000000
              + LEAF + Metadata Time Last Modified + The time when the schema was last modified/updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifier +
                urn:smpte:ul:060e2b34.01010101.0d020104.00000000
              + NODE + Identifier + A set of attributes to qualify an identifier associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierValue +
                urn:smpte:ul:060e2b34.01010101.0d020104.01000000
              + LEAF + Identifier Value + The value of the identifier attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierNote +
                urn:smpte:ul:060e2b34.01010101.0d020104.02000000
              + LEAF + Identifier Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.03000000
              + LEAF + Identifier Type Group Set + A strong reference to an attribute type group to specify the type of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.04000000
              + LEAF + Identifier Format Group Set + A strong reference to an attribute format group to specify the format of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + identifierAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020104.05000000
              + LEAF + Identifier Attributor Entity Set + A strong reference to an entity object to specify the authority attributing of the identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + title +
                urn:smpte:ul:060e2b34.01010101.0d020105.00000000
              + NODE + Title + A set of attributes to qualify a title by which a resource is known + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020105.01000000
              + LEAF + Title Attribution Date + The date when the title was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleNote +
                urn:smpte:ul:060e2b34.01010101.0d020105.02000000
              + LEAF + Title Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020105.03000000
              + LEAF + Title Value Sets + A set of main titles of a resource e.g. in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleLength +
                urn:smpte:ul:060e2b34.01010101.0d020105.04000000
              + LEAF + Title Length + The length of the title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020105.05000000
              + LEAF + Title Geographical Scope + The geographical scope within which the title applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020105.06000000
              + LEAF + Title Geographical Exclusion Scope + The geographical scope within which the title does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + titleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020105.07000000
              + LEAF + Title Type Group Set + To specify a custom kind of title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitle +
                urn:smpte:ul:060e2b34.01010101.0d020106.00000000
              + NODE + Alternative Title + A set of attributes to qualify an alternative title by which a resource is known + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020106.01000000
              + LEAF + Alternative Title Attribution Date + The date when the alternative title was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleNote +
                urn:smpte:ul:060e2b34.01010101.0d020106.02000000
              + LEAF + Alternative Title Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020106.03000000
              + LEAF + Alternative Title Value Sets + A set of alternative titles of a resource e.g. in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020106.04000000
              + LEAF + Alternative Title Type Group Set + A strong reference to an attribute type group to specify the type of the alternative title (e.g. "secondary") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleStatusGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020106.05000000
              + LEAF + Alternative Title Status Group Set + A strong reference to an attribute type group to specify the status of the alternative title (e.g. "working") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01080000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleLength +
                urn:smpte:ul:060e2b34.01010101.0d020106.06000000
              + LEAF + Alternative Title Length + The length of the alternative title + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020106.07000000
              + LEAF + Alternative Title Geographical Scope + The geographical scope within which the alternative title applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeTitleGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020106.08000000
              + LEAF + Alternative Title Geographical Exclusion Scope + The geographical scope within which the alternative title does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + creator +
                urn:smpte:ul:060e2b34.01010101.0d020107.00000000
              + NODE + Creator + A creator of the resource e.g. personla behind the camera + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subject +
                urn:smpte:ul:060e2b34.01010101.0d020108.00000000
              + NODE + Subject + A subject associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectCode +
                urn:smpte:ul:060e2b34.01010101.0d020108.01000000
              + LEAF + Subject Code + A code to express the subject associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectNote +
                urn:smpte:ul:060e2b34.01010101.0d020108.02000000
              + LEAF + Subject Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020108.03000000
              + LEAF + Subject Value Sets + A batch of strong references to textual values of the subject associated to the media resource optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectDefinitionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020108.04000000
              + LEAF + Subject Definition Sets + A definition of the subject + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020108.05000000
              + LEAF + Subject Type Group Set + A strong reference to an attribute type group to specify the type of subject being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subjectAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020108.06000000
              + LEAF + Subject Attributor Entity Set + A strong reference to an entity object to specify the authority attributing the subject + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + description +
                urn:smpte:ul:060e2b34.01010101.0d020109.00000000
              + NODE + Description + A description of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionNote +
                urn:smpte:ul:060e2b34.01010101.0d020109.01000000
              + LEAF + Description Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020109.02000000
              + LEAF + Description Value Sets + The description text optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020109.03000000
              + LEAF + Description Type Group Set + A strong reference to an attribute type group defining the type of description (e.g. "summary" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionAttributorEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d020109.04000000
              + LEAF + DescriptionAttributorEntity Set + A strong reference to an entity object to specify the authority attributing the description + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionLength +
                urn:smpte:ul:060e2b34.01010101.0d020109.05000000
              + LEAF + DescriptionLength + The length of the description + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionGeographicalScope +
                urn:smpte:ul:060e2b34.01010101.0d020109.06000000
              + LEAF + DescriptionGeographicalScope + The geographical scope within which the description applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionGeographicalExclusionScope +
                urn:smpte:ul:060e2b34.01010101.0d020109.07000000
              + LEAF + DescriptionGeographicalExclusionScope + The geographical scope within which the description does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionAttributionDate +
                urn:smpte:ul:060e2b34.01010101.0d020109.08000000
              + LEAF + DescriptionAttributionDate + The date when the description was attributed to the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + descriptionCastFlag +
                urn:smpte:ul:060e2b34.01010101.0d020109.09000000
              + LEAF + DescriptionCastFlag + A flag to indicate if the description contains information about the cast or crew + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publisher +
                urn:smpte:ul:060e2b34.01010101.0d02010a.00000000
              + NODE + Publisher + A publisher of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contributor +
                urn:smpte:ul:060e2b34.01010101.0d02010b.00000000
              + NODE + Contributor + A contributor to the resource optionally associated with a specific role + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + date +
                urn:smpte:ul:060e2b34.01010101.0d02010c.00000000
              + NODE + Date + Definitions of key dates associated with a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateCreated +
                urn:smpte:ul:060e2b34.01010101.0d02010c.01000000
              + LEAF + Date Created + The date YYYY:MM:DD when the resource was created + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearCreated +
                urn:smpte:ul:060e2b34.01010101.0d02010c.02000000
              + LEAF + Year Created + The year YYYY when the resource was created + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateIssued +
                urn:smpte:ul:060e2b34.01010101.0d02010c.03000000
              + LEAF + Date Issued + The date YYYY:MM:DD when the resource was issued + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearIssued +
                urn:smpte:ul:060e2b34.01010101.0d02010c.04000000
              + LEAF + Year Issued + The year YYYY when the resource was issued + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateModified +
                urn:smpte:ul:060e2b34.01010101.0d02010c.05000000
              + LEAF + Date Modified + The date YYYY:MM:DD when the resource was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearModified +
                urn:smpte:ul:060e2b34.01010101.0d02010c.06000000
              + LEAF + Year Modified + The year YYYY when the resource was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateDigitized +
                urn:smpte:ul:060e2b34.01010101.0d02010c.07000000
              + LEAF + Date Digitized + The date YYYY:MM:DD when the resource was digitized + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearDigitized +
                urn:smpte:ul:060e2b34.01010101.0d02010c.08000000
              + LEAF + Year Digitized + The year YYYY when the resource was digitized + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateReleased +
                urn:smpte:ul:060e2b34.01010101.0d02010c.09000000
              + LEAF + Date Released + The date YYYY:MM:DD when the resource was released + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearReleased +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0a000000
              + LEAF + Year Released + The year YYYY when the resource was released + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateCopyrighted +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0b000000
              + LEAF + Date Copyrighted + The date YYYY:MM:DD when the resource was copyrighted + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + yearCopyrighted +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0c000000
              + LEAF + Year Copyrighted + The year YYYY when the resource was copyrighted + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateNote +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0d000000
              + LEAF + Date Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + alternativeDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0e000000
              + LEAF + Alternative Date Sets + A batch of strong references to custom dates which purpose/type is indicated using a type group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + precision +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0f000000
              + LEAF + Precision + Additional information on the accuracy of the date provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateType +
                urn:smpte:ul:060e2b34.01010101.0d02010d.00000000
              + NODE + Date Type + Definition of a generic date type for the definition of custom dates + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateValue +
                urn:smpte:ul:060e2b34.01010101.0d02010d.01000000
              + LEAF + Date Value + A date YYYY:MM:DD + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textualDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010d.02000000
              + LEAF + Textual Date Sets + A batch of strong references to dates in free text e.g. "April 18th, 2014" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010d.03000000
              + LEAF + Date Type Group Set + A strong reference to an attribute type group to specify the custom type of date being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dateFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010d.04000000
              + LEAF + Date Format Group Set + A strong reference to an attribute format group to specify the custom format of date being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + type +
                urn:smpte:ul:060e2b34.01010101.0d02010e.00000000
              + NODE + Type + A type associated with a media resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeNote +
                urn:smpte:ul:060e2b34.01010101.0d02010e.01000000
              + LEAF + Type Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.02000000
              + LEAF + Type Value Sets + A batch of strong references to one or more type values optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectTypeObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.03000000
              + LEAF + Object Type Sets + A batch of strong references to one or more object types (e.g. clip, segment, item, series, episode) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03130000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.04000000
              + LEAF + Genre Sets + A batch of strong references to one or more genres associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03140000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.05000000
              + LEAF + Target Audience Sets + A batch of strong references to one or more target audiences / levels associated with the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010e.06000000
              + LEAF + Type Type Group Set + A strong reference to the type of type if neither "object type" nor "genre" nor "target audience" + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceLevelObjects +
                urn:smpte:ul:060e2b34.01010101.0d02010e.07000000
              + LEAF + Audience Level Sets + To define the level of destined audience. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectType +
                urn:smpte:ul:060e2b34.01010101.0d02010f.00000000
              + NODE + Object Type + A strong reference to a type of (business) object (e.g. clip, segment, item, series, episode...) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + objectTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02010f.01000000
              + LEAF + Object Type Group Set + A strong reference to an attribute type group to specify a type of (business) object (e.g. clip, segment, item, series, episode...) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genre +
                urn:smpte:ul:060e2b34.01010101.0d020110.00000000
              + NODE + Genre + The genre of the resource, e.g. news, drama, sport + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020110.01000000
              + LEAF + Genre Type Group Set + A strong reference to an attribute type group e.g. for reference to a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genreLevel +
                urn:smpte:ul:060e2b34.01010101.0d020110.02000000
              + LEAF + Genre Level + An optional level of ranking associated with genre in case several values are provided for a resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudience +
                urn:smpte:ul:060e2b34.01010101.0d020111.00000000
              + NODE + Target Audience + The target audience or audience level for which a media resource has been commissioned + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceReason +
                urn:smpte:ul:060e2b34.01010101.0d020111.01000000
              + LEAF + Target Audience Reason + Free text to explain the reason for this classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020111.02000000
              + LEAF + Target Audience Link To Logo + A locator to a visual representation of the classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d020111.03000000
              + LEAF + Target Audience Not Rated Flag + A flag to signal if the content has not been rated ("1" for true) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d020111.04000000
              + LEAF + Target Audience Adult Content Flag + A flag to signal if this is adult content ("1" for true) or not + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020111.05000000
              + LEAF + Target Audience Type Group Set + A strong reference to an attribute type group to further specify the type of target classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020111.06000000
              + LEAF + Target Audience Region Sets + A batch of strong references to regions defining the geographical scope within which the target classification applies + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020111.07000000
              + LEAF + Target Audience Exclusion Region Sets + A batch of strong references to regions defining the geographical scope within which the target classification does not apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + targetAudienceFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020111.08000000
              + LEAF + Target Audience Format Group Set + A strong reference to an attribute format group to further specify the format used to express target classification + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + language +
                urn:smpte:ul:060e2b34.01010101.0d020112.00000000
              + NODE + Language + A set to define languages and their usage in a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageCode +
                urn:smpte:ul:060e2b34.01010101.0d020112.01000000
              + LEAF + Language Code + Codes assigned by BCP-47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020112.02000000
              + LEAF + Language Value Object + Language name assigned by BCP-47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languageNote +
                urn:smpte:ul:060e2b34.01010101.0d020112.03000000
              + LEAF + Language Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + languagePurposeObject +
                urn:smpte:ul:060e2b34.01010101.0d020112.04000000
              + LEAF + Language Purpose Set + A reference to an attribute type group to define the function / purpose associated with the language + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverage +
                urn:smpte:ul:060e2b34.01010101.0d020113.00000000
              + NODE + Coverage + Temporal and spatial information about the resource (factual or depicted) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.01000000
              + LEAF + Coverage Value Set + A strong reference to a general textual annotation to describe coverage information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + spatialObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.02000000
              + LEAF + Spatial Set + A strong reference to a spatial description object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01090000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.03000000
              + LEAF + Temporal Set + A strong reference to a temporal description object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coverageTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020113.04000000
              + LEAF + Coverage Type Group Set + A strong reference to an attribute type group to specify the type of coverage information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + spatial +
                urn:smpte:ul:060e2b34.01010101.0d020114.00000000
              + NODE + Spatial + A set of attributes to provide spatial information + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020114.01000000
              + LEAF + Location Sets + A batch of strong references to location objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + location +
                urn:smpte:ul:060e2b34.01010101.0d020115.00000000
              + NODE + Location + Location details + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationID +
                urn:smpte:ul:060e2b34.01010101.0d020115.01000000
              + LEAF + Location ID + An identifier associated with a location + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationCode +
                urn:smpte:ul:060e2b34.01010101.0d020115.02000000
              + LEAF + Location Code + A code associated with a location + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationDefinitionNote +
                urn:smpte:ul:060e2b34.01010101.0d020115.03000000
              + LEAF + Location Definition Note + A reference to an attribute type group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020115.04000000
              + LEAF + Location Name Sets + One or more names associated with a location optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.05000000
              + LEAF + Location Region Set + A reference to a region set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.06000000
              + LEAF + Location Type Group Set + A strong reference to an attribute type group to specify the type of location information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locationCoordinatesObject +
                urn:smpte:ul:060e2b34.01010101.0d020115.07000000
              + LEAF + Location Coordinates Set + A strong reference to associated coordinates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coordinates +
                urn:smpte:ul:060e2b34.01010101.0d020116.00000000
              + NODE + Coordinates + A set of attributes to define geographical coordinates + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + posX +
                urn:smpte:ul:060e2b34.01010101.0d020116.01000000
              + LEAF + PosX + The coordinates along an horizontal axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + posY +
                urn:smpte:ul:060e2b34.01010101.0d020116.02000000
              + LEAF + PosY + The coordinates along an vertical axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + coordinatesFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020116.03000000
              + LEAF + Coordinates Format Group Set + A reference to an attribute format group to specify the format of coordinates being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporal +
                urn:smpte:ul:060e2b34.01010101.0d020117.00000000
              + NODE + Temporal + A set of attributes to provide temporal information (time, period of time, event) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalDefinitionNote +
                urn:smpte:ul:060e2b34.01010101.0d020117.01000000
              + LEAF + Temporal Definition Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodOfTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020117.02000000
              + LEAF + Period Of Time Sets + A batch of strong references to time period objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03180000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + temporalTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020117.03000000
              + LEAF + Temporal Type Group Set + A strong reference to an attribute type group to define the type of temporal information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodOfTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.00000000
              + NODE + Period Of Time + A set of attributes to define a time period + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodID +
                urn:smpte:ul:060e2b34.01010101.0d020118.01000000
              + LEAF + Period ID + An idenitifer associated with the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartYear +
                urn:smpte:ul:060e2b34.01010101.0d020118.02000000
              + LEAF + Period Start Year + The starting year of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartDate +
                urn:smpte:ul:060e2b34.01010101.0d020118.03000000
              + LEAF + Period Start Date + The starting date of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodStartTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.04000000
              + LEAF + Period Start Time + The starting time of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndYear +
                urn:smpte:ul:060e2b34.01010101.0d020118.05000000
              + LEAF + Period End Year + The ending year of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndDate +
                urn:smpte:ul:060e2b34.01010101.0d020118.06000000
              + LEAF + Period End Date + The ending date of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodEndTime +
                urn:smpte:ul:060e2b34.01010101.0d020118.07000000
              + LEAF + Period End Time + The ending time of the time period + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + periodNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020118.08000000
              + LEAF + Period Name Sets + A batch of strong references to names associated with the time period optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rights +
                urn:smpte:ul:060e2b34.01010101.0d020119.00000000
              + NODE + Rights + General information on rights of different nature associated with the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsID +
                urn:smpte:ul:060e2b34.01010101.0d020119.01000000
              + LEAF + Rights ID + An ID for reference (similar to IDREf in XML) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsLink +
                urn:smpte:ul:060e2b34.01010101.0d020119.02000000
              + LEAF + Rights Link + A link to e.g. a webpage where the rights information can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsClearanceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020119.03000000
              + LEAF + Rights Clearance Flag + A flag indicating if rights have been cleared when set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsNote +
                urn:smpte:ul:060e2b34.01010101.0d020119.04000000
              + LEAF + Rights Note + A note with additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.05000000
              + LEAF + Rights Value Sets + A batch of strong references to rights concerning the resource: usage rights, exploitation issues... possibly in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + exploitationIssuesObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.06000000
              + LEAF + Exploitation Issues Sets + A batch of strong references to a textual annotation to express exploitation issues + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + copyrightStatementObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.07000000
              + LEAF + Copyright Statement Sets + A batch of strong references to a textual annotation to express copyright statements + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsCoverageObject +
                urn:smpte:ul:060e2b34.01010101.0d020119.08000000
              + LEAF + Rights Coverage Set + A strong reference to a coverage object to define temporal and spatial scope within which rights apply + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsHolderEntityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.09000000
              + LEAF + Rights Holder Entity Sets + A batch of strong references to entity objects to identify one or more rights holders + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0a000000
              + LEAF + Rights Contact Sets + A batch of strong references to contact objects to identify contacts + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020119.0b000000
              + LEAF + Rights Type Group Set + A reference to a type group set to define the type of rights being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsAttributedIDObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0c000000
              + LEAF + Rights Attributed ID Sets + A batch of strong references to identifiers, e.g. attributed by authorities + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsFormatReferenceObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0d000000
              + LEAF + Rights Format Reference Sets + A batch of references to formats to which the rights apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + processingRestrictionFlag +
                urn:smpte:ul:060e2b34.01010101.0d020119.0e000000
              + LEAF + Processing Restriction Flag + A flag to indicate resrictions on rights processing + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + disclaimerObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.0f000000
              + LEAF + Disclaimer Sets + A batch of references to a textual annotation to express disclaimers + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rightsCoverageObjects +
                urn:smpte:ul:060e2b34.01010101.0d020119.10000000
              + LEAF + Rights Coverage Sets + To specify the temporal and spatial coverage of rights. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.030a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + version +
                urn:smpte:ul:060e2b34.01010101.0d02011a.00000000
              + NODE + Version + To define the version of the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011a.01000000
              + LEAF + Version Value Sets + A batch of strong references to textual annotation expressing the version (e.g. TV, theatre, plane) optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + versionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011a.02000000
              + LEAF + Version Type Group Set + A reference to an attribute type group to specify the type of version information being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rating +
                urn:smpte:ul:060e2b34.01010101.0d02011b.00000000
              + NODE + Rating + A set of attributes to define the rating attributed to the resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingReason +
                urn:smpte:ul:060e2b34.01010101.0d02011b.01000000
              + LEAF + Rating Reason + Free text to explain the reason for attributing the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02011b.02000000
              + LEAF + Rating Link To Logo + A locator to a visual representation of the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011b.03000000
              + LEAF + Rating Not Rated Flag + A flag to signal if the content has not been rated ("1" for true) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011b.04000000
              + LEAF + Rating Adult Content Flag + A flag to signal if this is adult content ("1" for true) or not + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.05000000
              + LEAF + Rating Value Sets + A batch of strong references to a textual or numerical value given for rating optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingScaleMinValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.06000000
              + LEAF + Rating Scale Min Value Sets + A numerical or textual value defining the minimum range of a scale optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingScaleMaxValueObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.07000000
              + LEAF + Rating Scale Max Value Sets + A numerical or textual value defining the maximum range of a scale optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.08000000
              + LEAF + Rating Type Group Set + A strong reference to an attribute type group to define the type of rating being provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.09000000
              + LEAF + Rating Format Group Set + A strong reference to an attribute format group to define the format in which rating is provided + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingProviderEntityObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0a000000
              + LEAF + Rating Provider Entity Set + A strong reference to an entity object to identify the authority providing the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0b000000
              + LEAF + Rating Region Set + A strong reference to a region object + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingSystem +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0c000000
              + LEAF + Rating System + To provide information on the rating system in use, as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingEnvironment +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0d000000
              + LEAF + Rating Environment + To provide information on the rating environment, as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingLink +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0e000000
              + LEAF + Rating Link + A link to point e.g. to a web resource providing information on the rating + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0f000000
              + LEAF + Rating Exclusion Region Sets + To specify regions where rating doesn't apply. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ratingRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011b.10000000
              + LEAF + Rating Region Sets + To specify regions where rating applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEvent +
                urn:smpte:ul:060e2b34.01010101.0d02011c.00000000
              + NODE + Publication Event + A description of a publication event + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventName +
                urn:smpte:ul:060e2b34.01010101.0d02011c.01000000
              + LEAF + Publication Event Name + The name of the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventId +
                urn:smpte:ul:060e2b34.01010101.0d02011c.02000000
              + LEAF + Publication Event Identifier + An identifier attributed to the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + firstShowingFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.03000000
              + LEAF + First Showing Flag + A flag to identify a first publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + lastShowingFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.04000000
              + LEAF + Last Showing Flag + A flag to identify a last publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationDate +
                urn:smpte:ul:060e2b34.01010101.0d02011c.05000000
              + LEAF + Publication Date + The date of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationTime +
                urn:smpte:ul:060e2b34.01010101.0d02011c.06000000
              + LEAF + Publication Time + The time of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + scheduleDate +
                urn:smpte:ul:060e2b34.01010101.0d02011c.07000000
              + LEAF + Schedule date + The calendar date to which the publication time is associated with + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + freePublicationFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.08000000
              + LEAF + Free Publication Flag + A flag to identify a freely accessible publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + livePublicationFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.09000000
              + LEAF + Live Publication Flag + A flag to identify a live publication ('True' if set to '1') + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationNote +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0a000000
              + LEAF + Publication Note + A note to provide additional contextual information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationFormatReferenceObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0b000000
              + LEAF + Publication Format Reference Set + A reference to the format in which content was published + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationRightsReferenceObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0c000000
              + LEAF + Publication Rights Reference Sets + A batch of references to the rights associated with the publication event + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0d000000
              + LEAF + Publication Region Sets + A batch of strong references to regions where the publication event has taken place + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0e000000
              + LEAF + Publication Medium Set + A strong reference to the definition of a medium of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0f000000
              + LEAF + Publication Channel Set + A strong reference to the definition of a channel of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceObject +
                urn:smpte:ul:060e2b34.01010101.0d02011c.10000000
              + LEAF + Publication Service Set + A strong reference to the definition of a service of publication + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.010f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + liveProductionFlag +
                urn:smpte:ul:060e2b34.01010101.0d02011c.11000000
              + LEAF + Live Production Flag + A flag to indicate that production was being made live + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistory +
                urn:smpte:ul:060e2b34.01010101.0d02011d.00000000
              + NODE + Publication History + A summary of where and when the resource was published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d02011d.01000000
              + LEAF + Publication Event Sets + A batch of strong references to publication events + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationHistoryId +
                urn:smpte:ul:060e2b34.01010101.0d02011d.02000000
              + LEAF + Publication History Id + An identifier associated with a set of publication history information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannel +
                urn:smpte:ul:060e2b34.01010101.0d02011e.00000000
              + NODE + Publication Channel + A set of attributes to define a channel on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelName +
                urn:smpte:ul:060e2b34.01010101.0d02011e.01000000
              + LEAF + Publication Channel Name + The name of the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelId +
                urn:smpte:ul:060e2b34.01010101.0d02011e.02000000
              + LEAF + Publication Channel Identifier + An identifier attributed to the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02011e.03000000
              + LEAF + Publication Channel Link To Logo + A pointer to the location of a visual identifier of the publication channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationChannelTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011e.04000000
              + LEAF + Publication Channel Type Set + A strong reference to an attribute type group to define the type of channel being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMedium +
                urn:smpte:ul:060e2b34.01010101.0d02011f.00000000
              + NODE + Publication Medium + A set of attributes to define the medium on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumName +
                urn:smpte:ul:060e2b34.01010101.0d02011f.01000000
              + LEAF + Publication Channel Name + The name of the publication medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumId +
                urn:smpte:ul:060e2b34.01010101.0d02011f.02000000
              + LEAF + Publication Medium Identifier + An identifier attributed to the publication medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationMediumTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02011f.03000000
              + LEAF + Publication Medium Type Set + A strong reference to an attribute type group to define the type of medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationService +
                urn:smpte:ul:060e2b34.01010101.0d020120.00000000
              + NODE + Publication Service + A set of attributes to define the service on which a resource is published + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceName +
                urn:smpte:ul:060e2b34.01010101.0d020120.01000000
              + LEAF + Publication Service Name + The name of the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020120.02000000
              + LEAF + Publication Service Link To Logo + A pointer to the location of a visual identifier of the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceSourceObject +
                urn:smpte:ul:060e2b34.01010101.0d020120.03000000
              + LEAF + Publication Service Source Set + A strong reference to an organization managing the service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceId +
                urn:smpte:ul:060e2b34.01010101.0d020120.04000000
              + LEAF + Publication Service Id + An identifier attributed to the publication service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + publicationServiceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020120.05000000
              + LEAF + Publication Service Type Group Set + A strong reference to an attribute type group to define the type of service + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entity +
                urn:smpte:ul:060e2b34.01010101.0d020121.00000000
              + NODE + Entity + A set of attributes to identifiy a participant and its role + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityID +
                urn:smpte:ul:060e2b34.01010101.0d020121.01000000
              + LEAF + Entity ID + An identifier attributed to the participant + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.02000000
              + LEAF + Entity Contact Sets + A batch of strong references to contact objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityOrganizationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.03000000
              + LEAF + Entity Organization Sets + A batch of strong references to organization objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityRoleObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.04000000
              + LEAF + Entity Role Sets + A batch of strong references to role objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityAwardObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.05000000
              + LEAF + Entity Award Sets + To list awards received by a person or organization. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + entityEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d020121.06000000
              + LEAF + Entity Event Sets + To list events related to an Entity. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contact +
                urn:smpte:ul:060e2b34.01010101.0d020122.00000000
              + NODE + Contact + A set of attributes to provide personal information about a Contact / Person + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactID +
                urn:smpte:ul:060e2b34.01010101.0d020122.01000000
              + LEAF + Contact ID + An identifier attributed to the contact / person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + familiyName +
                urn:smpte:ul:060e2b34.01010101.0d020122.02000000
              + LEAF + Family Name + The family name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + givenName +
                urn:smpte:ul:060e2b34.01010101.0d020122.03000000
              + LEAF + Given Name + The first given name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + salutation +
                urn:smpte:ul:060e2b34.01010101.0d020122.04000000
              + LEAF + Salutation + Mr., Mrs, Ms , Pr., Dr. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + suffix +
                urn:smpte:ul:060e2b34.01010101.0d020122.05000000
              + LEAF + Suffix + Jr, Sr. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + occupation +
                urn:smpte:ul:060e2b34.01010101.0d020122.06000000
              + LEAF + Occupation + The occupation of the contact / person e.g. in an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + username +
                urn:smpte:ul:060e2b34.01010101.0d020122.07000000
              + LEAF + Username + To provide a username through which the contact is known + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + guestFlag +
                urn:smpte:ul:060e2b34.01010101.0d020122.08000000
              + LEAF + Guest Flag + A flag to indicate if the contact/person is a guest + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.09000000
              + LEAF + Contact Name Sets + A batch of strong references to provide one or more compound names (family + given names + salutation...) or for other purposes + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020122.0a000000
              + LEAF + Contact Type Group Set + A strong reference to an attribute type group to define the type of contact information (e.g. "business" or "private") + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactDetailsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0b000000
              + LEAF + Contact Details Sets + A strong reference to a details object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactRelatedContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0c000000
              + LEAF + Contact Related Contact Sets + A batch of strong references to contact objects (entity) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + stageNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0d000000
              + LEAF + Stage Name Sets + The name given to the contact / person while on stage, e.g. a character name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + genderObject +
                urn:smpte:ul:060e2b34.01010101.0d020122.0e000000
              + LEAF + Gender Set + An attribute to facilitate search on a particular gender, i.e. male or female.optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactRelatedInformationLinkObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.0f000000
              + LEAF + Contact Related Information Link Sets + A batch of strong references to links to e.g. a webpage where more information can be found about the contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + otherGivenName +
                urn:smpte:ul:060e2b34.01010101.0d020122.10000000
              + LEAF + Other Given Name + A batch of strong references to given names other than the first given name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + birthDate +
                urn:smpte:ul:060e2b34.01010101.0d020122.11000000
              + LEAF + Birth date + The birth date of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deathDate +
                urn:smpte:ul:060e2b34.01010101.0d020122.12000000
              + LEAF + Death Date + The death date of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + birthPlace +
                urn:smpte:ul:060e2b34.01010101.0d020122.13000000
              + LEAF + Birth Place + The birth place of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nationality +
                urn:smpte:ul:060e2b34.01010101.0d020122.14000000
              + LEAF + Nationality + The nationality of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nickname +
                urn:smpte:ul:060e2b34.01010101.0d020122.15000000
              + LEAF + Nickname + The nickname of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + skill +
                urn:smpte:ul:060e2b34.01010101.0d020122.16000000
              + LEAF + Skill + The skill of a contact/person + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + contactLastUpdate +
                urn:smpte:ul:060e2b34.01010101.0d020122.17000000
              + LEAF + Contact Last Update + The date when the contact information has been last updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deathPlace +
                urn:smpte:ul:060e2b34.01010101.0d020122.18000000
              + LEAF + Death Place + To specify the place of death. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationObjects +
                urn:smpte:ul:060e2b34.01010101.0d020122.19000000
              + LEAF + Affiliation Sets + To provide a list of present and past affiliations. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organization +
                urn:smpte:ul:060e2b34.01010101.0d020123.00000000
              + NODE + Organization + A set of attributes to provide Information about an organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationID +
                urn:smpte:ul:060e2b34.01010101.0d020123.01000000
              + LEAF + Organization ID + an identifier attributed to the organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d020123.02000000
              + LEAF + Organization Link To Logo + A pointer to the location of a visual identifier of an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationCodeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.03000000
              + LEAF + Organization Code Sets + A batch of strong references to codes attributed to an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationRelatedInformationLinkObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.04000000
              + LEAF + Organization Related Information Link Sets + A batch of strong references to links to e.g. a webpage where more information can be found + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.05000000
              + LEAF + Organization Name Sets + A batch of strong references to names associated with the organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDepartmentObject +
                urn:smpte:ul:060e2b34.01010101.0d020123.06000000
              + LEAF + Organization Department Set + A strong reference to a department within an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01100000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020123.07000000
              + LEAF + Organization Type Group Set + A strong reference to an attribute type group to define the type of organization being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDetailsObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.08000000
              + LEAF + Organization Details Sets + A batch of strong references to details about an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationRelatedContactObjects +
                urn:smpte:ul:060e2b34.01010101.0d020123.09000000
              + LEAF + Organization Related Contact Sets + A batch of strong references to contact objects (entity) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationDescription +
                urn:smpte:ul:060e2b34.01010101.0d020123.0a000000
              + LEAF + Organization Description + Information about an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationNationality +
                urn:smpte:ul:060e2b34.01010101.0d020123.0b000000
              + LEAF + Organization Nationality + The nationality of an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + organizationLastUpdate +
                urn:smpte:ul:060e2b34.01010101.0d020123.0c000000
              + LEAF + Organization Last Update + The date when the organization information has been last updated + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + department +
                urn:smpte:ul:060e2b34.01010101.0d020124.00000000
              + NODE + Department + A set of attributes to describe a department within an organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + departmentID +
                urn:smpte:ul:060e2b34.01010101.0d020124.01000000
              + LEAF + Department ID + An identifier attributed to a department + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + departmentName +
                urn:smpte:ul:060e2b34.01010101.0d020124.02000000
              + LEAF + Department Name + The name of department within an organization + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + details +
                urn:smpte:ul:060e2b34.01010101.0d020125.00000000
              + NODE + Details + A set of attributes to provide the details of a Contact / Person + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + webAddress +
                urn:smpte:ul:060e2b34.01010101.0d020125.01000000
              + LEAF + Web Address + The address of a web site + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + telephoneNumber +
                urn:smpte:ul:060e2b34.01010101.0d020125.02000000
              + LEAF + Telephone Number + A telephone number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mobileTelephoneNumber +
                urn:smpte:ul:060e2b34.01010101.0d020125.03000000
              + LEAF + Mobile Telephone Number + A mobile telephone number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + emailAddress +
                urn:smpte:ul:060e2b34.01010101.0d020125.04000000
              + LEAF + Email Address + An email address + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + detailsTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020125.05000000
              + LEAF + Details Type Group Set + A strong reference to an attribute type group to specify the type of details e.g. home or office + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + addressObject +
                urn:smpte:ul:060e2b34.01010101.0d020125.06000000
              + LEAF + Address Set + A strong reference to an address object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + address +
                urn:smpte:ul:060e2b34.01010101.0d020126.00000000
              + NODE + Address + The postal address of a contact or organization + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + deliveryCode +
                urn:smpte:ul:060e2b34.01010101.0d020126.01000000
              + LEAF + Delivery Code + A delivery / postal code + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + townCityObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.02000000
              + LEAF + Town City Sets + A batch of strong references to provide the names of the city optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countyStateObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.03000000
              + LEAF + County State Sets + A batch of strong references to provide the names of a county / state / region optionally in differnet languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.04000000
              + LEAF + Country Name Sets + A batch of strong references to provide the country names and code optionally in different languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03200000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + addressLineObjects +
                urn:smpte:ul:060e2b34.01010101.0d020126.05000000
              + LEAF + Address Line Sets + A batch of strong references to address lines + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + region +
                urn:smpte:ul:060e2b34.01010101.0d020127.00000000
              + NODE + Region + A set of attributes to define a region as a country or a region / state or other geographical/administrative subdivision of a country + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryObject +
                urn:smpte:ul:060e2b34.01010101.0d020127.01000000
              + LEAF + Country Set + A strong reference to identifiy a country + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.013c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryRegionObject +
                urn:smpte:ul:060e2b34.01010101.0d020127.02000000
              + LEAF + Country Region Set + A strong reference to identifiy one or more region in a country + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundName +
                urn:smpte:ul:060e2b34.01010101.0d020128.00000000
              + NODE + Compound Name + A set of attributes to define a simple or compound name which purpose is defined by the type group and the format is defined by the format group + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameValue +
                urn:smpte:ul:060e2b34.01010101.0d020128.01000000
              + LEAF + Compound Name Value + The value of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020128.02000000
              + LEAF + Compound Name Type Group Set + A strong reference to a type group to define the purpose of use of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + compoundNameFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020128.03000000
              + LEAF + Compound Name Format Group Set + A strong reference to a format group to define the format of composition of the compound name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + role +
                urn:smpte:ul:060e2b34.01010101.0d020129.00000000
              + NODE + Role + A strong reference to a role/job and associated cost centre + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + costCenterReference +
                urn:smpte:ul:060e2b34.01010101.0d020129.01000000
              + LEAF + Cost Center Reference + The cost center reference against which activities associated to the role / job are being billed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + roleTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020129.02000000
              + LEAF + Role Type Group Set + A strong reference to a role / job + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryType +
                urn:smpte:ul:060e2b34.01010101.0d02012a.00000000
              + NODE + Country Type + A set of attributes to define a country by its name or code + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + countryTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02012a.01000000
              + LEAF + Country Type Group Set + A strong reference to an attribute type group to provide a country name or code + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + relations +
                urn:smpte:ul:060e2b34.01010101.0d02012b.00000000
              + NODE + Relations + A set of definitions for custom or basic predefined relations + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelation +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01000000
              + NODE + Custom Relation + A set of attributes to express a custom relation between resources + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationByName +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01010000
              + LEAF + Relation By Name + Related resource identified by name + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationLink +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01020000
              + LEAF + Relation Link + Related resource identified by a URI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + runningOrderNumber +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01030000
              + LEAF + Running Order Number + The ranking number if member of an ordered group, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + totalNumberOfGroupMembers +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01040000
              + LEAF + Total Number Of Group Members + The total number of members of the related group, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + orderedGroupFlag +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01050000
              + LEAF + Ordered Group Flag + A flag indicating if a related group is ordered, when applicable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationNote +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01060000
              + LEAF + Custom relation Note + To provide additional contextual,information + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01070000
              + LEAF + Custom Relation Type Group Set + A strong reference to an attribute type group to define the type of relation being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + customRelationIdentifierObject +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01080000
              + LEAF + Custom Relation Identifier Set + A strong reference to related resource identified by an identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicRelation +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02000000
              + NODE + Basic Relation + A set of predefined basic relations + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isVersionOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02010000
              + LEAF + Is Version Of + The resource from which the current version has been derived + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasVersion +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02020000
              + LEAF + Has Version + A version derived from the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isReplacedBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02030000
              + LEAF + Is Replaced By + A resource replacing the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + replaces +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02040000
              + LEAF + Replaces + A resource that the current resource replaces + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isRequiredBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02050000
              + LEAF + Is Required By + A resource requirring the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + requires +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02060000
              + LEAF + Requires + A resource that the current resourece requires + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isPartOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02070000
              + LEAF + Is Part Of + A resource that the current resources is a part of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasPart +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02080000
              + LEAF + Has Part + A resource that forms part of the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isReferencedBy +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02090000
              + LEAF + Is Referenced By + A resource that references the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + references +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020a0000
              + LEAF + References + A resource referenced by the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isFormatOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020b0000
              + LEAF + Is Format Of + A resource defining the format with the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasFormat +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020c0000
              + LEAF + Has Format + A resource defining the format with the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isEpisodeOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020d0000
              + LEAF + Is Episode Of + A series that the current resource is an episode of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isMemberOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020e0000
              + LEAF + Is Member Of + A group that the current resource is a member of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasMember +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020f0000
              + LEAF + Has Member + A resource that is a member of a group + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasEpisode +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02100000
              + LEAF + Has Episode + A series that the current resource is an episode of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isSeasonOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02110000
              + LEAF + Is Season Of + A season that the current resource is a series of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasSeason +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02120000
              + LEAF + Has Season + A season that the current resource is a series of + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isNextInSequence +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02130000
              + LEAF + Is Next In Sequence + A resource that comes next to the current resource in a sequence + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + followsInSequence +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02140000
              + LEAF + Follows In Sequence + A resource that the current resource follows in a sequence + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isRelatedTo +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02150000
              + LEAF + Is Related To + A resource to which the current resource in related + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + sameAs +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02160000
              + LEAF + Same As + A resource that is the same as the current resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hasSeries +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02170000
              + LEAF + Has Series + To identify series e.g. in a season. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + isSeriesOf +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02180000
              + LEAF + Is Series Of + To identify a parent season or brand. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planning +
                urn:smpte:ul:060e2b34.01010101.0d02012c.00000000
              + NODE + Planning + A set of attributes needed to define a planning + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningEventObjects +
                urn:smpte:ul:060e2b34.01010101.0d02012c.01000000
              + LEAF + Planning Event Objects + A batch of strong references to planning/publication events + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.031a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + planningId +
                urn:smpte:ul:060e2b34.01010101.0d02012c.02000000
              + LEAF + Planning Id + An identifyer associated with a planning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + attributeGroups +
                urn:smpte:ul:060e2b34.01010101.0d02012d.00000000
              + NODE + Attribute groups + The definitions of attribute groups used in EBUCore + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01000000
              + NODE + Type Group + A set of attributes used to define a type + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01010000
              + LEAF + Type Group Thesaurus + The thesaurus from which the type originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01020000
              + LEAF + Type Group Label + A universal label or free text to express the type + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01030000
              + LEAF + Type Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01040000
              + LEAF + Type Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01050000
              + LEAF + Type Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01060000
              + LEAF + Type Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01070000
              + LEAF + Type Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + typeGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01080000
              + LEAF + Type Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02000000
              + NODE + Format Group + A set of attributes used to define a format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02010000
              + LEAF + Format Group Thesaurus + The thesaurus from which the format originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02020000
              + LEAF + Format Group Label + A universal label or free text to express the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02030000
              + LEAF + Format Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02040000
              + LEAF + Format Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02050000
              + LEAF + Format Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02060000
              + LEAF + Format Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02070000
              + LEAF + Format Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02080000
              + LEAF + Format Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroup +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03000000
              + NODE + Status Group + A set of attributes used to define a status + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupThesaurus +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03010000
              + LEAF + Status Group Thesaurus + The thesaurus from which the status originates + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLabel +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03020000
              + LEAF + Status Group Label + A universal label or free text to express the status + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLink +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03030000
              + LEAF + Status Group Link + A link to a term in a classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupUL +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03040000
              + LEAF + Status Group UL + A UL to a label in the label register + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03050000
              + LEAF + Status Group Definition + A definition associated with the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03060000
              + LEAF + Status Group Language Code + The BCP-47 code of the language used to express the term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupNamespace +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03070000
              + LEAF + Status Group Namespace + The namespace of the classification scheme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + statusGroupSource +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03080000
              + LEAF + Status Group Source + The authority who has provided the classification scheme of free text term + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textualAnnotation +
                urn:smpte:ul:060e2b34.01010101.0d02012e.00000000
              + NODE + Textual Annotation + A set of attributes to provide a a textual annotation + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + text +
                urn:smpte:ul:060e2b34.01010101.0d02012e.01000000
              + LEAF + Text + Free text in a textual annotation + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02012e.02000000
              + LEAF + Text Language Code + Codes assigned by RFC 5646 /BCP 47 for the identification of languages. The language in which the annotation is expressed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicLink +
                urn:smpte:ul:060e2b34.01010101.0d02012f.00000000
              + NODE + Basic Link + A set of attributes to provide a a link in the form of a URI such as a URL + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + basicLinkUri +
                urn:smpte:ul:060e2b34.01010101.0d02012f.01000000
              + LEAF + Basic Link Uri + The URI value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + format +
                urn:smpte:ul:060e2b34.01010101.0d020130.00000000
              + NODE + Format + A set of attributes to provide structural metadata defining the format of material associated with a resource + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatID +
                urn:smpte:ul:060e2b34.01010101.0d020130.01000000
              + LEAF + Format ID + An identifier attributed to the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020130.02000000
              + LEAF + Format Version ID + An identifier attributed to a version of the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatName +
                urn:smpte:ul:060e2b34.01010101.0d020130.03000000
              + LEAF + Format Name + A name attributed to the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020130.04000000
              + LEAF + Format Definition + A definition associated with the format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatYearCreated +
                urn:smpte:ul:060e2b34.01010101.0d020130.05000000
              + LEAF + Format Year Created + The year when this format was defined for the first time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDateCreated +
                urn:smpte:ul:060e2b34.01010101.0d020130.06000000
              + LEAF + Format Date Created + The date when this format was defined for the first time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatOverallDurationTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.07000000
              + LEAF + Format Overall Duration Set + The overall duration of the material + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatEditRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.08000000
              + LEAF + Format Edit Rate Set + A strong reference to a rational object to express an edit rate + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatContainerFormatObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.09000000
              + LEAF + Format Container Format Set + A strong reference to a container format object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMediumObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.0a000000
              + LEAF + Format Medium Set + A strong reference to a medium object + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01130000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatPackageInfoObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.0b000000
              + LEAF + Format Package Info Set + A string reference to a package info object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01140000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatAudioFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0c000000
              + LEAF + Format Audio Format Sets + A batch of strong reference to an audioFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03220000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatVideoFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0d000000
              + LEAF + Format Video Format Sets + A batch of strong reference to a videoFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03230000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatImageFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0e000000
              + LEAF + Format Image Format Sets + A batch of strong reference to a imageFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03240000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDataFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.0f000000
              + LEAF + Format Data Format Sets + A batch of strong reference to a dataFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03250000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatSigningFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.10000000
              + LEAF + Format Signing Format Sets + A batch of strong reference to a signingFormat object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03260000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.11000000
              + LEAF + Format Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.12000000
              + LEAF + Format Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.13000000
              + LEAF + Format Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.14000000
              + LEAF + Format Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.15000000
              + LEAF + Format Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.16000000
              + LEAF + Format Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.17000000
              + LEAF + Format Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.18000000
              + LEAF + Format Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020130.19000000
              + LEAF + Format Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1a000000
              + LEAF + Format Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1b000000
              + LEAF + Format Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1c000000
              + LEAF + Format Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.1d000000
              + LEAF + Format Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDateModifiedObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.1e000000
              + LEAF + Format Modified Date + A strong reference to a date when the format definition was modified + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01240000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.1f000000
              + LEAF + Format Value Set + A strong reference to a Value defining the format as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020130.20000000
              + LEAF + Format Type Group Set + A strong reference to a type group to define the type of format being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatAudioFormatExtendedObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.21000000
              + LEAF + Format Audio Format Extended Sets + A batch of strong references to extended audio format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03340000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatStartTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.22000000
              + LEAF + Format Start Time Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatEndTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.23000000
              + LEAF + Format End Time Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatDurationTimeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.24000000
              + LEAF + Format Duration Sets + A batch of strong references to time objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03470000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMetadataFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.25000000
              + LEAF + Format Metadata Format Sets + A batch of strong references to metadata format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03480000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatTimecodeFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.26000000
              + LEAF + Format Duration Sets + A batch of strong references to timecode format objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03490000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + formatMediumObjects +
                urn:smpte:ul:060e2b34.01010101.0d020130.27000000
              + LEAF + Format Medium Sets + To list the different medium in which the media resource is available. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormat +
                urn:smpte:ul:060e2b34.01010101.0d020131.00000000
              + NODE + Video Format + A set of attributes defining the video format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020131.01000000
              + LEAF + Video Format ID + An identifier attributed to the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020131.02000000
              + LEAF + Video Format Version ID + An identifier attributed to a version of the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020131.03000000
              + LEAF + Video Format Name + A name attributed to the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020131.04000000
              + LEAF + Video Format Definition + A definition associated with the video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.05000000
              + LEAF + Video Bit Rate Set + The average bit rate by default in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoMaxBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.06000000
              + LEAF + Video Max Bit Rate Set + The maximum bit rate by default in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoBitRateMode +
                urn:smpte:ul:060e2b34.01010101.0d020131.07000000
              + LEAF + Video Bit Rate Mode + the bitrate mode: constant, variable, or none if unknown + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoScanningFormat +
                urn:smpte:ul:060e2b34.01010101.0d020131.08000000
              + LEAF + Video Scanning Format + A code that specifies the scanning structure e.g. progressive or interlaced + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoScanningOrder +
                urn:smpte:ul:060e2b34.01010101.0d020131.09000000
              + LEAF + Video Scanning Order + to express the scanning order from top or bottom + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoActiveLines +
                urn:smpte:ul:060e2b34.01010101.0d020131.0a000000
              + LEAF + Video Active Lines + The number of active picture lines + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.0b000000
              + LEAF + Video Noise Filter Flag + A flag to indicate if a noise filter was used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.0c000000
              + LEAF + Video Noise Filter Vendor Id + An identifier associated with a noise filter vendor + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01640000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + video3DFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.0d000000
              + LEAF + Video 3D Flag + A flag to indicate if the video is for stereoscopic rendition + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoAspectRatioObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.0e000000
              + LEAF + Video Aspect Ratio Sets + A batch of strong references to express aspect ratios of the image of different types + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03350000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFrameRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.0f000000
              + LEAF + Video Frame Rate Set + A strong reference to a rational object to define the frame rate + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoHeightObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.10000000
              + LEAF + Video Height Sets + A strong reference to a height object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03360000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoWidthObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.11000000
              + LEAF + Video Width Sets + A strong reference to a width object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.12000000
              + LEAF + Video Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.13000000
              + LEAF + Video Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.14000000
              + LEAF + Video Track Sets + A batch of strong references to define video track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020131.15000000
              + LEAF + Video Presence Flag + A flag to signal the presence of video in the material + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoRegionDelimXObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.16000000
              + LEAF + Video Region Delim X Set + A strong reference to a dimension object to define the abscisse coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoRegionDelimYObject +
                urn:smpte:ul:060e2b34.01010101.0d020131.17000000
              + LEAF + Video Region Delim Y Set + A strong reference to a dimension object to define the ordinate coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020131.18000000
              + LEAF + Video Format Profile + To define a profile of a video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020131.19000000
              + LEAF + Video Format Profile level + To define a level of a video format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNote +
                urn:smpte:ul:060e2b34.01010101.0d020131.1a000000
              + LEAF + Video Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1b000000
              + LEAF + Video Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1c000000
              + LEAF + Video Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1d000000
              + LEAF + Video Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1e000000
              + LEAF + Video Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.1f000000
              + LEAF + Video Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.20000000
              + LEAF + Video Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.21000000
              + LEAF + Video Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.22000000
              + LEAF + Video Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020131.23000000
              + LEAF + Video Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.24000000
              + LEAF + Video Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.25000000
              + LEAF + Video Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.26000000
              + LEAF + Video Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.27000000
              + LEAF + Video Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoFilterObjects +
                urn:smpte:ul:060e2b34.01010101.0d020131.28000000
              + LEAF + Video Filter Sets + To identify filters that have been applied to the video resource. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormat +
                urn:smpte:ul:060e2b34.01010101.0d020132.00000000
              + NODE + Image Format + A set of attributes defining the image format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020132.01000000
              + LEAF + Image Format ID + An identifier attributed to the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020132.02000000
              + LEAF + Image Format Version ID + An identifier attributed to the version of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020132.03000000
              + LEAF + Image Format Name + A name attributed to the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020132.04000000
              + LEAF + Image Format Definition + A definition associated with the image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageOrientation +
                urn:smpte:ul:060e2b34.01010101.0d020132.05000000
              + LEAF + Image Orientation + The orientation of the picture (e.g. portrait or landscape) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageAspectRatioObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.06000000
              + LEAF + Image Aspect Ratio Set + A strong reference to an aspect ratio of the image + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.07000000
              + LEAF + Image Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.08000000
              + LEAF + Image Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageHeightObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.09000000
              + LEAF + Image Height Set + A strong reference to a height object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageWidthObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0a000000
              + LEAF + Image Width Set + A strong reference to a width object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imagePresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020132.0b000000
              + LEAF + Image Presence Flag + A flag to indicate the presence of an image + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageRegionDelimXObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0c000000
              + LEAF + Image Region Delim X Set + A strong reference to a dimension object to define the abscisse coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageRegionDelimYObject +
                urn:smpte:ul:060e2b34.01010101.0d020132.0d000000
              + LEAF + Image region Delim Y Set + A strong reference to a dimension object to define the ordinate coordinate of an area associated with width and height objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020132.0e000000
              + LEAF + Image Format Profile + To define a profile of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020132.0f000000
              + LEAF + Image Format Profile Level + To define a level of an image format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageNote +
                urn:smpte:ul:060e2b34.01010101.0d020132.10000000
              + LEAF + Image Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.11000000
              + LEAF + Image Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.12000000
              + LEAF + Image Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.13000000
              + LEAF + Image Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.14000000
              + LEAF + Image Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.15000000
              + LEAF + Image Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.16000000
              + LEAF + Image Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.17000000
              + LEAF + Image Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.18000000
              + LEAF + Image Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020132.19000000
              + LEAF + Image Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1a000000
              + LEAF + Image Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1b000000
              + LEAF + Image Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1c000000
              + LEAF + Image Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + imageTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020132.1d000000
              + LEAF + Image Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormat +
                urn:smpte:ul:060e2b34.01010101.0d020133.00000000
              + NODE + Audio Format + A set of attributes defining the audio format of the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020133.01000000
              + LEAF + Audio Format ID + An identifier attributed to the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020133.02000000
              + LEAF + Audio Format Version ID + An identifier attributed to the version of the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020133.03000000
              + LEAF + Audio Format Name + A name attributed to the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020133.04000000
              + LEAF + Audio Format Definition + A definition associated with the audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackConfiguration +
                urn:smpte:ul:060e2b34.01010101.0d020133.05000000
              + LEAF + Audio Track Configuration + A description of the audio track configuration (e.g. R48 & R123 EBU) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingSize +
                urn:smpte:ul:060e2b34.01010101.0d020133.06000000
              + LEAF + Audio Sampling Size + The maximum number of significant bits for the value without compression. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingType +
                urn:smpte:ul:060e2b34.01010101.0d020133.07000000
              + LEAF + Audio Sampling Type + The type of samples + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTotalNumberOfChannels +
                urn:smpte:ul:060e2b34.01010101.0d020133.08000000
              + LEAF + Audio Total Number Of Channels + The total number of audio channels/tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.09000000
              + LEAF + Audio Bit Rate Set + The average bit rate in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMaxBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0a000000
              + LEAF + Audio Max Bit Rate Set + The maximum bit rate in bits per second + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBitRateMode +
                urn:smpte:ul:060e2b34.01010101.0d020133.0b000000
              + LEAF + Audio Bit Rate Mode + The audio bit rate mode: constant, variable, or none if unknown + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioSamplingRateObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0c000000
              + LEAF + Audio Sampling Rate Set + A strong reference toa rational to express the rate at which audio is sampled (in samples per second) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioEncodingObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0d000000
              + LEAF + Audio Encoding Set + A strong reference to an encoding object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020133.0e000000
              + LEAF + Audio Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.0f000000
              + LEAF + Audio Track Sets + A batch of strong references to track objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020133.10000000
              + LEAF + Audio Presence Flag + A flag to indicate the presence of audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020133.11000000
              + LEAF + Audio Format Profile + To define a profile of an audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020133.12000000
              + LEAF + Audio Format Profile Level + To define a level of an audio format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioNote +
                urn:smpte:ul:060e2b34.01010101.0d020133.13000000
              + LEAF + Audio Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.14000000
              + LEAF + Audio Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.15000000
              + LEAF + Audio Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.16000000
              + LEAF + Audio Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.17000000
              + LEAF + Audio Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.18000000
              + LEAF + Audio Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.19000000
              + LEAF + Audio Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1a000000
              + LEAF + Audio Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1b000000
              + LEAF + Audio Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1c000000
              + LEAF + Audio Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1d000000
              + LEAF + Audio Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1e000000
              + LEAF + Audio Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.1f000000
              + LEAF + Audio Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.20000000
              + LEAF + Audio Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioDescriptionPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020133.21000000
              + LEAF + Audio Description Presence Flag + To signal the presence of audioDescription + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFilterObjects +
                urn:smpte:ul:060e2b34.01010101.0d020133.22000000
              + LEAF + Audio Filter Sets + To describe a filter applied to audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.034f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + track +
                urn:smpte:ul:060e2b34.01010101.0d020134.00000000
              + NODE + Track + A set of attributes describing tracks (audio and video) in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackID +
                urn:smpte:ul:060e2b34.01010101.0d020134.01000000
              + LEAF + Track ID + An identifier attributed to the track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackName +
                urn:smpte:ul:060e2b34.01010101.0d020134.02000000
              + LEAF + Track Name + A name attributed to the track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020134.03000000
              + LEAF + Track Language Code + Codes assigned by RFC 5646/BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + trackTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020134.04000000
              + LEAF + Track Type Group Set + A strong reference to an attribute type group to define the type of the track being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormat +
                urn:smpte:ul:060e2b34.01010101.0d020135.00000000
              + NODE + Data Format + A set of attributes to describe data carried in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020135.01000000
              + LEAF + Data Format ID + An identifier attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020135.02000000
              + LEAF + Data Format Version ID + A version identifier attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020135.03000000
              + LEAF + Data Format Name + A name attributed to the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020135.04000000
              + LEAF + Data Format Definition + A definition of the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackId +
                urn:smpte:ul:060e2b34.01010101.0d020135.05000000
              + LEAF + Data Track ID + An identifier associated to the data track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020135.06000000
              + LEAF + Data Track Name + A name associated to the data track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTrackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020135.07000000
              + LEAF + Data Track Language Code + A language associated to the data track based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020135.08000000
              + LEAF + Data Presence Flag + A flag to indicate the presence of data + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.09000000
              + LEAF + Captioning Sets + A batch of strong references to captioning objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03390000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.0a000000
              + LEAF + Subtitling Sets + A batch of strong references to subtitling objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.0b000000
              + LEAF + Ancillary Data Sets + A batch of strong references to ancillary data objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020135.0c000000
              + LEAF + Data Codec Object + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020135.0d000000
              + LEAF + Data Format Profile + To define a profile of a data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020135.0e000000
              + LEAF + Data Format Profile Level + To define a level of a data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataNote +
                urn:smpte:ul:060e2b34.01010101.0d020135.0f000000
              + LEAF + Data Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.10000000
              + LEAF + Data Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.11000000
              + LEAF + Data Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.12000000
              + LEAF + Data Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.13000000
              + LEAF + Data Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.14000000
              + LEAF + Data Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.15000000
              + LEAF + Data Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.16000000
              + LEAF + Data Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.17000000
              + LEAF + Data Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020135.18000000
              + LEAF + Data Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.19000000
              + LEAF + Data Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1a000000
              + LEAF + Data Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1b000000
              + LEAF + Data Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dataTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020135.1c000000
              + LEAF + Data Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioning +
                urn:smpte:ul:060e2b34.01010101.0d020136.00000000
              + NODE + Captioning + A set of attributes to describe captioning in the Material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020136.01000000
              + LEAF + Captioning Format ID + An Identifier attributed to the captioning format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020136.02000000
              + LEAF + Captioning Format Name + A name attributed to the captioning format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020136.03000000
              + LEAF + Captioning Source Uri + A URI from where a captioning file (e.g. xml) can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020136.04000000
              + LEAF + Captioning Track ID + An Identifier attributed to the captioning track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020136.05000000
              + LEAF + Captioning Track Name + A name attributed to the captioning track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020136.06000000
              + LEAF + Captioning Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + closedCaptioningFlag +
                urn:smpte:ul:060e2b34.01010101.0d020136.07000000
              + LEAF + Closed Captioning Flag + A flag signalling the presence of captioning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020136.08000000
              + LEAF + Captioning Type Group Set + A strong reference to an attribute type group to define the type of captioning being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020136.09000000
              + LEAF + Captioning Format Group Set + A strong reference to an attribute format group to define the format of captioning being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020136.0a000000
              + LEAF + Captioning Presence Flag + A flag to indicate the presence of captioning + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + captioningFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020136.0b000000
              + LEAF + Captioning Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitling +
                urn:smpte:ul:060e2b34.01010101.0d020137.00000000
              + NODE + Subtitling + A set of attributes to describe subtitling in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020137.01000000
              + LEAF + Subtitling Format ID + An Identifier attributed to the subtitling format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020137.02000000
              + LEAF + Subtitling Format Name + A name attributed to the subtitling format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020137.03000000
              + LEAF + Subtitling Source Uri + A URI from where a subtitling file (e.g. xml) can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020137.04000000
              + LEAF + Subtitling Track ID + An Identifier attributed to the subtitling track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020137.05000000
              + LEAF + Subtitling Track Name + A name attributed to the subtitling track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020137.06000000
              + LEAF + Subtitling Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + closedSubtitlingFlag +
                urn:smpte:ul:060e2b34.01010101.0d020137.07000000
              + LEAF + Closed Subtitling Flag + A flag signalling the presence of closed subtitling + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020137.08000000
              + LEAF + Subtitling Type Group Set + A strong reference to an attribute type group to define the type of subtitling being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020137.09000000
              + LEAF + Subtitling Format Group Set + A strong reference to an attribute format group to define the format of subtitling being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020137.0a000000
              + LEAF + Subtitling Presence Flag + A flag to indicate the presence of subtitling + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + subtitlingFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020137.0b000000
              + LEAF + Subtitling Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryData +
                urn:smpte:ul:060e2b34.01010101.0d020138.00000000
              + NODE + Ancillary Data + A set of attributes to describe ancillary data in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020138.01000000
              + LEAF + Ancillary Data Format Id + An identifier associated with the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020138.02000000
              + LEAF + Ancillary Data Format Name + A name associated with the data format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + DID +
                urn:smpte:ul:060e2b34.01010101.0d020138.03000000
              + LEAF + DID + Data Identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + SDID +
                urn:smpte:ul:060e2b34.01010101.0d020138.04000000
              + LEAF + SDID + Secondary Data Identifer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + lineNumber +
                urn:smpte:ul:060e2b34.01010101.0d020138.05000000
              + LEAF + Line Number + The line number of this stored ANC packet according to SMPTE 377M-2004 E.1.5 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ANCWrappingTypeObject +
                urn:smpte:ul:060e2b34.01010101.0d020138.06000000
              + LEAF + ANC Wrapping Type Set + A strong reference to an attribute type group to define the type of ANC wrapping + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ancillaryDataFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020138.07000000
              + LEAF + Ancillary Data Format Profile + To specify an encoding profile + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormat +
                urn:smpte:ul:060e2b34.01010101.0d020139.00000000
              + NODE + Signing Format + A set of attributes to describe signing in the material + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatID +
                urn:smpte:ul:060e2b34.01010101.0d020139.01000000
              + LEAF + Signing Format ID + An Identifier attributed to the signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatVersionID +
                urn:smpte:ul:060e2b34.01010101.0d020139.02000000
              + LEAF + Signing Format Version ID + An Identifier attributed to the version of signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020139.03000000
              + LEAF + Signing Format Name + A name attributed to the signing format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackID +
                urn:smpte:ul:060e2b34.01010101.0d020139.04000000
              + LEAF + Signing Track ID + An identifier associated with a signing track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackName +
                urn:smpte:ul:060e2b34.01010101.0d020139.05000000
              + LEAF + Signing Track Name + An name associated with a signing track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTrackLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d020139.06000000
              + LEAF + Signing Track Language Code + Codes assigned by RFC 5646 / BCP 47 for the identification of languages + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingSourceUri +
                urn:smpte:ul:060e2b34.01010101.0d020139.07000000
              + LEAF + Signing Source Uri + A URI from where a signing source file can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020139.08000000
              + LEAF + Signing Type Group Set + A strong reference to an attribute type group to define the type of signing being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020139.09000000
              + LEAF + Signing Format Group Set + A strong reference to an attribute format group to define the format of signing being used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + signingPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020139.0a000000
              + LEAF + Signing Presence Flag + A flag to indicate the presence of signing + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalBasicDatatypes +
                urn:smpte:ul:060e2b34.01010101.0d02013a.00000000
              + NODE + Technical Basic Attributes + A group of definitions of technical attributes of basic data types + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeString +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01000000
              + NODE + Technical Attribute String + A technical attribute of type string + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01010000
              + LEAF + Technical Attribute StringValue + The value expressed as a string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01020000
              + LEAF + Technical Attribute String Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeStringFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01030000
              + LEAF + Technical Attribute String Format Group Set + A strong reference to a type group to define the format of the string technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02000000
              + NODE + Technical Attribute Int8 + A technical attribute of type byte + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02010000
              + LEAF + Technical Attribute Int8Value + The value expressed as a byte + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02020000
              + LEAF + Technical Attribute Int8 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt8Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02030000
              + LEAF + Technical Attribute Int8 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03000000
              + NODE + Technical Attribute Int16 + A technical attribute of type short + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03010000
              + LEAF + Technical Attribute Int16Value + The value expressed as a short + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03020000
              + LEAF + Technical Attribute Int16 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt16Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03030000
              + LEAF + Technical Attribute Int16 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04000000
              + NODE + Technical Attribute Int32 + A technical attribute of type integer + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04010000
              + LEAF + Technical Attribute Int32Value + The value expressed as an integer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04020000
              + LEAF + Technical Attribute Int32 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt32Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04030000
              + LEAF + Technical Attribute Int32 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05000000
              + NODE + Technical Attribute Int64 + A technical attribute of type long + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05010000
              + LEAF + Technical Attribute Int64Value + The value expressed as a long + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05020000
              + LEAF + Technical Attribute Int64 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeInt64Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05030000
              + LEAF + Technical Attribute Int64 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06000000
              + NODE + Technical Attribute UInt8 + A technical attribute of type unsigned byte + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06010000
              + LEAF + Technical Attribute UInt8Value + The value expressed as an unsigned byte + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06020000
              + LEAF + Technical Attribute UInt8 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt8Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06030000
              + LEAF + Technical Attribute UInt8 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07000000
              + NODE + Technical Attribute UInt16 + A technical attribute of type unsigned short + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07010000
              + LEAF + Technical Attribute UInt16Value + The value expressed as an unsigned short + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07020000
              + LEAF + Technical Attribute UInt16 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt16Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07030000
              + LEAF + Technical Attribute UInt16 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08000000
              + NODE + Technical Attribute UInt32 + A technical attribute of type unsigned integer + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08010000
              + LEAF + Technical Attribute UInt32Value + The value expressed as an unsigned integer + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08020000
              + LEAF + Technical Attribute UInt32 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt32Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08030000
              + LEAF + Technical Attribute UInt32 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64 +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09000000
              + NODE + Technical Attribute UInt64 + A technical attribute of type unsigned long + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64Value +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09010000
              + LEAF + Technical Attribute UInt64Value + The value expressed as an unsigned long + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64TypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09020000
              + LEAF + Technical Attribute UInt64 Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeUInt64Unit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09030000
              + LEAF + Technical Attribute UInt64 Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloat +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a000000
              + NODE + Technical Attribute Float + A technical attribute of type float + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a010000
              + LEAF + Technical Attribute FloatValue + The value expressed as a float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a020000
              + LEAF + Technical Attribute Float Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeFloatUnit +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a030000
              + LEAF + Technical Attribute Float Unit + The unit of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRational +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b000000
              + NODE + Technical Attribute Rational + A technical attribute of type rational + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRationalTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b010000
              + LEAF + Technical Attribute Rational Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeRationalValueObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b020000
              + LEAF + Technical Attribute Rational Value + A strong reference to a rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01120000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURI +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c000000
              + NODE + Technical Attribute AnyURI + A technical attribute of type Unique Resource Identifier + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURIValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c010000
              + LEAF + Technical Attribute AnyURIValue + The value expressed as a Unique Resource Identifier + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeAnyURITypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c020000
              + LEAF + Technical Attribute AnyURI Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBoolean +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d000000
              + NODE + Technical Attribute Boolean + A technical attribute of type boolean + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBooleanValue +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d010000
              + LEAF + Technical Attribute BooleanValue + The value expressed as a boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + technicalAttributeBooleanTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d020000
              + LEAF + Technical Attribute Boolean Type Group Set + A strong reference to a type group to define the name of the technical attribute + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimension +
                urn:smpte:ul:060e2b34.01010101.0d02013b.00000000
              + NODE + Dimension + A set of attributes to define a dimension + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimensionValue +
                urn:smpte:ul:060e2b34.01010101.0d02013b.01000000
              + LEAF + Dimension Value + The value of the dimension as contextually defined + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dimensionUnit +
                urn:smpte:ul:060e2b34.01010101.0d02013b.02000000
              + LEAF + Dimension Unit + The unit in which the dimension is expressed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageInfo +
                urn:smpte:ul:060e2b34.01010101.0d02013c.00000000
              + NODE + Package Info + A set of attribute to provide information on the package + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageSize +
                urn:smpte:ul:060e2b34.01010101.0d02013c.01000000
              + LEAF + Package Size + A strong reference to a dimension object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageName +
                urn:smpte:ul:060e2b34.01010101.0d02013c.02000000
              + LEAF + Package Name + The name of the package + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageLocatorObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.03000000
              + LEAF + Package Locator + A strong reference to a locator from where the package can be accessed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mimeTypeObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.04000000
              + LEAF + Mime Type Set + The medium used to carry the resource + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.05000000
              + LEAF + Hash Set + A strong reference to a hash object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + packageOverallBitRateObject +
                urn:smpte:ul:060e2b34.01010101.0d02013c.06000000
              + LEAF + Package Overall Bitrate Set + To specify the overall bitrate of a mixed package composed of e.g. audio, video and data. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + medium +
                urn:smpte:ul:060e2b34.01010101.0d02013d.00000000
              + NODE + Medium + A set of attributes to describe a medium + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mediumID +
                urn:smpte:ul:060e2b34.01010101.0d02013d.01000000
              + LEAF + MediumIID + An identifier attributed to a medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mediumTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013d.02000000
              + LEAF + Medium Type Group Set + A strong reference to an attribute type group to define the type of medium + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codec +
                urn:smpte:ul:060e2b34.01010101.0d02013e.00000000
              + NODE + Codec + A set of attributes used to described a codec (hardware/software) + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecName +
                urn:smpte:ul:060e2b34.01010101.0d02013e.01000000
              + LEAF + Codec Name + The name of the codec (hardware/software) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecVendor +
                urn:smpte:ul:060e2b34.01010101.0d02013e.02000000
              + LEAF + Codec Vendor + The name of the vendor + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecVersion +
                urn:smpte:ul:060e2b34.01010101.0d02013e.03000000
              + LEAF + Codec Version + The version of the codec + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecfamily +
                urn:smpte:ul:060e2b34.01010101.0d02013e.04000000
              + LEAF + Codec Family + The family of products to which the codec belongs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecIdentifier +
                urn:smpte:ul:060e2b34.01010101.0d02013e.05000000
              + LEAF + Codec Identifier + An identifier attributed to a codec + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecUrl +
                urn:smpte:ul:060e2b34.01010101.0d02013e.06000000
              + LEAF + Codec URL + A URL where more information can be found about the codec. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + codecTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02013e.07000000
              + LEAF + Codec Type Group Set + To specify a kind of codec. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + rational +
                urn:smpte:ul:060e2b34.01010101.0d02013f.00000000
              + NODE + Rational + A set of attributes used to define a rational + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nominalValue +
                urn:smpte:ul:060e2b34.01010101.0d02013f.01000000
              + LEAF + Nominal Value + The nominal value of the rational expression + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + factorNumerator +
                urn:smpte:ul:060e2b34.01010101.0d02013f.02000000
              + LEAF + Factor Numerator + The numerator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + factorDenominator +
                urn:smpte:ul:060e2b34.01010101.0d02013f.03000000
              + LEAF + Factor Denominator + The denominator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatio +
                urn:smpte:ul:060e2b34.01010101.0d020140.00000000
              + NODE + Aspect Ratio + A set of attributes to define an aspect ratio + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioNumerator +
                urn:smpte:ul:060e2b34.01010101.0d020140.01000000
              + LEAF + Aspect Ratio Factor Numerator + The numerator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioDenominator +
                urn:smpte:ul:060e2b34.01010101.0d020140.02000000
              + LEAF + Aspect Ratio Factor Denominator + The denominator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + aspectRatioTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020140.03000000
              + LEAF + Aspect Ratio Type Group Set + A strong reference to an attribute type group to specify the type of aspect ratio being described + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + height +
                urn:smpte:ul:060e2b34.01010101.0d020141.00000000
              + NODE + Height + A set of attributes to define a Height + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + heightValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020141.01000000
              + LEAF + Height Value Set + A strong reference to a dimension to define the value and unit of the height + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + heightTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020141.02000000
              + LEAF + Height Type Group Set + A strong reference to an attribute type group to specify the type of height + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + width +
                urn:smpte:ul:060e2b34.01010101.0d020142.00000000
              + NODE + Width + A set of attributes to define a Width + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + widthValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020142.01000000
              + LEAF + Width Value Set + A strong reference to a dimension to define the value and unit of the width + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + widthTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020142.02000000
              + LEAF + Width Type Group Set + A strong reference to an attribute type group to specify the type of width + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + part +
                urn:smpte:ul:060e2b34.01010101.0d020143.00000000
              + NODE + Part + A set of attributes used to describe a part + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d020143.01000000
              + LEAF + Part Metadata Set + A strong reference to the part metadata set + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01180000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetadata +
                urn:smpte:ul:060e2b34.01010101.0d020144.00000000
              + NODE + Part Metadata + A set of attributes to provide the metadata describing a part + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partID +
                urn:smpte:ul:060e2b34.01010101.0d020144.01000000
              + LEAF + Part ID + An Identifier associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partName +
                urn:smpte:ul:060e2b34.01010101.0d020144.02000000
              + LEAF + Part Name + An name associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020144.03000000
              + LEAF + Part Definition + An definition associated with a part/segment or clip + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partStartTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.04000000
              + LEAF + Part Start Time Object + To express the start time of a part + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partDurationTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.05000000
              + LEAF + Part Duration Object + To express the duration of a part + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partNumber +
                urn:smpte:ul:060e2b34.01010101.0d020144.06000000
              + LEAF + Part Number + The part number + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partTotalNumber +
                urn:smpte:ul:060e2b34.01010101.0d020144.07000000
              + LEAF + Part Total Number + The total number of parts + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.08000000
              + LEAF + Part Type Group Set + The strong reference to a type group to define a type of Part (e.g. editorial or technical) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + partMetaObject +
                urn:smpte:ul:060e2b34.01010101.0d020144.09000000
              + LEAF + Part Meta Set + A strong reference to a core metadata object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01010000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + ebucoreObject +
                urn:smpte:ul:060e2b34.01010101.0d020145.00000000
              + NODE + Ebucore Set + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hash +
                urn:smpte:ul:060e2b34.01010101.0d020146.00000000
              + NODE + Hash + A set of attributes to define a hash vector + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020146.01000000
              + LEAF + Hash Value Set + A strong reference to a value of the hash vector + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + hashFunctionTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020146.02000000
              + LEAF + Hash Function Type Group Set + A strong reference to a type group to define the type of hash function used + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locator +
                urn:smpte:ul:060e2b34.01010101.0d020147.00000000
              + NODE + Locator + A set of attributes to define a locator + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locatorValueObject +
                urn:smpte:ul:060e2b34.01010101.0d020147.01000000
              + LEAF + Locator Value Set + A strong reference to a value of locator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + locatorTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020147.02000000
              + LEAF + Locator Type Group Set + A strong reference to a type group to define the type of locator + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormat +
                urn:smpte:ul:060e2b34.01010101.0d020148.00000000
              + NODE + Container Format + A set of attributes to define the format of a container + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020148.01000000
              + LEAF + Container Format Id + An Id associated with a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020148.02000000
              + LEAF + Container Format Name + A strong reference to a format group to define the format of the container + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerCodecObject +
                urn:smpte:ul:060e2b34.01010101.0d020148.03000000
              + LEAF + Container Codec Set + A strong reference to a codec object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01150000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020148.04000000
              + LEAF + Container Format Version Id + An Id associated with a container format version + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatProfile +
                urn:smpte:ul:060e2b34.01010101.0d020148.05000000
              + LEAF + Container Format Profile + A profile of a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerFormatProfileLevel +
                urn:smpte:ul:060e2b34.01010101.0d020148.06000000
              + LEAF + Container Format Profile Level + A level of a container format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerNote +
                urn:smpte:ul:060e2b34.01010101.0d020148.07000000
              + LEAF + Container Note + A contextual information note + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.08000000
              + LEAF + Container Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.09000000
              + LEAF + Container Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0a000000
              + LEAF + Container Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0b000000
              + LEAF + Container Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0c000000
              + LEAF + Container Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0d000000
              + LEAF + Container Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0e000000
              + LEAF + Container Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.0f000000
              + LEAF + Container Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020148.10000000
              + LEAF + Container Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.11000000
              + LEAF + Container Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.12000000
              + LEAF + Container Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.13000000
              + LEAF + Container Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020148.14000000
              + LEAF + Container Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + containerEncodingFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020148.15000000
              + LEAF + Container Encoding Format Group Set + A strong reference to a format group object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtended +
                urn:smpte:ul:060e2b34.01010101.0d020149.00000000
              + NODE + Audio Format Extended + A set of attributes to describe an extended audio format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedId +
                urn:smpte:ul:060e2b34.01010101.0d020149.01000000
              + LEAF + Audio Format Extended Id + An identifier associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedName +
                urn:smpte:ul:060e2b34.01010101.0d020149.02000000
              + LEAF + Audio Format Extended Name + A name associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020149.03000000
              + LEAF + Audio Format Extended Definition + A definition associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedVersion +
                urn:smpte:ul:060e2b34.01010101.0d020149.04000000
              + LEAF + Audio Format Extended Version + A version associated with the audio format extended + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioFormatExtendedPresenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020149.05000000
              + LEAF + Audio Format Extended Presence Flag + A flag to indicate the presence of extended audio + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.06000000
              + LEAF + Audio Programme Sets + A batch of strong references to audio programmes + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.07000000
              + LEAF + Audio Content Sets + A batch of strong references to audio contents + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.08000000
              + LEAF + Audio Object Sets + A batch of strong references to audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.09000000
              + LEAF + Audio Pack Format Sets + A batch of strong references to audio packs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.033f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0a000000
              + LEAF + Audio Channel Format Sets + A batch of strong references to audio channels + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03400000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0b000000
              + LEAF + Audio Block Format Sets + A batch of strong references to audio blocks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03410000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0c000000
              + LEAF + Audio Stream Format Sets + A batch of strong references to audio streams + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03420000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0d000000
              + LEAF + Audio Track Format Sets + A batch of strong references to audio tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03430000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDObjects +
                urn:smpte:ul:060e2b34.01010101.0d020149.0e000000
              + LEAF + Audio Track UID Sets + A batch of strong references to audio track UIDs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03440000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgramme +
                urn:smpte:ul:060e2b34.01010101.0d02014a.00000000
              + NODE + Audio Programme + A set of attributes to describe an audio programme + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeId +
                urn:smpte:ul:060e2b34.01010101.0d02014a.01000000
              + LEAF + Audio Programme Id + An identifier associated with the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeName +
                urn:smpte:ul:060e2b34.01010101.0d02014a.02000000
              + LEAF + Audio Programme Name + A name associated with the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.03000000
              + LEAF + Audio Programme Language Code + A language associated to the audio programme based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeStartTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.04000000
              + LEAF + Audio Programme Start Timecode + A start timecode point within the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeEndTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014a.05000000
              + LEAF + Audio Programme End Timecode + A end timecode point within the audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.06000000
              + LEAF + Audio Programme Type Group Set + A strong reference to a type group to define the type of audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.07000000
              + LEAF + Audio Programme Format Group Set + A strong reference to a format group to define the format of audio programme + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeAudioContentIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014a.08000000
              + LEAF + Audio Programme Audio Content IDRef Sets + A batch of references to related audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeLoudnessMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.09000000
              + LEAF + Audio Programme Loudness Metadata Set + A strong reference to the loudness at the audio programme level + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeMaxDuckingDepth +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0a000000
              + LEAF + Audio Programme Max Ducking Depth + The maximum level (in dB) any audio object in the programme can be reduced by when ducking is invoked. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioProgrammeReferenceScreenObject +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0b000000
              + LEAF + Audio Programme Reference Screen Set + To define the coordinates of a reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + IDRef +
                urn:smpte:ul:060e2b34.01010101.0d02014b.00000000
              + NODE + IDRef + A set of attributes to describe an IDRef + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + IDRefValue +
                urn:smpte:ul:060e2b34.01010101.0d02014b.01000000
              + LEAF + IDRef Value + The value of the IDRef + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMetadata +
                urn:smpte:ul:060e2b34.01010101.0d02014c.00000000
              + NODE + Loudness Metadata + A set of attributes to describe loudness + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMethod +
                urn:smpte:ul:060e2b34.01010101.0d02014c.01000000
              + LEAF + Loudness Method + The method used to measure loudness + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + integratedLoudness +
                urn:smpte:ul:060e2b34.01010101.0d02014c.02000000
              + LEAF + Integrated Loudness + The intergated loudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessRange +
                urn:smpte:ul:060e2b34.01010101.0d02014c.03000000
              + LEAF + Loudness Range + The Loudness Range (LRA) in LU + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxTruePeak +
                urn:smpte:ul:060e2b34.01010101.0d02014c.04000000
              + LEAF + Loudness Max True Peak + The max TruePeak Level (TPL) in dBTP + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxMomentary +
                urn:smpte:ul:060e2b34.01010101.0d02014c.05000000
              + LEAF + Loudness Max Momentary + The MaxMomentaryLoudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessMaxShortTerm +
                urn:smpte:ul:060e2b34.01010101.0d02014c.06000000
              + LEAF + Loudness Max Short Term + The MaxShortTermLoudness in LUFS + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessRecType +
                urn:smpte:ul:060e2b34.01010101.0d02014c.07000000
              + LEAF + Loudness Recommendation Type + Regional recommendend practice for correcting loudness levels. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + loudnessCorrectionType +
                urn:smpte:ul:060e2b34.01010101.0d02014c.08000000
              + LEAF + Loudness Correction Type + Correction type for the audio, e.g. file-based or real-time. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dialogueLoudness +
                urn:smpte:ul:060e2b34.01010101.0d02014c.09000000
              + LEAF + Dialogue Loudness + Dialogue loudness. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContent +
                urn:smpte:ul:060e2b34.01010101.0d02014d.00000000
              + NODE + Audio Content + A set of attributes to describe audio content + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentId +
                urn:smpte:ul:060e2b34.01010101.0d02014d.01000000
              + LEAF + Audio Content Id + An identifier associated with the audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentName +
                urn:smpte:ul:060e2b34.01010101.0d02014d.02000000
              + LEAF + Audio Content Name + A name associated with the audio content + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentLanguageCode +
                urn:smpte:ul:060e2b34.01010101.0d02014d.03000000
              + LEAF + Audio Content Language Code + A language associated to the audio content based on RFC 5646/BCP 47 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueIndicator +
                urn:smpte:ul:060e2b34.01010101.0d02014d.04000000
              + LEAF + Audio Content Dialogue Indicator + A flag to indicate the presence of dialogue + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentAudioObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014d.05000000
              + LEAF + Audio Content Audio Object IDRef Sets + A batch of references to related audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentLoudnessMetadataObject +
                urn:smpte:ul:060e2b34.01010101.0d02014d.06000000
              + LEAF + Audio Content Loudness Metadata Set + A strong reference to the loudness at the audio content level + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01190000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueObject +
                urn:smpte:ul:060e2b34.01010101.0d02014d.07000000
              + LEAF + Audio Content Dialogue Set + A set of values to categorise the presence of dialogue and its type. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObject +
                urn:smpte:ul:060e2b34.01010101.0d02014e.00000000
              + NODE + Audio Object + A set of attributes to describe an audio object + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectId +
                urn:smpte:ul:060e2b34.01010101.0d02014e.01000000
              + LEAF + Audio Object Id + An identifier associated with the audio object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectName +
                urn:smpte:ul:060e2b34.01010101.0d02014e.02000000
              + LEAF + Audio Object Name + A name associated with the audio object + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectStartTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014e.03000000
              + LEAF + Audio Object Start Timecode + A start timecode point when the audio object occurs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDurationTimecode +
                urn:smpte:ul:060e2b34.01010101.0d02014e.04000000
              + LEAF + Audio Object Duration Timecode + A duration in timecode from the start point and during which the audio object exists + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDialogueIndicator +
                urn:smpte:ul:060e2b34.01010101.0d02014e.05000000
              + LEAF + Audio Object Dialogue Indicator + A flag to indicate the presence of dialogue + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectImportance +
                urn:smpte:ul:060e2b34.01010101.0d02014e.06000000
              + LEAF + Audio Object Importance + A ranking indicator of importance allowing a renderer to discard an audio object below a certain threshold + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteract +
                urn:smpte:ul:060e2b34.01010101.0d02014e.07000000
              + LEAF + Audio Object Interact + A flag to indicate if user interaction is allowed + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.08000000
              + LEAF + Audio Object Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.09000000
              + LEAF + Audio Object Audio Object IDRef Sets + A batch of references to related audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectAudioTrackUIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0a000000
              + LEAF + Audio Object Audio Track UIDRef Sets + A batch of references to related audio track UIDs + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteractionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0b000000
              + LEAF + Audio Object Interaction Sets + Set of parameters for limiting the amount of interaction of an object. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03500000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioComplementaryObjectIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0c000000
              + LEAF + Audio Complementary Object IDREF Sets + A set of reference to complementary audio objects + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectDisableDucking +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0d000000
              + LEAF + Audio Object Disable Ducking + A flag to disable ducking. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormat +
                urn:smpte:ul:060e2b34.01010101.0d02014f.00000000
              + NODE + Audio Pack Format + A set of attributes to describe an audio pack + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatId +
                urn:smpte:ul:060e2b34.01010101.0d02014f.01000000
              + LEAF + Audio Pack Format Id + An identifier associated with the audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackFormatName +
                urn:smpte:ul:060e2b34.01010101.0d02014f.02000000
              + LEAF + Audio Pack Format Name + A name associated with the audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAbsoluteDistance +
                urn:smpte:ul:060e2b34.01010101.0d02014f.03000000
              + LEAF + Audio Pack Absolute Distance + The absolute distance in meters + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02014f.04000000
              + LEAF + Audio Pack Type Group Set + A strong reference to a type group to define the type of audio pack + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackImportance +
                urn:smpte:ul:060e2b34.01010101.0d02014f.05000000
              + LEAF + Audio Pack Importance + A ranking indicator of importance allowing a renderer to discard an audio pack below a certain threshold + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAudioChannelFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014f.06000000
              + LEAF + Audio Pack Audio Channel Format IDRef Sets + A batch of references to related audio channel formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioPackAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02014f.07000000
              + LEAF + Audio Pack Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormat +
                urn:smpte:ul:060e2b34.01010101.0d020150.00000000
              + NODE + Audio Channel Format + A set of attributes to describe an audio channel + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020150.01000000
              + LEAF + Audio Channel Format Id + An identifier associated with the audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020150.02000000
              + LEAF + Audio Channel Format Name + A name associated with the audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020150.03000000
              + LEAF + Audio Channel Type Group Set + A strong reference to a type group to define the type of audio channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelFrequency +
                urn:smpte:ul:060e2b34.01010101.0d020150.04000000
              + LEAF + Audio Channel Frequency + Sets a high or low cut-off frequency for the audio in Hz + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioChannelAudioBlockFormatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020150.05000000
              + LEAF + Audio Channel Audio Block Format IDRef Sets + A batch of references to related audio block formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormat +
                urn:smpte:ul:060e2b34.01010101.0d020151.00000000
              + NODE + Audio Block Format + A set of attributes to describe an audio block format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020151.01000000
              + LEAF + Audio Block Format Id + An identifier associated with the audio block format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockRTimecode +
                urn:smpte:ul:060e2b34.01010101.0d020151.02000000
              + LEAF + Audio Block RTimecode + Start time of the block expressed as a timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDurationTimecode +
                urn:smpte:ul:060e2b34.01010101.0d020151.03000000
              + LEAF + Audio Block Duration Timecode + The duration of an audio block in timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockSpeakerLabel +
                urn:smpte:ul:060e2b34.01010101.0d020151.04000000
              + LEAF + Audio Block Speaker Label + A label associated with a speaker. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPosition +
                urn:smpte:ul:060e2b34.01010101.0d020151.05000000
              + LEAF + Audio Block Position + A location in space + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.06000000
              + LEAF + Audio Block Matrix Set + A strong reference to an audio block matrix + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockGain +
                urn:smpte:ul:060e2b34.01010101.0d020151.07000000
              + LEAF + Audio Block Gain + Set a gain value for the audio samples in the audio block + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDiffuse +
                urn:smpte:ul:060e2b34.01010101.0d020151.08000000
              + LEAF + Audio Block Diffuse + Set to 1 if diffuse, 0 if direct + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockWidth +
                urn:smpte:ul:060e2b34.01010101.0d020151.09000000
              + LEAF + Audio Block Width + Width of object in degrees along azimuth axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockHeight +
                urn:smpte:ul:060e2b34.01010101.0d020151.0a000000
              + LEAF + Audio Block Height + Height of object in degrees along elevation axis + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDepth +
                urn:smpte:ul:060e2b34.01010101.0d020151.0b000000
              + LEAF + Audio Block Depth + Depth of object along a distance line as a normalised distance + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockChannelLock +
                urn:smpte:ul:060e2b34.01010101.0d020151.0c000000
              + LEAF + Audio Block Channel Lock + If set to 1 a renderer can lock the object to the nearest channel or speaker, rather than normal rendering + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPosition +
                urn:smpte:ul:060e2b34.01010101.0d020151.0d000000
              + LEAF + Audio Block Jump Position + If set to 1 the position will not be interpolated with the previous block + EBU Tech 3293 + true + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockEquation +
                urn:smpte:ul:060e2b34.01010101.0d020151.0e000000
              + LEAF + Audio Block Equation + To provide an equation + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDegree +
                urn:smpte:ul:060e2b34.01010101.0d020151.0f000000
              + LEAF + Audio Block Degree + Degree for the ambisonic component + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockOrder +
                urn:smpte:ul:060e2b34.01010101.0d020151.10000000
              + LEAF + Audio Block Order + Order for the ambisonic component + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockCartesian +
                urn:smpte:ul:060e2b34.01010101.0d020151.11000000
              + LEAF + Audio Block Cartesian + A flag set to true if cartesian coordinates used, false (default) for spherical. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.12000000
              + LEAF + Audio Block Object Divergence Set + Sets the divergence of an object where 0.0 means all sound in the direction of the object and 1.0 means all sound from the virtual objects placed at an angle set by the azimuthRange attribute value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.016f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneExclusionObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.13000000
              + LEAF + Audio Block Zone Exclusion Set + Allows 3D zones to be excluded from rendering. So any speakers that exist within the excluded zone will not be used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01700000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockScreenReferenceFlag +
                urn:smpte:ul:060e2b34.01010101.0d020151.14000000
              + LEAF + Audio Block Screen reference Flag + A flag set to true if the object is related to the screen. false otherwise. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockImportance +
                urn:smpte:ul:060e2b34.01010101.0d020151.15000000
              + LEAF + Audio Block Importance + A value from 0 to 10 (most) to indicate the importance of the object. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionObjects +
                urn:smpte:ul:060e2b34.01010101.0d020151.16000000
              + LEAF + Audio Block Position Sets + A set of user defined parameters to define a location in space. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03510000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPositionObject +
                urn:smpte:ul:060e2b34.01010101.0d020151.17000000
              + LEAF + Audio Blcok Jump Position Set + If set to 1 the position will be interpolated over a period set by the attribute interpolationLength. If set to 0 then interpolation will take the entire length of the block. An interpolationLength value of zero will mean the object jumps without interpolation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01720000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficient +
                urn:smpte:ul:060e2b34.01010101.0d020152.00000000
              + NODE + Audio Block Matrix Coefficient + A set of attributes to describe an audio block matrix coefficient + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientValue +
                urn:smpte:ul:060e2b34.01010101.0d020152.01000000
              + LEAF + Audio Block Matrix Coefficient Value + The value of an audio block matrix coefficient + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientGain +
                urn:smpte:ul:060e2b34.01010101.0d020152.02000000
              + LEAF + Audio Block Matrix Coefficient Gain + Coefficient value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientGainVar +
                urn:smpte:ul:060e2b34.01010101.0d020152.03000000
              + LEAF + Audio Block Matrix Coefficient Gain Var + A flag to indicate if the gain is variable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientPhase +
                urn:smpte:ul:060e2b34.01010101.0d020152.04000000
              + LEAF + Audio Block Matrix Coefficient Phase + Phase shift value + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientPhaseVar +
                urn:smpte:ul:060e2b34.01010101.0d020152.05000000
              + LEAF + Audio Block Matrix Coefficient Phase Var + A flag to indicate if the phase is variable + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientChannelFormatIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020152.06000000
              + LEAF + Audio Block Matrix Coefficient Channel Format IDRef Set + Sets a multiplication coefficient (value attrib) with the ID of another channel. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormat +
                urn:smpte:ul:060e2b34.01010101.0d020153.00000000
              + NODE + Audio Stream Format + A set of attributes to describe an audio stream format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020153.01000000
              + LEAF + Audio Stream Format Id + An identifier associated with the audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020153.02000000
              + LEAF + Audio Stream Format Name + A name associated with the audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamFormatFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020153.03000000
              + LEAF + Audio Stream Format Group Set + A strong reference to a format group to define the type of audio stream format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioChannelFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.04000000
              + LEAF + Audio Stream Audio Channel Format IDRef Sets + A batch of references to related audio channel formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.05000000
              + LEAF + Audio Stream Format IDRef Sets + A batch of references to related audio stream formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioStreamAudioTrackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020153.06000000
              + LEAF + Audio Stream Audio Track Format IDRef Sets + A batch of references to related audio track formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormat +
                urn:smpte:ul:060e2b34.01010101.0d020154.00000000
              + NODE + Audio Track Format + A set of attributes to describe an audio track format + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020154.01000000
              + LEAF + Audio Track Format Id + An identifier associated with the audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020154.02000000
              + LEAF + Audio Track Format Name + A name associated with the audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackFormatFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020154.03000000
              + LEAF + Audio Track Format Format Group Set + A strong reference to a format group to define the format of audio track format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioStreamFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020154.04000000
              + LEAF + Audio Track Audio Stream Format IDRef Sets + A batch of references to related audio stream formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUID +
                urn:smpte:ul:060e2b34.01010101.0d020155.00000000
              + NODE + Audio Track UID + A set of attributes to describe an audio track UID + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDValue +
                urn:smpte:ul:060e2b34.01010101.0d020155.01000000
              + LEAF + Audio Track UID Value + The value of the track UID + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDSampleRate +
                urn:smpte:ul:060e2b34.01010101.0d020155.02000000
              + LEAF + Audio Track UID Sample Rate + The sample rate of the audio track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackUIDBitDepth +
                urn:smpte:ul:060e2b34.01010101.0d020155.03000000
              + LEAF + Audio Track UID Bit Depth + The bit depth + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackMXFLookupObject +
                urn:smpte:ul:060e2b34.01010101.0d020155.04000000
              + LEAF + Audio Track MXF Lookup Set + A strong reference to an MXF lookup element + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.011a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioTrackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020155.05000000
              + LEAF + Audio Track Audio Track Format IDRef Sets + A batch of references to related audio track formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioTrackAudioPackFormatIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d020155.06000000
              + LEAF + Audio Track Audio Pack Format IDRef Sets + A batch of references to related audio pack formats + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookup +
                urn:smpte:ul:060e2b34.01010101.0d020156.00000000
              + NODE + Audio MXF Lookup + A set of attributes to describe an audio MXF lookup + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupPackageUIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.01000000
              + LEAF + Audio MXF Lookup Package UIDRef Set + A reference to a package + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupTrackIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.02000000
              + LEAF + Audio MXF LookupTrack IDRef Set + A reference to a track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioMXFLookupChannelIDRefObject +
                urn:smpte:ul:060e2b34.01010101.0d020156.03000000
              + LEAF + Audio MXF Lookup Channel IDRef Set + A reference to a channel + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrix +
                urn:smpte:ul:060e2b34.01010101.0d020157.00000000
              + NODE + Audio Block Matrix + A set of attributes to describe an audio block matrix + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockMatrixCoefficientObjects +
                urn:smpte:ul:060e2b34.01010101.0d020157.01000000
              + LEAF + Audio Block Matrix Coefficient Sets + A batch of strong references to audio block matrix coefficients + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03460000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + time +
                urn:smpte:ul:060e2b34.01010101.0d020158.00000000
              + NODE + Time + A structure to define time + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecode +
                urn:smpte:ul:060e2b34.01010101.0d020158.01000000
              + LEAF + Timecode + Time expressed as timecode + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + normalPlayTime +
                urn:smpte:ul:060e2b34.01010101.0d020158.02000000
              + LEAF + Normal Play Time + Time expressed in HH:MM:SS.mmm + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + editUnit +
                urn:smpte:ul:060e2b34.01010101.0d020158.03000000
              + LEAF + Edit Unit + Time expressed in edit units + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + textTime +
                urn:smpte:ul:060e2b34.01010101.0d020158.04000000
              + LEAF + Text Time + Time expressed as free text + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timeTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d020158.05000000
              + LEAF + Time Type Group Set + A strong reference to an attribute type group to define the type of time + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormat +
                urn:smpte:ul:060e2b34.01010101.0d020159.00000000
              + NODE + Metadata Format + A structure to define the characteristics of a metadata track + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatId +
                urn:smpte:ul:060e2b34.01010101.0d020159.01000000
              + LEAF + Metadata Format Id + The identifier of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatName +
                urn:smpte:ul:060e2b34.01010101.0d020159.02000000
              + LEAF + Metadata Format Name + The name of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d020159.03000000
              + LEAF + Metadata Format Version Id + The version identifier of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d020159.04000000
              + LEAF + Metadata Format Definition + A definition of a metadata format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.05000000
              + LEAF + Metadata Track Sets + The metadata tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.06000000
              + LEAF + Metadata Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.07000000
              + LEAF + Metadata Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.08000000
              + LEAF + Metadata Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.09000000
              + LEAF + Metadata Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0a000000
              + LEAF + Metadata Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0b000000
              + LEAF + Metadata Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0c000000
              + LEAF + Metadata Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0d000000
              + LEAF + Metadata Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0e000000
              + LEAF + Metadata Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.0f000000
              + LEAF + Metadata Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.10000000
              + LEAF + Metadata Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.11000000
              + LEAF + Metadata Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + metadataTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d020159.12000000
              + LEAF + Metadata Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormat +
                urn:smpte:ul:060e2b34.01010101.0d02015a.00000000
              + NODE + Timecode Format + A structure to define the characteristics of a timecode track + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatId +
                urn:smpte:ul:060e2b34.01010101.0d02015a.01000000
              + LEAF + Timecode Format Id + The identifier of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatName +
                urn:smpte:ul:060e2b34.01010101.0d02015a.02000000
              + LEAF + Timecode Format Name + The name of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatVersionId +
                urn:smpte:ul:060e2b34.01010101.0d02015a.03000000
              + LEAF + Timecode Format Version Id + The version identifier of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeFormatDefinition +
                urn:smpte:ul:060e2b34.01010101.0d02015a.04000000
              + LEAF + Timecode Format Definition + A definition of a timecode format + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeStartTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d02015a.05000000
              + LEAF + Timecode Start Time Set + The start timecode on a timecode track + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTrackObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.06000000
              + LEAF + Timecode Track Sets + The timecode tracks + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03380000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.07000000
              + LEAF + Timecode Technical Attribute String Sets + A batch of strong references to technical attribute objects of type string + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.08000000
              + LEAF + Timecode Technical Attribute Int8 Sets + A batch of strong references to technical attribute objects of type Int8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.09000000
              + LEAF + Timecode Technical Attribute Int16 Sets + A batch of strong references to technical attribute objects of type Int16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0a000000
              + LEAF + Timecode Technical Attribute Int32 Sets + A batch of strong references to technical attribute objects of type Int32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0b000000
              + LEAF + Timecode Technical Attribute Int64 Sets + A batch of strong references to technical attribute objects of type Int64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0c000000
              + LEAF + Timecode Technical Attribute UInt8 Sets + A batch of strong references to technical attribute objects of type UInt8 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0d000000
              + LEAF + Timecode Technical Attribute UInt16 Sets + A batch of strong references to technical attribute objects of type UInt16 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0e000000
              + LEAF + Timecode Technical Attribute UInt32 Sets + A batch of strong references to technical attribute objects of type UInt32 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0f000000
              + LEAF + Timecode Technical Attribute UInt64 Sets + A batch of strong references to technical attribute objects of type UInt64 + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.10000000
              + LEAF + Timecode Technical Attribute Float Sets + A batch of strong references to technical attribute objects of type Float + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.11000000
              + LEAF + Timecode Technical Attribute Rational Sets + A batch of strong references to technical attribute objects of type Rational + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.12000000
              + LEAF + Timecode Technical Attribute AnyURI Sets + A batch of strong references to technical attribute objects of type AnyURI + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + timecodeTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015a.13000000
              + LEAF + Timecode Technical Attribute Boolean Sets + A batch of strong references to technical attribute objects of type Boolean + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilter +
                urn:smpte:ul:060e2b34.01010101.0d02015b.00000000
              + NODE + Video Noise Filter + A structure to define the characteristics of a video noise filter + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterVendorId +
                urn:smpte:ul:060e2b34.01010101.0d02015b.01000000
              + LEAF + Video Noise Filter Vendor Id + To identify the vendor of a video noise filter + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + videoNoiseFilterTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015b.02000000
              + LEAF + Video Noise Filter Type Group Set + To specify the type of video noise filter + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audience +
                urn:smpte:ul:060e2b34.01010101.0d02015d.00000000
              + NODE + Audience + To define an audience. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceReason +
                urn:smpte:ul:060e2b34.01010101.0d02015d.01000000
              + LEAF + Audience Reason + The reason hy this audience has been selected. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceLinkToLogo +
                urn:smpte:ul:060e2b34.01010101.0d02015d.02000000
              + LEAF + Audience Link To Logo + To provide a link to a logo associated with the audience. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceNotRatedFlag +
                urn:smpte:ul:060e2b34.01010101.0d02015d.03000000
              + LEAF + Audience Not rated Flag + A flag to indicate that content was not rated. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceAdultContentFlag +
                urn:smpte:ul:060e2b34.01010101.0d02015d.04000000
              + LEAF + Audience Adult Content Flag + A flag to indicate that the media resource contains adult content. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015d.05000000
              + LEAF + Audience Type Group Set + To define the audience definition system used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015d.06000000
              + LEAF + Audience Region Sets + To define regions where the defined audience applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceExclusionRegionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015d.07000000
              + LEAF + Audience Exclusion Region Sets + To define regions where the defined audience doesn't apply + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03160000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audienceFormatGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015d.08000000
              + LEAF + Audience Format group Set + To define the audience definition system used. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filter +
                urn:smpte:ul:060e2b34.01010101.0d02015e.00000000
              + NODE + Filter + To define the characteristics of a filter. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterOrder +
                urn:smpte:ul:060e2b34.01010101.0d02015e.01000000
              + LEAF + Filter Order + To define the order of a filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015e.02000000
              + LEAF + Filter Type Group Set + To define a tyoe of filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterTrackIDRefObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015e.03000000
              + LEAF + Filter Track IDRef Sets + A set of reference to track to shich the filter applies. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03450000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterProfileTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015e.04000000
              + LEAF + Filter Profile Type Group Set + To define the profile of a filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015e.05000000
              + LEAF + Filter Setting Sets + A set of filter settings + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03520000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSetting +
                urn:smpte:ul:060e2b34.01010101.0d02015f.00000000
              + NODE + Filter Setting + To define filter settings. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingAttributeOrder +
                urn:smpte:ul:060e2b34.01010101.0d02015f.01000000
              + LEAF + Filter Setting Attribute Order + To specify the order of an attribute filter. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02015f.02000000
              + LEAF + Filter Setting Type group Set + To define a type of filter setting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeStringObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.03000000
              + LEAF + Filter Setting Technical String Sets + A technical attribute of type string. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03270000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.04000000
              + LEAF + Filter Setting Technical Byte Sets + A technical attribute of type byte. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03280000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.05000000
              + LEAF + Filter Setting Technical Short Sets + A technical attribute of type short. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03290000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.06000000
              + LEAF + Filter Setting Technical Integer Sets + A technical attribute of type integer. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032a0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.07000000
              + LEAF + Filter Setting Technical Long Sets + A technical attribute of type long. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032b0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt8Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.08000000
              + LEAF + Filter Setting Technical Unsigned Byte Sets + A technical attribute of type unsigned byte. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032c0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt16Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.09000000
              + LEAF + Filter Setting Technical Unsigned Short Sets + A technical attribute of type unsigned short. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032d0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt32Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0a000000
              + LEAF + Filter Setting Technical Unsigned Integer Sets + A technical attribute of type unsigned integer. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032e0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeUInt64Objects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0b000000
              + LEAF + Filter Setting Technical Unsigned Long Sets + A technical attribute of type unsigned long. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.032f0000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeFloatObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0c000000
              + LEAF + Filter Setting Technical Float Sets + A technical attribute of type float. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03300000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeRationalObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0d000000
              + LEAF + Filter Setting Technical Rational Sets + A technical attribute of type rational. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03310000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeAnyURIObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0e000000
              + LEAF + Filter Setting Technical anyURI Sets + A technical attribute of type anyURI. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03320000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + filterSettingTechnicalAttributeBooleanObjects +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0f000000
              + LEAF + Filter Setting Technical Boolean Sets + A technical attribute of type boolean. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03330000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreen +
                urn:smpte:ul:060e2b34.01010101.0d020160.00000000
              + NODE + Reference Screen + Specification of a reference/production/monitoring screen size for the audioProgramme. If the reference screen-size is not given, a default screen-size is implicitly defined. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenAspectRatio +
                urn:smpte:ul:060e2b34.01010101.0d020160.01000000
              + LEAF + Reference Screen Aspect Ratio + To specify the aspect ration of the reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePositionObject +
                urn:smpte:ul:060e2b34.01010101.0d020160.02000000
              + LEAF + Reference Screen Reference Centre Set + To define the position of the centre reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01740000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthObject +
                urn:smpte:ul:060e2b34.01010101.0d020160.03000000
              + LEAF + Reference Screen Wiidth Set + To define the width of the reference screen. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01750000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePosition +
                urn:smpte:ul:060e2b34.01010101.0d020161.00000000
              + NODE + Reference Screen Centre Position + To define the centre position of a reference screen. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenCentrePositionValue +
                urn:smpte:ul:060e2b34.01010101.0d020161.01000000
              + LEAF + Reference Screen Centre Position Value + To provide the centre coordinates as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenAzimuth +
                urn:smpte:ul:060e2b34.01010101.0d020161.02000000
              + LEAF + Reference Screen Azimuth + To provide the azimuth. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenElevation +
                urn:smpte:ul:060e2b34.01010101.0d020161.03000000
              + LEAF + Reference Screen Elevation + To provide the elevation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenDistance +
                urn:smpte:ul:060e2b34.01010101.0d020161.04000000
              + LEAF + Reference Screen Distance + To provide the distance. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenX +
                urn:smpte:ul:060e2b34.01010101.0d020161.05000000
              + LEAF + Reference Screen X + To provide the X axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenY +
                urn:smpte:ul:060e2b34.01010101.0d020161.06000000
              + LEAF + Reference Screen Y + To provide the Y axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenZ +
                urn:smpte:ul:060e2b34.01010101.0d020161.07000000
              + LEAF + Reference Screen Z + To provide the Z axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidth +
                urn:smpte:ul:060e2b34.01010101.0d020162.00000000
              + NODE + Reference Screen Width + To define the width of a screen. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthValue +
                urn:smpte:ul:060e2b34.01010101.0d020162.01000000
              + LEAF + Reference Screen Width Value + To provide the width as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthAzimuth +
                urn:smpte:ul:060e2b34.01010101.0d020162.02000000
              + LEAF + Reference Screen Width Azimuth + To provide the width as an azimuth. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + referenceScreenWidthX +
                urn:smpte:ul:060e2b34.01010101.0d020162.03000000
              + LEAF + Reference Screen Width X + To define the width as an X axis coordinate. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogue +
                urn:smpte:ul:060e2b34.01010101.0d020163.00000000
              + NODE + Audio Content Dialogue + To characterise the presence of a dialogue in a media resource and its type. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioContentDialogueValue +
                urn:smpte:ul:060e2b34.01010101.0d020163.01000000
              + LEAF + Audio Content Dialogue Value + A element to define the dialogue. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + nonDialogueContentKind +
                urn:smpte:ul:060e2b34.01010101.0d020163.02000000
              + LEAF + Non Dialogue Content Kind + Numerical ID for the kind of non-dialogue content: 0 - undefined, 1 - music, 2 - effect. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + dialogueContentKind +
                urn:smpte:ul:060e2b34.01010101.0d020163.03000000
              + LEAF + Dialogue Content Kind + Numerical ID for the kind of dialogue content: 0 - undefined, 1 - (storyline) dialogue, 2 - voiceover, 3 - spoken subtitle, 4 - audio description/visually impaired, 5 - commentary, 6 - emergency + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + mixedContentkind +
                urn:smpte:ul:060e2b34.01010101.0d020163.04000000
              + LEAF + Mixed Content Kind + Numerical ID for the kind of mixed content: 0 - undefined, 1 - complete main, 2 - mixed, 3 - hearing impaired. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioObjectInteraction +
                urn:smpte:ul:060e2b34.01010101.0d020164.00000000
              + NODE + Audio Object Interaction + Set of parameters for limiting the amount of interaction of an object. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + onOffInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.01000000
              + LEAF + On Off Interact + Set to true to allow interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.02000000
              + LEAF + Gain Interact + Set to true to allow gain interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteract +
                urn:smpte:ul:060e2b34.01010101.0d020164.03000000
              + LEAF + Position Interact + Set to true to allow position interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020164.04000000
              + LEAF + Gain Interact Range Sets + Set the range of gain values allowed for interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03530000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeObjects +
                urn:smpte:ul:060e2b34.01010101.0d020164.05000000
              + LEAF + Position Interaction Range Sets + Set the range of position values allowed for interaction. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03540000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRange +
                urn:smpte:ul:060e2b34.01010101.0d020165.00000000
              + NODE + Gain Interaction Range + To specify the supported range of gain interaction. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeValue +
                urn:smpte:ul:060e2b34.01010101.0d020165.01000000
              + LEAF + Gain Interaction Range Value + Value defining the range of gain. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + gainInteractionRangeBound +
                urn:smpte:ul:060e2b34.01010101.0d020165.02000000
              + LEAF + Gain Interaction Range Bound + Set attribute to "min" to provide minimum gain factor of possible user gain interaction (gainMin = gain (or 1.0 if not defined) * gainInteractionRangeMin) Set attribute to "max" to provide maximum gain factor of possible user gain interaction gainMax = gain (or 1.0 if not defined) * gainInteractionRangeMin) + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRange +
                urn:smpte:ul:060e2b34.01010101.0d020166.00000000
              + NODE + Position Interaction Range + To specify the supportes range of supported position interaction. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeValue +
                urn:smpte:ul:060e2b34.01010101.0d020166.01000000
              + LEAF + Position Interaction Range Value + Value defnining the range of position. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeCoordinate +
                urn:smpte:ul:060e2b34.01010101.0d020166.02000000
              + LEAF + Position Interaction Range Coordinate + Set attribute to either "X", "Y", "Z", "azimuth", "elevation" or "distance" to set which axis requires limiting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + positionInteractionRangeBound +
                urn:smpte:ul:060e2b34.01010101.0d020166.03000000
              + LEAF + Position Interaction Range Bound + Set attribute to either "min" or "max" to set whether the axis needs a minimum or maximum range for positioning limiting. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPos +
                urn:smpte:ul:060e2b34.01010101.0d020167.00000000
              + NODE + Audio Block Position + A set of user defined parameters to define a block location in space. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionValue +
                urn:smpte:ul:060e2b34.01010101.0d020167.01000000
              + LEAF + Audio Block Position Value + The position as a single value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionCoordinate +
                urn:smpte:ul:060e2b34.01010101.0d020167.02000000
              + LEAF + Audio Block Position Coordinate + The axis used, either azimuth, elevation or distance (for polar); or X, Y or Z (for Cartesian). + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionBound +
                urn:smpte:ul:060e2b34.01010101.0d020167.03000000
              + LEAF + Audio Block Position Bound + Set to "min" or "max" to set the bound of the position. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockPositionScreenEdgeLock +
                urn:smpte:ul:060e2b34.01010101.0d020167.04000000
              + LEAF + Audio Block Position Edge Lock + Set to "left", "right", "top" or "bottom" to indicate which edge of the screen to lock the position to. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergence +
                urn:smpte:ul:060e2b34.01010101.0d020168.00000000
              + NODE + Audio Block Divergence + Sets the divergence of an object where 0.0 means all sound in the direction of the object and 1.0 means all sound from the virtual objects placed at an angle set by the azimuthRange attribute value. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceValue +
                urn:smpte:ul:060e2b34.01010101.0d020168.01000000
              + LEAF + Audio Block Divergence Value + The value of divergence. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockDivergenceAzimuthRange +
                urn:smpte:ul:060e2b34.01010101.0d020168.02000000
              + LEAF + Audio Block Divergence Azimuth Range + Set the azimuth angle from the actual object's position to the two virtual positions each side of it. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneExclusion +
                urn:smpte:ul:060e2b34.01010101.0d020169.00000000
              + NODE + Audio Block Zone Exclusion + Allows 3D zones to be exluded from rendering. So any speakers that exist within the excluded zone will not be used. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneObjects +
                urn:smpte:ul:060e2b34.01010101.0d020169.01000000
              + LEAF + Audio Block Zone Sets + Specifies the corner points of a cuboid in the 3D space that will be excluded from rendering. Multiple zone elements can be used to specify more complex exclusion shapes. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03550000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZone +
                urn:smpte:ul:060e2b34.01010101.0d02016a.00000000
              + NODE + Audio Block Zone + Specifies the corner points of a cuboid in the 3D space that will be excluded from rendering. Multiple zone elements can be used to specify more complex exclusion shapes. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneValue +
                urn:smpte:ul:060e2b34.01010101.0d02016a.01000000
              + LEAF + Audio Block Zone Value + The definition of a zone. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinX +
                urn:smpte:ul:060e2b34.01010101.0d02016a.02000000
              + LEAF + Audio Block Zone Min X + Min X + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxX +
                urn:smpte:ul:060e2b34.01010101.0d02016a.03000000
              + LEAF + Audio Block Zone Max X + Max X + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinY +
                urn:smpte:ul:060e2b34.01010101.0d02016a.04000000
              + LEAF + Audio Block Zone Min Y + Min Y + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxY +
                urn:smpte:ul:060e2b34.01010101.0d02016a.05000000
              + LEAF + Audio Block Zone Max Y + Max Y + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMinZ +
                urn:smpte:ul:060e2b34.01010101.0d02016a.06000000
              + LEAF + Audio Block Zone Min Z + Min Z + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockZoneMaxZ +
                urn:smpte:ul:060e2b34.01010101.0d02016a.07000000
              + LEAF + Audio Block Zone Max Z + Max Z + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumpPos +
                urn:smpte:ul:060e2b34.01010101.0d02016b.00000000
              + NODE + Audio Block Jump Position + If set to 1 the position will be interpolated over a period set by the attribute interpolationLength. If set to 0 then interpolation will take the entire length of the block. An interpolationLength value of zero will mean the object jumps without interpolation. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumPositionFlag +
                urn:smpte:ul:060e2b34.01010101.0d02016b.01000000
              + LEAF + Audio Block Jump Position Flag + Jump position flag value. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + audioBlockJumPositionInterpolationLength +
                urn:smpte:ul:060e2b34.01010101.0d02016b.02000000
              + LEAF + Audio Block Jump Position Interpolation Length + The interpolation length in seconds. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01020100.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + event +
                urn:smpte:ul:060e2b34.01010101.0d02016c.00000000
              + NODE + Event + To describe an event related to the media resource. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventId +
                urn:smpte:ul:060e2b34.01010101.0d02016c.01000000
              + LEAF + Event ID + An identifer associated with an event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventTypeGroupObject +
                urn:smpte:ul:060e2b34.01010101.0d02016c.02000000
              + LEAF + Event Type Group Set + To specify a kind of event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventNote +
                urn:smpte:ul:060e2b34.01010101.0d02016c.03000000
              + LEAF + Event Note + To provide additional contextual information about the event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.04000000
              + LEAF + Event Name Sets + To provide the names by which the event is known, possibly in different languages. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventDescriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.05000000
              + LEAF + Event Description Sets + To provide description of the event, possibly in different languages. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventLocationObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016c.06000000
              + LEAF + Event Location Sets + To provide information on the locations related to the event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03170000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventStart +
                urn:smpte:ul:060e2b34.01010101.0d02016c.07000000
              + LEAF + Event Start + To give a start date for an Event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + eventEnd +
                urn:smpte:ul:060e2b34.01010101.0d02016c.08000000
              + LEAF + Event End + To give an end date for an Event. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010500.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + award +
                urn:smpte:ul:060e2b34.01010101.0d02016d.00000000
              + NODE + Award + To describe an award. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardId +
                urn:smpte:ul:060e2b34.01010101.0d02016d.01000000
              + LEAF + Award ID + An identifier associated with an award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardNameObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.02000000
              + LEAF + Award Name Sets + To provide the names by which the award is known. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardDescriptionObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.03000000
              + LEAF + Award Description Sets + To provide a set of descriptions of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardCategoryObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.04000000
              + LEAF + Award Category Sets + The category of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01060000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardCeremonyObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.05000000
              + LEAF + Award Ceremony Sets + The ceremony of the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03110000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardOfficialObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.06000000
              + LEAF + Award Official Sets + The personalities involved in the award ceremony. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03040000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + awardDateObjects +
                urn:smpte:ul:060e2b34.01010101.0d02016d.07000000
              + LEAF + Award Date Sets + A set of dates associated with the award. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.03070000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliation +
                urn:smpte:ul:060e2b34.01010101.0d02016e.00000000
              + NODE + Affiliation + To provideo information about the affiliation of a contact/person. + EBU Tech 3293 + false +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationOrganizationObject +
                urn:smpte:ul:060e2b34.01010101.0d02016e.01000000
              + LEAF + Affiliation Organization Set + The organization of the affiliation. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 +
              + + Elements + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element + affiliationPeriodOfTimeObject +
                urn:smpte:ul:060e2b34.01010101.0d02016e.02000000
              + LEAF + Affiliation Period Of Time Set + The period of time during which the affiliation was valid. + EBU Tech 3293 + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d020101.01340000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.01010105.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.01010107.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.01010101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DescriptiveFrameworks +
                urn:smpte:ul:060e2b34.01010101.0d040101.01000000
              + NODE + APP Descriptive Frameworks + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_InfaxFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010000
              + NODE + APP Infax Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Format +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010100
              + LEAF + APP Format + The technical code describing the method or recording of this element. E.g. 'LTO', 'D3' (Infax table T_RECORDING, item tech_code) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProgrammeTitle +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010200
              + LEAF + APP Programme Title + Indicates the series the programme is related to. E.g. 'OLD GREY WHISTLE TEST' (Infax table T_PROGRAMME, item series_title) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_EpisodeTitle +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010300
              + LEAF + APP Episode Title + The title of this programme. E.g. 'PICK OF THE YEAR'(Infax table T_PROGRAMME, item core_title) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TransmissionDate +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010400
              + LEAF + APP Transmission Date + Earliest transmission date E.g. 1978-01-05 (Infax table T_PROGRAMME, item fst_aptx_date) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_MagazinePrefix +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010500
              + LEAF + APP Magazine Prefix + Programmes are identified by a programme number and optionally a magazine prefix, which consists of a letter, ranging from A to Z. E.g. 'A'(Infax table T_PROGRAMME, item mag_prefix) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProgrammeNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010600
              + LEAF + APP Programme Number + A number, which in conjunction with the magazine prefix, uniquely identifies a programme. It never changes and stays with the programme throughout its life.E.g. LNF2073N (Infax table T_PROGRAMME, item prog_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolStatus +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010700
              + LEAF + APP Spool Status + This is a code to describe the recording status of spool items.E.g. 'M'(Infax table T_RECORDING, item rec_status + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_StockDate +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010800
              + LEAF + APP Stock Date + The date on which this element was recorded onto the spool item. E.g. 2008-04-17 (Infax table T_RECORDING, item rec_date) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolDescriptor +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010900
              + LEAF + APP Spool Descriptor + A free format text containing a technical description of the recording. E.g. 'PROGRAMME (DUB OF 005123) (Infax table T_RECORDING, item rec_vt_desc) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Memo +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010a00
              + LEAF + APP Memo + The catalogue description of the recording. (Infax table T_RECORDING, item rec_cat_desc) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Duration +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010b00
              + LEAF + APP Duration + The amount of material used. This is recorded as duration in number of seconds. E.g. 4145 (Infax table T_RECORDING, item rec_duration) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpoolNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010c00
              + LEAF + APP Spool Number + The numeric component of a spool number. The number and prefix form a spool-number which is usually issued when the material is created. The spool number equates to a gap in the short term store. The number on the spool identifies the last current number for the spool. E.g. 'DA 005123'(Infax table T_SPOOL, item spl_prefix and spl_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_AccessionNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010d00
              + LEAF + APP Accession Number + The accession number identifies a number given to an item being added to the library's long term store system. This number equates to a space on a storage shelf and is therefore a reusable storage identifier.E.g. 'DA 018820'(Infax table T_SPOOL, item acc_prefix and acc_num) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_CatalogueDetail +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010e00
              + LEAF + APP Catalogue Detail + A code which allows the user to retrieve catalogue entries by a category. It is a subcatalogue within the catalogue.E.g. 'LONPROG' (Infax table T_CAT_ITEM, item cat_recall) + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ProductionCode +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010f00
              + LEAF + APP Production Code + The production code assigned to the programme. E.g. 70 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ItemNumber +
                urn:smpte:ul:060e2b34.01010101.0d040101.01011000
              + LEAF + APP Item Number + Index of the item on the videotape containing multiple items E.g. 1 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PSEAnalysisFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020000
              + NODE + APP PSE Analysis Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_RedFlash +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020100
              + LEAF + APP Red Flash + The value of the red flash analysis, scaled by a factor of 1000. + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_SpatialPattern +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020200
              + LEAF + APP Spatial Pattern + The value of the spatial analysis, scaled by a factor of 1000. + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_LuminanceFlash +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020300
              + LEAF + APP Luminance Flash + The value of the luminance flash analysis, scaled by a factor of 1000 + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010600.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_ExtendedFailure +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020400
              + LEAF + APP Extended Failure + The extended warning failure flag + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRReplayErrorFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030000
              + NODE + APP VTR Replay Error Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRErrorCode +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030100
              + LEAF + APP VTR Error Code + Error code reported by the VTR + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DigiBetaDropoutFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040000
              + NODE + APP DigiBeta Dropout Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_Strength +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040100
              + LEAF + APP Strength + Normalised Digibeta dropout strength + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeBreakFramework +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050000
              + NODE + APP Timecode Break Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeType +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050100
              + LEAF + APP Timecode Type + Flags which timecode types are associated with this event + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d040101.01010101 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PrefaceAdditions +
                urn:smpte:ul:060e2b34.01010101.0d040101.40000000
              + NODE + APP Preface Additions + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PrefaceAdditionsVersion1 +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010000
              + NODE + APP Preface Additions Version 1 + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_VTRErrorCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010100
              + LEAF + APP VTR Error Count + Total number of VTR replay errors + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_PSEFailureCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010200
              + LEAF + APP PSE Failure Count + Total number of PSE analysis failures + BBC Research White Paper WHP 167 D3 Preservation File Format + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_DigiBetaDropoutCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010300
              + LEAF + APP DigiBeta Dropout Count + Total number of DigiBeta dropouts detected + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/4/archive + APP_TimecodeBreakCount +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010400
              + LEAF + APP Timecode Break Count + Total number of Timecode break events + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.01010107.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.01010109.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.01010109.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.0101010a.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.0101010c.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.0101010c.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.0101010c.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProductionFramework +
                urn:smpte:ul:060e2b34.01010101.0d0b0100.00000000
              + NODE + Production Framework + Information about the production framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsRecording +
                urn:smpte:ul:060e2b34.01010101.0d0b0101.00000000
              + LEAF + Is Recording + Indicates that the program is a studio recording + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsLiveProduction +
                urn:smpte:ul:060e2b34.01010101.0d0b0102.00000000
              + LEAF + Is Live Production + Indicates that the program is a live production + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsLiveTransmission +
                urn:smpte:ul:060e2b34.01010101.0d0b0103.00000000
              + LEAF + Is Live Transmission + Indicates that the program is a live transmission + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsDubbed +
                urn:smpte:ul:060e2b34.01010101.0d0b0104.00000000
              + LEAF + Is Dubbed + Indicates that the program is dubbed + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsVoiceover +
                urn:smpte:ul:060e2b34.01010101.0d0b0105.00000000
              + LEAF + Is Voiceover + Indicates that the program has a voiceover + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + HasAudioWatermark +
                urn:smpte:ul:060e2b34.01010101.0d0b0106.00000000
              + LEAF + Has Audio Watermark + Indicates that the program has an audio watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioWatermarkKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0107.00000000
              + LEAF + Audio Watermark Kind + Indicates the kind of audio watermark used + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + HasVideoWatermark +
                urn:smpte:ul:060e2b34.01010101.0d0b0108.00000000
              + LEAF + Has Video Watermark + Indicates the program has a video watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + VideoWatermarkKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0109.00000000
              + LEAF + Video Watermark Kind + Indicates the kind of video watermark + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Subtitling +
                urn:smpte:ul:060e2b34.01010101.0d0b0200.00000000
              + NODE + Subtitling + Information about subtitling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SubtitlesPresent +
                urn:smpte:ul:060e2b34.01010101.0d0b0201.00000000
              + LEAF + Subtitles Present + Indicates that program is subtitled + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Captioning +
                urn:smpte:ul:060e2b34.01010101.0d0b0300.00000000
              + NODE + Caption Titles + Information about caption titling + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + CaptionTitles +
                urn:smpte:ul:060e2b34.01010101.0d0b0301.00000000
              + LEAF + Caption Titles + Indicates that the program has caption titles + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + CaptionsViaTeletext +
                urn:smpte:ul:060e2b34.01010101.0d0b0302.00000000
              + LEAF + Captions Via Teletext + Indicates that the program has teletext captions for the deaf or hearing-impaired + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + TextlessMaterial +
                urn:smpte:ul:060e2b34.01010101.0d0b0303.00000000
              + LEAF + Textless Material + Indicates that the program is textless + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioParameters +
                urn:smpte:ul:060e2b34.01010101.0d0b0400.00000000
              + NODE + Audio Parameters + Information about audio parameters + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + AudioReferenceLevel +
                urn:smpte:ul:060e2b34.01010101.0d0b0401.00000000
              + LEAF + Audio Reference Level + A description of the audio reference level, e.g. dBm, dBfs, +9dBm, 0dBfs, +15dBu etc. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMedia +
                urn:smpte:ul:060e2b34.01010101.0d0b0500.00000000
              + NODE + Storage Media + Information about the storage media + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageDeviceKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0501.00000000
              + LEAF + Storage Device Kind + Describes the type of storage device + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMediaKind +
                urn:smpte:ul:060e2b34.01010101.0d0b0502.00000000
              + LEAF + Storage Media Kind + Describes the type of storage media + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + StorageMediaID +
                urn:smpte:ul:060e2b34.01010101.0d0b0503.00000000
              + LEAF + Storage Media ID + Uniquely identifies the storage media + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastScheduleInformation +
                urn:smpte:ul:060e2b34.01010101.0d0b0600.00000000
              + NODE + Broadcast Schedule Information + Information about the schedule information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastDate +
                urn:smpte:ul:060e2b34.01010101.0d0b0601.00000000
              + LEAF + Broadcast Date + The broadcast date of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcastTime +
                urn:smpte:ul:060e2b34.01010101.0d0b0602.00000000
              + LEAF + Broadcast Time + The broadcast time of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + IsRepeat +
                urn:smpte:ul:060e2b34.01010101.0d0b0603.00000000
              + LEAF + Is Repeat + Indicates that the program has been shown before + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + FirstTransmissionDateTimeChannelAndBroadcaster +
                urn:smpte:ul:060e2b34.01010101.0d0b0604.00000000
              + LEAF + First Transmission Date-Time, Channel, and Broadcaster + Indicates the first broadcast date-time, the broadcast channel and broadcaster of the program as a text string + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + TeletextSubtitlesAvailable +
                urn:smpte:ul:060e2b34.01010101.0d0b0605.00000000
              + LEAF + Teletext Subtitles Available + Indicates that teletext subtitles for the deaf or hearing impaired are available + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + 1 byte +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SeasonEpisodeNumber +
                urn:smpte:ul:060e2b34.01010101.0d0b0606.00000000
              + LEAF + Season Episode Number + Indicates the episode number for a series season + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + SeasonEpisodeTitle +
                urn:smpte:ul:060e2b34.01010101.0d0b0607.00000000
              + LEAF + Season Episode Title + Indicates the episode title for a series season + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + EPGProgramSynopsis +
                urn:smpte:ul:060e2b34.01010101.0d0b0608.00000000
              + LEAF + EPG Program Synopsis + Short synopsis of the program for use in the EPG + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Classification +
                urn:smpte:ul:060e2b34.01010101.0d0b0700.00000000
              + NODE + Classification + Program classification information + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentClassification +
                urn:smpte:ul:060e2b34.01010101.0d0b0701.00000000
              + LEAF + Content Classification + A textual description or for example a string of coded numbers as in the EBU Escort schema for classification + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DVBParentalRating +
                urn:smpte:ul:060e2b34.01010101.0d0b0702.00000000
              + LEAF + DVB Parental Rating + Classification as used in DVB + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityRating +
                urn:smpte:ul:060e2b34.01010101.0d0b0703.00000000
              + LEAF + Content Maturity Rating + Classification goepings as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityDescription +
                urn:smpte:ul:060e2b34.01010101.0d0b0704.00000000
              + LEAF + Content Maturity Description + Textual classification as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContentMaturityGraphic +
                urn:smpte:ul:060e2b34.01010101.0d0b0705.00000000
              + LEAF + Content Maturity Graphic + Graphical claasification as used in "kijkwijzer" www.kijkwijzer.nl + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Contract +
                urn:smpte:ul:060e2b34.01010101.0d0b0800.00000000
              + NODE + Contract + Information about the program contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContractEntity +
                urn:smpte:ul:060e2b34.01010101.0d0b0801.00000000
              + LEAF + Contract Entity + The name of the party that signed the contract + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ContractTypeLink +
                urn:smpte:ul:060e2b34.01010101.0d0b0802.00000000
              + LEAF + Contract Type Link + Contains a conditional access link to the program content. + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Rights +
                urn:smpte:ul:060e2b34.01010101.0d0b0900.00000000
              + NODE + Rights + Contains information about the rights contained in the contract + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ConsumerRightsToCopy +
                urn:smpte:ul:060e2b34.01010101.0d0b0901.00000000
              + LEAF + Consumer Rights to Copy + Indicates whether the consumer has the rights to copy the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + BroadcasterRightsToCopy +
                urn:smpte:ul:060e2b34.01010101.0d0b0902.00000000
              + LEAF + Broadcaster Rights to Copy + Indicates whether the broadcaster has the rights to copy the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProductionKeyPeople +
                urn:smpte:ul:060e2b34.01010101.0d0b0a00.00000000
              + NODE + Production Key People + Information about the people involved in the production + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + DirectorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a01.00000000
              + LEAF + Director Name + Contains the name of the director of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + ProducerName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a02.00000000
              + LEAF + Producer Name + Contains the name of the producer of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + FemaleLeadActressName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a03.00000000
              + LEAF + Female Lead Actress Name + Contains the name of the female lead actress of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + MaleLeadActorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a04.00000000
              + LEAF + Male Lead Actor Name + Contains the name of the male lead actor of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PresenterName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a05.00000000
              + LEAF + Presenter Name + Contains the name of the presenter of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + MainSponsorName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a06.00000000
              + LEAF + Main Sponsor Name + Contains the name of the sponsor of the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + VoiceTalentName +
                urn:smpte:ul:060e2b34.01010101.0d0b0a07.00000000
              + LEAF + Voice Talent Name + Contains the name of the voice talent in the program + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + Address +
                urn:smpte:ul:060e2b34.01010101.0d0b0b00.00000000
              + NODE + Address + Information about the address + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PostboxNumber +
                urn:smpte:ul:060e2b34.01010101.0d0b0b01.00000000
              + LEAF + Postbox Number + Indicates the number of the postbox + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/11 + PostCodeForPostbox +
                urn:smpte:ul:060e2b34.01010101.0d0b0b02.00000000
              + LEAF + Post Code for Postbox + Indicates the postal code of the postbox + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + Variable +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.0101010d.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.01010101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DPP_Groups +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01000000
              + NODE + DPP Groups + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + DM_AS_11_UKDPP_Framework +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010000
              + NODE + AS-11 UKDPP Framework + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Production_Number +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010100
              + LEAF + Production Number + A unique identifier / code for the programme (i.e. a unique identifier for this version of the episode). + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Synopsis +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010200
              + LEAF + Synopsis + A brief descriptive summary of the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 250 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Originator +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010300
              + LEAF + Originator + The name of the person or organisation responsible for creating the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Copyright_Year +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010400
              + LEAF + Copyright Year + The full year in which one of the following occurred or will occur: completion of the production of the programme; delivery of the completed file to the Broadcaster; transmission of the delivered programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Other_Identifier +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010500
              + LEAF + Other Identifier + Another unique identifier / code for the content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Other_Identifier_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010600
              + LEAF + Other Identifier type + The kind of identifier / code used for "Other Identifier". + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Genre +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010700
              + LEAF + Genre + A single style or category describing the whole programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Distributor +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010800
              + LEAF + Distributor + The name of the person or organisation responsible for supplying the programme to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Picture_Ratio +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010900
              + LEAF + Picture Ratio + The ratio of the display width to the display height of the smallest rectangle that completely contains (throughout the duration of the entire programme) the region of the video frame used for "programme content" (where "programme content" includes all pictures, captions, etc but excludes any black bars). + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_3D +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010a00
              + LEAF + 3D + A flag to indicate whether the file contains video intended for stereoscopic rendition. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_3D_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010b00
              + LEAF + 3D Type + A code to identify the kind of stereoscopic video contained in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.03000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Product_Placement +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010c00
              + LEAF + Product Placement + A flag to indicate whether the programme contains "product placement". + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Pass +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010d00
              + LEAF + PSE Pass + A code to indicate: whether the entire programme passed a flash and pattern test for compliance with Photosensitive Epilepsy (PSE) guidelines; or that such a test has not been carried out. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.01000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Manufacturer +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010e00
              + LEAF + PSE Manufacturer + The name of the product used to perform the test for compliance with PSE guidelines. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_PSE_Version +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010f00
              + LEAF + PSE Version + The version of the algorithm / product module used to perform the test for compliance with PSE guidelines. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Video_Comments +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011000
              + LEAF + Video Comments + A description of the subjective quality of the video in the programme including notes on any global characteristics or video treatments. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Secondary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011100
              + LEAF + Secondary Audio Language + A code to identify the main language used on secondary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Tertiary_Audio_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011200
              + LEAF + Tertiary Audio Language + A code to identify the main language used on tertiary audio channels. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Loudness_Standard +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011300
              + LEAF + Audio Loudness Standard + A code to identify a relevant audio loudness recommendation or standard. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.04000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Comments +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011400
              + LEAF + Audio Comments + A description of the subjective quality of the audio in the programme including notes on any global characteristics or audio treatments. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Line_Up_Start +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011500
              + LEAF + Line Up Start + The value of the Position in the MXF Material Package at which the line-up test signals begin. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Ident_Clock_Start +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011600
              + LEAF + Ident Clock Start + The value of the Position in the MXF Material Package at which the initial "ident" or countdown clock begins. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012001.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Total_Number_Of_Parts +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011700
              + LEAF + Total Number Of Parts + The count of parts / segments in the file. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Total_Programme_Duration +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011800
              + LEAF + Total Programme Duration + The sum of the durations of all the parts / segments in the entire programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01012002.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Description_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011900
              + LEAF + Audio Description Present + A flag to indicate whether the programme contains audio description for the visually impaired. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Audio_Description_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011a00
              + LEAF + Audio Description Type + A code to identify the format of the audio description. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.05000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011b00
              + LEAF + Open Captions Present + A flag to indicate whether the programme contains visible (in-vision) subtitling information. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Type +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011c00
              + LEAF + Open Captions Type + A code to identify the editorial description of the open captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010100 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Open_Captions_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011d00
              + LEAF + Open Captions Language + A code to identify the main language used in the open captions. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Signing_Present +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011e00
              + LEAF + Signing Present + A code to indicate: whether the programme contains visible (in-vision) signing along with the rest of the programme content; or that the programme contains only visible (in-vision) signing. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.02000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Sign_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011f00
              + LEAF + Sign Language + A code to identify the main language and / or format of the visible (in-vision) signing contained in the programme. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d0c0101.06000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Completion_Date +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012000
              + LEAF + Completion Date + The date on which the programme file was completed ready for delivery to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.03010700.00000000 + All facets of the "Time" facet of this "TimeStamp" are zero +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Textless_Elements_Exist +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012100
              + LEAF + Textless Elements Exist + A flag to indicate whether the programme contains "textless elements" after the end of the main programme content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Programme_Has_Text +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012200
              + LEAF + Programme Has Text + A flag to indicate whether the main programme content contains text overlays (or similar) in the video. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01040100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Programme_Text_Language +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012300
              + LEAF + Programme Text Language + A code to identify the main language used for text overlays (or similar) in the video of the main programme content. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.0d010701.0b010300 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Contact_Email +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012400
              + LEAF + Contact Email + The email address for the person or organisation responsible for supplying the programme file to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/12/as11 + UKDPP_Contact_Telephone_Number +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012500
              + LEAF + Contact Telephone No. + The telephone number for the person or organisation responsible for supplying the programme file to the Broadcaster. + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 + 127 Unicode "code points" maximum +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.0101010d.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + DMS_AS_12_AdID_Slate +
                urn:smpte:ul:060e2b34.0101010d.0d0d0100.00000000
              + NODE + DMS_AS_12_AdID_Slate + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + adid_prefix +
                urn:smpte:ul:060e2b34.0101010d.0d0d0101.00000000
              + LEAF + adid_prefix + The four character prefix of the advertising asset encoded in the file + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + adid_code +
                urn:smpte:ul:060e2b34.0101010d.0d0d0102.00000000
              + LEAF + adid_code + The unique identifier for the advertising asset encoded in the file + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + ad_title +
                urn:smpte:ul:060e2b34.0101010d.0d0d0103.00000000
              + LEAF + ad_title + Alpha-numeric combination that follows the prefix + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + brand +
                urn:smpte:ul:060e2b34.0101010d.0d0d0104.00000000
              + LEAF + Brand + The advertiser brand that is associated to this product + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + product +
                urn:smpte:ul:060e2b34.0101010d.0d0d0105.00000000
              + LEAF + Product + The product that is the extension of the brand + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + advertiser +
                urn:smpte:ul:060e2b34.0101010d.0d0d0106.00000000
              + LEAF + Advertiser + The company or the agency's client that is advertising + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + agency_office_location +
                urn:smpte:ul:060e2b34.0101010d.0d0d0107.00000000
              + LEAF + agency_office_location + The agency working with the advertiser and their office location + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + length +
                urn:smpte:ul:060e2b34.0101010d.0d0d0108.00000000
              + LEAF + Length + The intended length of the advertisement between SOM and EOM + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + medium +
                urn:smpte:ul:060e2b34.0101010d.0d0d0109.00000000
              + LEAF + Medium + Medium - Television/Radio/Print etc + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + sd_flag +
                urn:smpte:ul:060e2b34.0101010d.0d0d010a.00000000
              + LEAF + sd_flag + SD Flag - CDC Flag for SD Code (video only) + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/13/13 + parent +
                urn:smpte:ul:060e2b34.0101010d.0d0d010b.00000000
              + LEAF + Parent + Parent - the parent company of the advertiser + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.01010101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.01010101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.01010101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.01010101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.01010106.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.01010106.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.01010106.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.01010107.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.01010107.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.01010107.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + ImmersiveAudioVersion +
                urn:smpte:ul:060e2b34.01010105.0e090506.00000000
              + LEAF + Immersive Audio Version + Immersive Audio Coder version used to create the source Bitstream + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010100.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + MaxChannelCount +
                urn:smpte:ul:060e2b34.01010105.0e090507.00000000
              + LEAF + Max Channel Count + Maximum number of audio channels in the bitstream + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + MaxObjectCount +
                urn:smpte:ul:060e2b34.01010105.0e090508.00000000
              + LEAF + Max Object Count + Maximum number of audio objects in the bitstream + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + ImmersiveAudioID +
                urn:smpte:ul:060e2b34.01010105.0e090509.00000000
              + LEAF + Immersive Audio ID + UUID of the Immersive Audio project + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01030300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/9 + FirstFrame +
                urn:smpte:ul:060e2b34.01010105.0e09050a.00000000
              + LEAF + First Frame + Specifies an edit unit for alignment with the FFOA of the picture track + SMPTE ST 429-18 + false + DefinedContext + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.01010108.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.01010109.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.01010109.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.01010109.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.01010109.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.0101010a.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.0101010a.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.0101010a.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.0101010a.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.0101010c.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.0101010c.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.0101010d.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.0101010d.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.0101010d.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.0101010d.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.0101010d.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.0101010e.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.0101010e.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.0101010e.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.0101010e.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.0101010e.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.0101010e.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.01010101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              + + Elements + http://www.smpte-ra.org/reg/335/2012/67 + Legacy_315M +
                urn:smpte:ul:060e2b34.01010101.43000000.00000000
              + NODE + Legacy (315M) + Legacy usage by SMPTE 315M + false +
              +
              +
              diff --git a/src/test/resources/registers/snapshot/Groups.xml b/src/test/resources/registers/snapshot/Groups.xml new file mode 100644 index 0000000..3357766 --- /dev/null +++ b/src/test/resources/registers/snapshot/Groups.xml @@ -0,0 +1,16007 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + Groups + http://www.smpte-ra.org/reg/395/2014 + GROUPS +
                urn:smpte:ul:060e2b34.027f0101.00000000.00000000
              + NODE + GROUPS + Register of Packs and Sets of Metadata Elements + SMPTE ST 395 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + IDENTIFICATIONLOCATION +
                urn:smpte:ul:060e2b34.027f0101.01000000.00000000
              + NODE + IDENTIFICATION & LOCATION + Identification and location metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ADMINISTRATION +
                urn:smpte:ul:060e2b34.027f0101.02000000.00000000
              + NODE + ADMINISTRATION + Administration and business related metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AccessControl +
                urn:smpte:ul:060e2b34.027f0101.02070000.00000000
              + NODE + Access Control + Details of permitted access to the media product + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuditoriumSecurity +
                urn:smpte:ul:060e2b34.027f0101.02070100.00000000
              + NODE + Auditorium Security + Security-critical groups for intra-theater use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Error +
                urn:smpte:ul:060e2b34.027f0101.02070101.00000000
              + NODE + Error + Error + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + BadRequestResponse +
                urn:smpte:ul:060e2b34.027f0101.02070101.01000000
              + LEAF + Bad Request Response + Bad request response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.02070300.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + GeneralPurpose +
                urn:smpte:ul:060e2b34.027f0101.02070102.00000000
              + NODE + General purpose + General purpose + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + TimeRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.10000000
              + LEAF + Time Request + Time request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + TimeResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.11000000
              + LEAF + Time Response + Time response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020101.01080000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventListRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.12000000
              + LEAF + Event List Request + Log event list by time period request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020102.07030000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.07020102.0a020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventListResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.13000000
              + LEAF + Event List Response + Log event list by time period response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.0f000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.14000000
              + LEAF + Event ID Request + Log event record by event ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.02000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EventIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.15000000
              + LEAF + Event ID Response + Log event record by event ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070500.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SecureProcessingBlockQueryRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.16000000
              + LEAF + Secure Processing Block Query Request + Secure processing block status request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SecureProcessingBlockQueryResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.17000000
              + LEAF + Secure Processing Block Query Response + Secure processing block status response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070600.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070700.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProjectorCertificateRequest +
                urn:smpte:ul:060e2b34.027f0101.02070102.18000000
              + LEAF + Projector Certificate Request + Projector Certificate Request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProjectorCertificateResponse +
                urn:smpte:ul:060e2b34.027f0101.02070102.19000000
              + LEAF + Projector Certificate Response + Projector Certificate Resposne + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070e00.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryption +
                urn:smpte:ul:060e2b34.027f0101.02070103.00000000
              + NODE + Link encryption + Link encryption + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyLoadRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.20000000
              + LEAF + Link Encryption Key Load Request + Link decryptor block key load request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.10000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyLoadResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.21000000
              + LEAF + Link Encryption Key Load Response + Link decryptor block key load response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070800.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.22000000
              + LEAF + Link Encryption Key Query ID Request + Link decryptor block key query by key ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.23000000
              + LEAF + Link Encryption Key Query ID Response + Link decryptor block key query by key ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070900.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryAllRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.24000000
              + LEAF + Link Encryption Key Query All Request + Link decryptor block all keys query request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionKeyQueryAllResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.25000000
              + LEAF + Link Encryption Key Query All Response + Link decryptor block all keys query response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010103.11000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeIDRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.26000000
              + LEAF + Link Encryption Purge ID Request + Link decryptor block key purge by key ID request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.01030801.03000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeIDResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.27000000
              + LEAF + Link Encryption Purge ID Response + Link decryptor block key purge by key ID response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070a00.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeAllRequest +
                urn:smpte:ul:060e2b34.027f0101.02070103.28000000
              + LEAF + Link Encryption Purge All Request + Link decryptor block all keys purge request + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LinkEncryptionPurgeAllResponse +
                urn:smpte:ul:060e2b34.027f0101.02070103.29000000
              + LEAF + Link Encryption Purge All Response + Link decryptor block all keys purge response + DC + SMPTE 430-6 D-Cinema Auditorium Security Messages + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010d.01030801.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.02070400.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + INTERPRETIVE +
                urn:smpte:ul:060e2b34.027f0101.03000000.00000000
              + NODE + INTERPRETIVE + Interpretive metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + PARAMETRIC +
                urn:smpte:ul:060e2b34.027f0101.04000000.00000000
              + NODE + PARAMETRIC + Parametric metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + PROCESS +
                urn:smpte:ul:060e2b34.027f0101.05000000.00000000
              + NODE + PROCESS + Process metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ColorTransformSets +
                urn:smpte:ul:060e2b34.027f0101.05310000.00000000
              + NODE + Color Transform Sets + Color Transform Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTGenericSets +
                urn:smpte:ul:060e2b34.027f0101.05310100.00000000
              + NODE + DMCVT Generic Sets + DMCVT Generic Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTGenericSet1 +
                urn:smpte:ul:060e2b34.027f0101.05310101.00000000
              + LEAF + DMCVT Generic Set 1 + Identifies a DMCVT Generic Set 1 + SMPTE ST 2094-2 + false + false + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310101.00000000
              + 3601 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310102.00000000
              + 3602 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310103.00000000
              + 3603 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310104.00000000
              + 3604 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310105.00000000
              + 3605 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310106.00000000
              + 3606 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310107.00000000
              + 3607 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310108.00000000
              + 3608 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310109.00000000
              + 3609 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010a.00000000
              + 360a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010b.00000000
              + 360b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010c.00000000
              + 360c + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApplicationSets +
                urn:smpte:ul:060e2b34.027f0101.05310200.00000000
              + NODE + DMCVT Application Sets + DMCVT Application Sets + SMPTE ST 2094-2 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp1Set +
                urn:smpte:ul:060e2b34.027f0101.05310201.00000000
              + LEAF + DMCVT App1 Set + Identifies a DMCVT Application 1 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.0531010d.00000000
              + 360d + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010e.00000000
              + 360e + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531010f.00000000
              + 360f + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310110.00000000
              + 3610 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310111.00000000
              + 3611 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310112.00000000
              + 3612 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310113.00000000
              + 3613 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310114.00000000
              + 3614 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310115.00000000
              + 3615 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310116.00000000
              + 3616 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310117.00000000
              + 3617 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310118.00000000
              + 3618 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp2Set +
                urn:smpte:ul:060e2b34.027f0101.05310202.00000000
              + LEAF + DMCVT App2 Set + Identifies a DMCVT Application 2 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310119.00000000
              + 3619 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011a.00000000
              + 361a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011b.00000000
              + 361b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011c.00000000
              + 361c + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011d.00000000
              + 361d + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011e.00000000
              + 361e + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531011f.00000000
              + 361f + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310120.00000000
              + 3620 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310121.00000000
              + 3621 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310122.00000000
              + 3622 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310123.00000000
              + 3623 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310124.00000000
              + 3624 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310125.00000000
              + 3625 + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310126.00000000
              + 3626 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp3Set +
                urn:smpte:ul:060e2b34.027f0101.05310203.00000000
              + LEAF + DMCVT App3 Set + Identifies a DMCVT Application 3 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310127.00000000
              + 3627 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310128.00000000
              + 3628 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310129.00000000
              + 3629 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012a.00000000
              + 362a + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012b.00000000
              + 362b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012c.00000000
              + 362c + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012d.00000000
              + 362d + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012e.00000000
              + 362e + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531012f.00000000
              + 362f + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DMCVTApp4Set +
                urn:smpte:ul:060e2b34.027f0101.05310204.00000000
              + LEAF + DMCVT App4 Set + Identifies a DMCVT Application 4 Set + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310130.00000000
              + 3630 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310131.00000000
              + 3631 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310132.00000000
              + 3632 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310133.00000000
              + 3633 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310134.00000000
              + 3634 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310135.00000000
              + 3635 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310136.00000000
              + 3636 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310137.00000000
              + 3637 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310138.00000000
              + 3638 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310139.00000000
              + 3639 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013a.00000000
              + 363a + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013b.00000000
              + 363b + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013c.00000000
              + 363c + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013d.00000000
              + 363d + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013e.00000000
              + 363e + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531013f.00000000
              + 363f + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310140.00000000
              + 3640 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310141.00000000
              + 3641 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RELATIONAL +
                urn:smpte:ul:060e2b34.027f0101.06000000.00000000
              + NODE + RELATIONAL + Relational metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + SPATIOTEMPORAL +
                urn:smpte:ul:060e2b34.027f0101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + Spatio-temporal metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + COMPOUND +
                urn:smpte:ul:060e2b34.027f0101.0c000000.00000000
              + NODE + COMPOUND + Compound metadata groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DataModels +
                urn:smpte:ul:060e2b34.027f0101.0c010000.00000000
              + NODE + Data Models + Data Models + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + DictionaryRepresentation +
                urn:smpte:ul:060e2b34.027f0101.0c010100.00000000
              + NODE + Dictionary Representation + Dictionary Representation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RegistryInterchangeFormatRIF +
                urn:smpte:ul:060e2b34.027f0101.0c010101.00000000
              + NODE + Registry Interchange Format (RIF) + Registry Interchange Format (RIF) + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RIFVersion1CompatibleClasses +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01000000
              + NODE + RIF Version 1 Compatible Classes + RIF Version 1 Compatible Classes + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AdministrativeBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010100
              + LEAF + Administrative Base Class + Administrative Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + CompoundEntryElementBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010200
              + LEAF + Compound Entry Element Base Class + Compound Entry Element Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Entry +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010300
              + LEAF + Entry + Entry + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + EntryAdministration +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010400
              + LEAF + Entry Administration + Entry Administration + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Leaf +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010500
              + LEAF + Leaf + Leaf + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Node +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010600
              + LEAF + Node + Node + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Register +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010700
              + LEAF + Register + Register + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RegisterAdministration +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010800
              + LEAF + Register Administration + Register Administration + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + RifBaseClass +
                urn:smpte:ul:060e2b34.027f0101.0c010101.01010900
              + LEAF + Rif Base Class + Rif Base Class + RIF + SMPTE 2045 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + ProductionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020000.00000000
              + NODE + Production Metadata + Metadata sets created at the point of creation or capture + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Acquisition +
                urn:smpte:ul:060e2b34.027f0101.0c020100.00000000
              + NODE + Acquisition + Metadata sets associated with a video camera + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + FrameBased +
                urn:smpte:ul:060e2b34.027f0101.0c020101.00000000
              + NODE + Frame based + Frame-based metadata sets + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + LensUnitAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.01010000
              + LEAF + Lens Unit Acquisition Metadata + Lens Unit Acquisition Metadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.01000000
              + 8000 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.08000000
              + 8008 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.09000000
              + 8009 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.02000000
              + 8001 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.03000000
              + 8002 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.0a000000
              + 800a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.04000000
              + 8003 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.05000000
              + 8004 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.06000000
              + 8005 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200202.0b000000
              + 800b + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200202.07000000
              + 8006 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100100
              + 8007 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + CameraUnitAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.02010000
              + LEAF + Camera Unit Acquisition Metadata + Camera Unit Acquisition Metadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01010000
              + 8100 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.010c0000
              + 8115 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01020000
              + 8101 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01030000
              + 8102 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01040000
              + 8103 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01050000
              + 8104 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01060000
              + 8105 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04010301.03010000
              + 8106 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01070000
              + 8107 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080000
              + 8108 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01080100
              + 8109 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.01090000
              + 810a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.010a0000
              + 810b + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.010d0000
              + 8118 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.010b0000
              + 810c + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02010000
              + 810d + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02020000
              + 810e + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02030000
              + 810f + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02040000
              + 8110 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02050000
              + 8111 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04200103.02060000
              + 8112 + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + 3210 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.02070000
              + 8116 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200103.02080000
              + 8117 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.01020108.02000000
              + 8113 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020302.02100200
              + 8114 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + UserDefinedAcquisitionMetadata +
                urn:smpte:ul:060e2b34.027f0101.0c020101.7f010000
              + LEAF + UserDefinedAcquisitionMetadata + UserDefinedAcquisitionMetadata + Per RDD 18, for each Element the static local tag is used in the System Item; a dynamic local tag is used in MXF header metadata + RDD 18 + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.04060805.00000000
              + e000 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + Messages +
                urn:smpte:ul:060e2b34.027f0101.0c030000.00000000
              + NODE + Messages + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataTransferProtocol +
                urn:smpte:ul:060e2b34.027f0101.0c030100.00000000
              + NODE + Aux Data Transfer Protocol + SMPTE ST 430-14 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataBlockTransferHeader +
                urn:smpte:ul:060e2b34.027f0101.0c030101.00000000
              + LEAF + Aux Data Block Transfer Header + SMPTE ST 430-14 + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010e.02400101.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400102.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014 + AuxDataBlock +
                urn:smpte:ul:060e2b34.027f0101.0c030102.00000000
              + LEAF + Aux Data Block + SMPTE ST 430-14 + false + 04 + + +
                urn:smpte:ul:060e2b34.0101010e.02400103.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400104.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400105.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400106.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400107.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400108.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.02400109.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.027f0101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.027f0101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AAFAssociationStructuralMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d010100.00000000
              + NODE + AAF Association Structural Metadata + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AAFVersion1XClasses +
                urn:smpte:ul:060e2b34.027f0101.0d010101.00000000
              + NODE + AAF Version 1.x Classes + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StandardClasses +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01000000
              + NODE + Standard Classes + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Class +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010000
              + NODE + Class + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + InterchangeObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010100
              + LEAF + Interchange Object + Interchange Object + AAF + AAF Object Specification SMPTE 377M + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01010000
              + 0101 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.08000000
              + 0102 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.06010104.020e0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Component +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010200
              + LEAF + Component + Component + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04070100.00000000
              + 0201 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01030000
              + 0202 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010210.04000000
              + 0203 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020102.16000000
              + 0204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010210.08000000
              + 0205 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Segment +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010300
              + LEAF + Segment + Segment + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EdgeCode +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010400
              + LEAF + Edge Code + Edge Code + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01040901.00000000
              + 0401 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01090000
              + 0402 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04100103.01020000
              + 0403 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01030201.02000000
              + 0404 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceGroup +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010500
              + LEAF + Essence Group + Essence Group + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06010000
              + 0501 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02080000
              + 0502 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Event +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010600
              + LEAF + Event + Event + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.03030000
              + 0601 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300404.01000000
              + 0602 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GPITrigger +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010700
              + LEAF + GPI Trigger + GPI Trigger + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010600 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.05300401.00000000
              + 0801 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CommentMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010800
              + LEAF + Comment Marker + Comment Marker + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010600 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.020a0000
              + 0901 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Filler +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010900
              + LEAF + Filler + Filler + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 13 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationGroup +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010a00
              + LEAF + Operation Group + Operation Group + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300506.00000000
              + 0b01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06020000
              + 0b02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.060a0000
              + 0b03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050c.00000000
              + 0b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02060000
              + 0b05 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NestedScope +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010b00
              + LEAF + Nested Scope + Nested Scope + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06070000
              + 0c01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Pulldown +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010c00
              + LEAF + Pulldown + Pulldown + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02070000
              + 0d01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.02000000
              + 0d02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.01000000
              + 0d03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05401001.03000000
              + 0d04 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ScopeReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010d00
              + LEAF + Scope Reference + Scope Reference + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010103.03000000
              + 0e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010103.04000000
              + 0e02 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Selector +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010e00
              + LEAF + Selector + Selector + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02090000
              + 0f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06080000
              + 0f02 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Sequence +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01010f00
              + LEAF + Sequence + Sequence + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06090000
              + 1001 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourceReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011000
              + LEAF + Source Reference + Source Reference + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010103.01000000
              + 1101 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010103.02000000
              + 1102 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.06010103.07000000
              + 1103 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010103.08000000
              + 1104 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourceClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011100
              + LEAF + Source Clip + Source Clip + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.01040000
              + 1201 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050200
              + 1202 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300501.00000000
              + 1203 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050300
              + 1204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300502.00000000
              + 1205 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011200
              + LEAF + Text Clip + Text Clip + AAF ASPA[0.8] + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011300
              + LEAF + HTML Clip + HTML Clip + AAF + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300601.01000000
              + 1401 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300602.01000000
              + 1402 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Timecode +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011400
              + LEAF + Timecode + Timecode + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020103.01050000
              + 1501 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04040101.02060000
              + 1502 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04040101.05000000
              + 1503 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimecodeStream +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011500
              + LEAF + Timecode Stream + Timecode Stream + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04040101.02010000
              + 1601 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04070300.00000000
              + 1602 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04040201.00000000
              + 1603 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimecodeStream12M +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011600
              + LEAF + Timecode Stream 12M + Timecode Stream 12M + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.04040101.04000000
              + 1701 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Transition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011700
              + LEAF + Transition + Transition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02050000
              + 1801 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.01060000
              + 1802 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContentStorage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011800
              + LEAF + Content Storage + Content Storage + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.05010000
              + 1901 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05020000
              + 1902 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ControlPoint +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011900
              + LEAF + Control Point + Control Point + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.0530050d.00000000
              + 1a02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.10020100
              + 1a03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05300508.00000000
              + 1a04 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DefinitionObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00
              + LEAF + Definition Object + Definition Object + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01011503.00000000
              + 1b01 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01070102.03010000
              + 1b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020301.02010000
              + 1b03 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DataDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00
              + LEAF + Data Definition + Data Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00
              + LEAF + Operation Definition + Operation Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300509.00000000
              + 1e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.05300503.00000000
              + 1e02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.04010000
              + 1e03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050a.00000000
              + 1e06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300504.00000000
              + 1e07 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.05300505.00000000
              + 1e08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.03020000
              + 1e09 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ParameterDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00
              + LEAF + Parameter Definition + Parameter Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01060000
              + 1f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.0530050b.01000000
              + 1f03 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PluginDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00
              + LEAF + Plugin Definition + Plugin Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05200901.00000000
              + 2203 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03030301.03000000
              + 2204 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03030301.02010000
              + 2205 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + 2206 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.020b0000
              + 2207 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.03000000
              + 2208 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200902.00000000
              + 2209 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200903.00000000
              + 220a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200904.00000000
              + 220b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200905.00000000
              + 220c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200906.00000000
              + 220d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200907.00000000
              + 220e + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200908.00000000
              + 220f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200909.00000000
              + 2210 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090a.00000000
              + 2211 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090b.00000000
              + 2212 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090c.00000000
              + 2213 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090d.00000000
              + 2214 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090e.00000000
              + 2215 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0520090f.00000000
              + 2216 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CodecDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00
              + LEAF + Codec Definition + Codec Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01070000
              + 2301 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.03010000
              + 2302 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContainerDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012000
              + LEAF + Container Definition + Container Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03010201.03000000
              + 2401 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + InterpolationDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012100
              + LEAF + Interpolation Definition + Interpolation Definition + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Dictionary +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012200
              + LEAF + Dictionary + Dictionary + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.05030000
              + 2603 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05040000
              + 2604 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05050000
              + 2605 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05060000
              + 2606 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05070000
              + 2607 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05080000
              + 2608 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.05090000
              + 2609 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.050a0000
              + 260a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.050b0000
              + 260b + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceData +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012300
              + LEAF + Essence Data + Essence Data + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010106.01000000
              + 2701 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04070200.00000000
              + 2702 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010102.01000000
              + 2b01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + 3f07 + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + 3f06 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040504.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04060207.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040505.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040506.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012400
              + LEAF + Essence Descriptor + Essence Descriptor + AAF + Item name in ST 377-1 is Generic Descriptor. Section B.2. + AAF Object Specification SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.06030000
              + 2f01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010104.06100000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FileDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012500
              + LEAF + File Descriptor + File Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.04060101.00000000
              + 3001 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04060102.00000000
              + 3002 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01020000
              + 3004 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.01030000
              + 3005 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010103.05000000
              + 3006 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AIFCDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012600
              + LEAF + AIFC Descriptor + AIFC Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03030302.02000000
              + 3101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PictureDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012700
              + LEAF + Picture Descriptor + Picture Descriptor + AAF~DigitalImageDescriptor + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010601.00000000
              + 3201 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010502.01000000
              + 3202 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010502.02000000
              + 3203 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.07000000
              + 3204 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.08000000
              + 3205 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.09000000
              + 3206 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0a000000
              + 3207 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0b000000
              + 3208 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0c000000
              + 3209 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0d000000
              + 320a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.0e000000
              + 320b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010301.04000000
              + 320c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04010302.05000000
              + 320d + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010101.01000000
              + 320e + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200102.00000000
              + 320f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01010200
              + 3210 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010109.04010201.01060100
              + 3219 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010201.01030100
              + 321a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180101.00000000
              + 3211 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010301.06000000
              + 3212 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180102.00000000
              + 3213 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180103.00000000
              + 3214 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04050113.00000000
              + 3215 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.08000000
              + 3216 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.07000000
              + 3217 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010302.09000000
              + 3218 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010501.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010302.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04200401.01040000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CDCIDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012800
              + LEAF + CDCI Descriptor + CDCI Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010503.0a000000
              + 3301 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.05000000
              + 3302 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010501.06000000
              + 3303 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010503.03000000
              + 3304 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010503.04000000
              + 3305 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.05000000
              + 3306 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04180104.00000000
              + 3307 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010501.10000000
              + 3308 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.07000000
              + 3309 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03010201.0a000000
              + 330b + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RGBADescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012900
              + LEAF + RGBA Descriptor + RGBA Descriptor + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010503.06000000
              + 3401 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.08000000
              + 3403 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010503.09000000
              + 3404 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010404.01000000
              + 3405 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0b000000
              + 3406 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0c000000
              + 3407 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0d000000
              + 3408 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010503.0e000000
              + 3409 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012a00
              + LEAF + HTML Descriptor + HTML Descriptor + AAF ASPA[:0.8] + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TIFFDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012b00
              + LEAF + TIFF Descriptor + TIFF Descriptor + AAF + Not used in AAF v1.0 + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05020103.01010000
              + 3701 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.06080201.00000000
              + 3702 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04010302.03000000
              + 3703 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04010302.04000000
              + 3704 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05020103.01020000
              + 3705 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03030302.03000000
              + 3706 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + WAVEDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012c00
              + LEAF + WAVE Descriptor + WAVE Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03030302.01000000
              + 3801 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FilmDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012d00
              + LEAF + Film Descriptor + Film Desciptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04100103.01080000
              + 3901 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010802.03000000
              + 3902 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01030000
              + 3903 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.02030000
              + 3904 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01060100
              + 3905 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01050100
              + 3906 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01040100
              + 3907 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100103.01070100
              + 3908 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TapeDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012e00
              + LEAF + Tape Descriptor + Tape Descriptor + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04100101.01010000
              + 3a01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04010401.01000000
              + 3a02 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.0d010101.01010100
              + 3a03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.03000000
              + 3a04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.04010000
              + 3a05 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.02010000
              + 3a06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.06010000
              + 3a07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04100101.05010000
              + 3a08 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Preface +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00
              + LEAF + Preface + Preface + ASPA[0.8]~Header AAF~Header + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03010201.02000000
              + 3b01 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02040000
              + 3b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02010000
              + 3b03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02020000
              + 3b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010201.05000000
              + 3b05 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06040000
              + 3b06 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010201.04000000
              + 3b07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010104.06010104.01080000
              + 3b08 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + 3b09 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + 3b0a + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02020000
              + 3b0b + false + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040503.00000000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010100
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010200
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010300
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.40010400
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010801.01010000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Identification +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013000
              + LEAF + Identification + Identification + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05200701.02010000
              + 3c01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.03010000
              + 3c02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.04000000
              + 3c03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.05010000
              + 3c04 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.07000000
              + 3c05 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02030000
              + 3c06 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.0a000000
              + 3c07 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.06010000
              + 3c08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05200701.01000000
              + 3c09 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Locator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013100
              + LEAF + Locator + Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NetworkLocator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013200
              + LEAF + Network Locator + Network Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01020101.01000000
              + 4001 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextLocator +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013300
              + LEAF + Text Locator + Text Locator + AAF + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01040102.01000000
              + 4101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Package +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013400
              + LEAF + Package + Package + AAF~Mob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011510.00000000
              + 4401 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.01030302.01000000
              + 4402 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06050000
              + 4403 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.02050000
              + 4404 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020110.01030000
              + 4405 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020102.0c000000
              + 4406 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010210.03000000
              + 4407 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010210.07000000
              + 4409 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.05010108.00000000
              + 4408 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CompositionPackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013500
              + LEAF + Composition Package + Composition Package + AAF~CompositionMob + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.07020201.01050100
              + 4501 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05300201.00000000
              + 4502 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.05300403.00000000
              + 4503 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.010a0000
              + 4504 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MaterialPackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013600
              + LEAF + Material Package + Material Package + AAF~MasterMob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SourcePackage +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013700
              + LEAF + Source Package + Source Package + AAF~SourceMob + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.02030000
              + 4701 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Track +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013800
              + LEAF + Track + Track + AAF~MobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01070101.00000000
              + 4801 + false + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01070102.01000000
              + 4802 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.02040000
              + 4803 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.01040103.00000000
              + 4804 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EventTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013900
              + LEAF + Event Package + Event Package + AAF~EventMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300402.00000000
              + 4901 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020103.010b0000
              + 4902 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StaticTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013a00
              + LEAF + Static Track + Static Track + AAF~StaticMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TimelineTrack +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013b00
              + LEAF + Timeline Track + Timeline Track + AAF~TimelineMobSlot + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300405.00000000
              + 4b01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.07020103.01030000
              + 4b02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.010c0000
              + 4b03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.02030000
              + 4b04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020103.010d0000
              + 4b05 + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.07020103.010e0000
              + 4b06 + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.07020103.02040000
              + 4b07 + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Parameter +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00
              + LEAF + Parameter + Parameter + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01040000
              + 4c01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ConstantValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013d00
              + LEAF + Constant Value + Constant Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.05300507.00000000
              + 4d01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VaryingValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013e00
              + LEAF + Varying Value + Varying Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010104.01050000
              + 4e01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010104.06060000
              + 4e02 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TaggedValue +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01013f00
              + LEAF + Tagged Value + Tagged Value + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03020102.09010000
              + 5001 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020102.0a010000
              + 5003 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + KLVData +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014000
              + LEAF + KLV Data + KLV Data + AAF + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010210.02000000
              + 5101 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014100
              + LEAF + Descriptive Marker + Descriptive Marker + AAF[1.1:]~DescriptiveMarker ASPA[:0.8]~DMSegment mxflib[:1.19]~DMSegment + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.01070105.00000000
              + 6102 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.020c0000
              + 6101 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0e000000
              + true + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04060804.00000000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.10000000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SoundDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014200
              + LEAF + Sound Descriptor + Sound Descriptor + AAF[1.1:] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020301.01010000
              + 3d03 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04020301.04000000
              + 3d02 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.01010101.04020101.03000000
              + 3d04 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010101.04020101.01000000
              + 3d05 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020101.04000000
              + 3d07 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04020303.04000000
              + 3d01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04020701.00000000
              + 3d0c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.04020402.00000000
              + 3d06 + false + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020101.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020101.06000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DataEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014300
              + LEAF + Data Essence Descriptor + Data Essence Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.04030302.00000000
              + 3e01 + false + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MultipleDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014400
              + LEAF + Multiple Descriptor + Multiple Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.06010104.060b0000
              + 3f01 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014500
              + LEAF + Descriptive Clip + Descriptive Clip + AAF[1.12:]~DescriptiveClip mxflib[:1.19]~DMSourceClip + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01070106.00000000
              + 6103 + false + true + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DateTimeDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014600
              + LEAF + Date Time Descriptor + Date Time Descriptor + AAF Object Specification SMPTE 385M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04040102.01000000
              + 3501 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.02000000
              + 3502 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.03000000
              + 3503 + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040102.04000000
              + 3504 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AES3PCMDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014700
              + LEAF + AES3 PCM Descriptor + AES3 PCM Descriptor + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020501.06000000
              + 3d0d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.03000000
              + 3d0f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.01000000
              + 3d08 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.02000000
              + 3d10 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.03000000
              + 3d11 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.04000000
              + 3d12 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020501.05000000
              + 3d13 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + WAVEPCMDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014800
              + LEAF + WAVE PCM Descriptor + WAVE PCM Descriptor + AAF[1.1:]~PCMDescriptor mxflib[:1.19]~PCMDescriptor + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020302.01000000
              + 3d0a + false + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.02000000
              + 3d0b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020303.05000000
              + 3d09 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010107.04020101.05000000
              + 3d32 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.06000000
              + 3d29 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.07000000
              + 3d2a + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.08000000
              + 3d2b + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.09000000
              + 3d2c + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0a000000
              + 3d2d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0b000000
              + 3d2e + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0c000000
              + 3d2f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0d000000
              + 3d30 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.04020301.0e000000
              + 3d31 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PhysicalDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014900
              + LEAF + Physical Descriptor + Physical Descriptor + AAF[1.1:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ImportDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014a00
              + LEAF + Import Descriptor + Import Descriptor + AAF[1.1:] ASPA[:0.8] + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RecordingDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014b00
              + LEAF + Recording Descriptor + Recording Descriptor + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TaggedValueDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014c00
              + LEAF + Tagged Value Definition + Tagged Value Definition + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.06010104.03050000
              + 4c11 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + KLVDataDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014d00
              + LEAF + KLV Data Definition + KLV Data Definition + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.06010104.03040000
              + 4d11 + false +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.01090000
              + 4d12 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AuxiliaryDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014e00
              + LEAF + Auxiliary Descriptor + Auxiliary Descriptor + AAF[1.1:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + 4e11 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04090300.00000000
              + 4e12 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RIFFChunk +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01014f00
              + LEAF + RIFF Chunk + RIFF Chunk + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.04060802.00000000
              + 4f01 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04060903.00000000
              + 4f02 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010108.04070400.00000000
              + 4f03 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BWFImportDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015000
              + LEAF + BWF Import Descriptor + BWF Import Descriptor + AAF[1.12:] + AAF Object Specification SMPTE 382M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04020302.05000000
              + 3d15 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020302.06000000
              + 3d16 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.01010000
              + 3d21 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.02010000
              + 3d22 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.03010000
              + 3d23 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.04010000
              + 3d24 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.05010000
              + 3d25 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.06010000
              + 3d26 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.07010000
              + 3d27 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04020502.08010000
              + 3d28 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.060f0000
              + 3d33 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEGVideoDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015100
              + LEAF + MPEG Video Descriptor + MPEG Video Descriptor + AAF[1.12:] ASPA[:0.8] + AAF Object Specification SMPTE 381M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012800 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.04010602.01020000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01030000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01040000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01050000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01060000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01070000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01080000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.01090000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.010b0000
              + false + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04010602.010a0000
              + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ParsedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015200
              + LEAF + Parsed Text Descriptor + Parsed Text Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.04090401.00000000
              + 5212 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SGMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015300
              + LEAF + SGML Descriptor + SGML Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015200 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + XMLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015400
              + LEAF + XML Descriptor + XML Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01020104.01000000
              + 5401 + false +
              + +
                urn:smpte:ul:060e2b34.01010108.01020106.01000000
              + 5402 + true +
              + +
                urn:smpte:ul:060e2b34.01010108.01030606.01000000
              + 5403 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HTMLParsedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015500
              + LEAF + HTML Parsed Text Descriptor + HTML Parsed Text Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01030604.01000000
              + 5501 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RP217Descriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015600
              + LEAF + RP217 Descriptor + RP217 Descriptor + AAF[1.3:] ASPA[:0.8] + AAF Object Specification RP 217 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.01030406.00000000
              + 5601 + false +
              + +
                urn:smpte:ul:060e2b34.01010109.01030407.00000000
              + 5602 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DynamicMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015700
              + LEAF + Dynamic Marker + Dynamic Marker + AAF[1.3:] ASPA[:0.8] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.07020501.00000000
              + 5701 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.07020503.00000000
              + 5702 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.07020502.00000000
              + 5703 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DynamicClip +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015800
              + LEAF + Dynamic Clip + Dynamic Clip + AAF[1.3:] ASPA + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015700 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.06010103.09000000
              + 5801 + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0a000000
              + 5802 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0b000000
              + 5803 + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06010103.0c000000
              + 5804 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015900
              + LEAF + Sub-Descriptor + Sub-Descriptor + AAF[1.2:] AAF[:1.13] ASPA + AAF Object Specification SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + JPEG2000SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015a00
              + LEAF + JPEG 2000 Sub-Descriptor + JPEG 2000 Sub-Descriptor + AAF[1.2:] ASPA + AAF Object Specification SMPTE 422M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010a.04010603.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.04000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.05000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.06000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.07000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.08000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.09000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0a000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0b000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.04010603.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010603.0e000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VBIDataDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015b00
              + LEAF + VBI Data Descriptor + VBI Data Descriptor + MXF + SMPTE ST 436-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ANCDataDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015c00
              + LEAF + ANC Data Descriptor + ANC Data Descriptor + MXF + SMPTE ST 436-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCPCMSoundDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015d00
              + LEAF + DC PCM Sound Descriptor + DC PCM Sound Descriptor + MXF + SMPTE 429-10M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEGAudioDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015e00
              + LEAF + MPEG Audio Descriptor + MPEG Audio Descriptor + SMPTE ST 381-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010a.04020403.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020403.01050000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC1VideoDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01015f00
              + LEAF + VC-1 Video Descriptor + VC-1 Video Descriptor + AAF[1.2:] + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012800 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.04010604.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010c.04010604.0a000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PackageMarker +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016000
              + LEAF + Package Marker + Package Marker + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + 06 53 13 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationPlugInObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016100
              + LEAF + Application Plug-In Object + Application Plug-In Object + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016600 + 06 53 13 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0d000000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.04060803.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0f000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationReferencedObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016200
              + LEAF + Application Referenced Object + Application Referenced Object + MXF + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016600 + 06 53 13 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0b000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + StereoscopicPictureSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016300
              + LEAF + Stereoscopic Picture Sub-Descriptor + Stereoscopic Picture Sub-Descriptor + MXF + SMPTE 429-10M + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCTimedTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016400
              + LEAF + DC Timed Text Descriptor + DC Timed Text Descriptor + MXF + SMPTE ST 429-5, SMPTE ST 429-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.01011512.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010c.04090500.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010108.01020105.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.03010102.02160000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.06010102.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.06010102.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.06010102.06000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DCTimedTextResourceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016500
              + LEAF + DC Timed Text Resource Sub-Descriptor + DC Timed Text Resource Sub-Descriptor + MXF + SMPTE ST 429-5 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.01011513.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010107.04090201.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ApplicationObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016600
              + LEAF + Application Object + Application Object + MXF + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.06010104.010b0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContainerConstraintsSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016700
              + LEAF + Container Constraints Sub-Descriptor + Container Constraints Sub-Descriptor + MXF + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MPEG4VisualSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016800
              + LEAF + MPEG-4 Visual Sub-Descriptor + MPEG-4 Visual Sub-Descriptor + MXF + SMPTE ST 381-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TIFFPictureEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016900
              + LEAF + TIFF Picture Essence Descriptor + TIFF Picture Essence Descriptor + SMPTE ST 2055 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01012700 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MCALabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00
              + LEAF + MCA Label Sub-Descriptor + MCA Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.05000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030701.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0103040a.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.03150000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051000.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01051300.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01040105.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.01040106.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.03020102.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.03020102.21000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AudioChannelLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016b00
              + LEAF + Audio Channel Label Sub-Descriptor + Audio Channel Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.06000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SoundfieldGroupLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016c00
              + LEAF + Soundfield Group Label Sub-Descriptor + Soundfield Group Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030701.04000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GroupOfSoundfieldGroupsLabelSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016d00
              + LEAF + Group Of Soundfield Groups Label Sub-Descriptor + Group Of Soundfield Groups Label Sub-Descriptor + AAF[2.0:] + SMPTE ST 377-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016a00 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AVCSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016e00
              + LEAF + AVC Sub-Descriptor + AVC Sub-Descriptor + AAF[2.0:] + SMPTE ST 381-3 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01080000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01090000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010a0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010b0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010e0000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.010f0000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01100000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01110000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010606.01140000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EventTextDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01016f00
              + LEAF + Event Text Descriptor + Event Text Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.03020108.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + STLDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017000
              + LEAF + STL Descriptor + STL Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01016f00 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.07020102.02020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + STLSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017100
              + LEAF + STL Sub-Descriptor + STL Sub-Descriptor + SMPTE ST 2075 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.03020108.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02150000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OperationsStereoscopicSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017200
              + LEAF + Operations Stereoscopic Sub-Descriptor + Operations Stereoscopic Sub-Descriptor + SMPTE ST 2070-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01030703.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.01030703.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AuxDataEssenceDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017300
              + LEAF + Aux Data Essence Descriptor + Aux Data Essence Descriptor + SMPTE ST 429-14 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC2SubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017400
              + LEAF + VC-2 Sub-Descriptor + VC-2 Sub-Descriptor + MXF + SMPTE ST 2042-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010607.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.04000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010607.07000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMCVTTargetSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017500
              + LEAF + DMCVT Target SubDescriptor + Identifies a DMCVT Target SubDescriptor + SMPTE ST 2094-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.05310201.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310202.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310203.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310209.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020a.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020b.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0531020c.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310227.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310236.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.05310237.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC5BayerPictureEssenceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017600
              + LEAF + VC-5 Bayer Picture Essence Sub-Descriptor + Key Value for VC-5 Bayer Picture Essence Sub-Descriptor + SMPTE ST 2073-10 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010608.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010608.03000000
              + true + false + 0 +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010608.04000000
              + true + false + 4095 +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + VC5CDCIPictureEssenceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017700
              + LEAF + VC-5 CDCI Picture Essence Sub-Descriptor + Key Value for the VC-5 CDCI Picture Essence Sub-Descriptor + SMPTE ST 2073-10 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010608.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AACSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017800
              + LEAF + AAC SubDescriptor + Advanced Audio Coding SubDescriptor + MXF + SMPTE ST 381-4 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04020403.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020403.01030000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ACESPictureSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017900
              + LEAF + ACES Picture SubDescriptor + ACES Picture SubDescriptor + SMPTE ST 2067-50 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.0401060a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0401060a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0401060a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0401060a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.0401060a.05000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TargetFrameSubDescriptor +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00
              + LEAF + Target Frame SubDescriptor + Target Frame SubDescriptor + SMPTE ST 2067-50 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 53 + + +
                urn:smpte:ul:060e2b34.0101010e.04010609.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.04000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.05000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.06000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.07000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.08000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04010609.0a000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OPDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017d00
              + LEAF + Operational Pattern Definition + Operational Pattern Definition + AAF[2.0:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CompressionDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017e00
              + LEAF + Compression Definition + Compression Definition + AAF[2.0:] + AAF Object Specification + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + AbstractObject +
                urn:smpte:ul:060e2b34.027f0101.0d010101.01017f00
              + LEAF + Abstract Object + Abstract Object + AAF mxflib + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDefinitions +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02000000
              + NODE + Meta-Definitions + Meta-Definitions + AAF + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ClassDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02010000
              + LEAF + Class Definition + Class Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.01000000
              + 08 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.02000000
              + 09 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.03000000
              + 0a + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PropertyDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02020000
              + LEAF + Property Definition + Property Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.04000000
              + 0b + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010202.01000000
              + 0c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.05000000
              + 0d + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.06000000
              + 0e + false + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.22000000
              + 2b + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02030000
              + LEAF + Type Definition + Type Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionInteger +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02040000
              + LEAF + Type Definition Integer + Type Definition Integer + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010203.01000000
              + 0f + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.02000000
              + 10 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionStrongObjectReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02050000
              + LEAF + Type Definition Strong Object Reference + Type Definition Strong Object Reference + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.09000000
              + 11 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionWeakObjectReference +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02060000
              + LEAF + Type Definition Weak Object Reference + Type Definition Weak Object Reference + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0a000000
              + 12 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.0b000000
              + 13 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionEnumeration +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02070000
              + LEAF + Type Definition Enumeration + Type Definition Enumeration + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0b000000
              + 14 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.04000000
              + 15 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.05000000
              + 16 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionFixedArray +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02080000
              + LEAF + Type Definition Fixed Array + Type Definition Fixed Array + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0c000000
              + 17 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.03000000
              + 18 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionVariableArray +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02090000
              + LEAF + Type Definition Variable Array + Type Definition Variable Array + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0d000000
              + 19 + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionSet +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020a0000
              + LEAF + Type Definition Set + Type Definition Set + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0e000000
              + 1a + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionString +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020b0000
              + LEAF + Type Definition String + Type Definition String + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.0f000000
              + 1b + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionStream +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020c0000
              + LEAF + Type Definition Stream + Type Definition Stream + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionRecord +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020d0000
              + LEAF + Type Definition Record + Type Definition Record + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.11000000
              + 1c + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.06000000
              + 1d + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionRename +
                urn:smpte:ul:060e2b34.027f0101.0d010101.020e0000
              + LEAF + Type Definition Rename + Type Definition Rename + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.12000000
              + 1e + false + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionExtendibleEnumeration +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02200000
              + LEAF + Type Definition Extendible Enumeration + Type Definition Extendible Enumeration + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.03010203.07000000
              + 1f + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.03010203.08000000
              + 20 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionIndirect +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02210000
              + LEAF + Type Definition Indirect + Type Definition Indirect + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionOpaque +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02220000
              + LEAF + Type Definition Opaque + Type Definition Opaque + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02210000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TypeDefinitionCharacter +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02230000
              + LEAF + Type Definition Character + Type Definition Character + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02240000
              + LEAF + Meta-Definition + Meta-Definition + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.13000000
              + 05 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010102.03020401.02010000
              + 06 + false + false +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.14010000
              + 07 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MetaDictionary +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02250000
              + LEAF + Meta-Dictionary + Meta-Dictionary + AAF + AAF Object Specification + false + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.06010107.07000000
              + 03 + false + true +
              + +
                urn:smpte:ul:060e2b34.01010102.06010107.08000000
              + 04 + false + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ExtensionScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02260000
              + LEAF + Extension Scheme + MXF + SMPTE ST 377-2 + false + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1b000000
              + 24 + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1c000000
              + 25 + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1d000000
              + 26 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1e000000
              + 27 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1f000000
              + 28 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PropertyAliasDefinition +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02270000
              + LEAF + Property Alias Definition + MXF + SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.06010107.20000000
              + 29 + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ExtendibleEnumerationElement +
                urn:smpte:ul:060e2b34.027f0101.0d010101.02280000
              + LEAF + Extendible Enumeration Element + MXF + SMPTE ST 377-2 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.06010107.21000000
              + 2a + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Root +
                urn:smpte:ul:060e2b34.027f0101.0d010101.03000000
              + LEAF + Root + Root + AAF MXF + AAF Object Specification, SMPTE ST 377-2 + false + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.16000000
              + 01 + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.17000000
              + 02 + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.18000000
              + 21 + true +
              + +
                urn:smpte:ul:060e2b34.0101010a.06010107.19000000
              + 22 + true +
              + +
                urn:smpte:ul:060e2b34.0101010d.06010107.1a000000
              + 23 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructure +
                urn:smpte:ul:060e2b34.027f0101.0d010200.00000000
              + NODE + MXF File Structure + MXF File Structure + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructureVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010201.00000000
              + NODE + MXF File Structure Version 1 + MXF File Structure Version 1 + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + MXFFileStructureSetsAndPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01000000
              + NODE + MXF File Structure Sets and Packs + MXF File Structure Sets and Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01010000
              + LEAF + Partition Pack + Partition Pack + MXF + SMPTE 377M + false + false + 05 + + +
                urn:smpte:ul:060e2b34.01010104.03010201.06000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.03010201.07000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.03010201.09000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101003.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101002.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06101005.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060901.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060902.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.06080102.01030000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020203.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010105.01020210.02010000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020000
              + LEAF + Header Partition Pack + Header Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionOpenIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020100
              + LEAF + Header Partition Open Incomplete + Header Partition Open Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020200
              + LEAF + Header Partition Closed Incomplete + Header Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionOpenComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020300
              + LEAF + Header Partition Open Complete + Header Partition Open Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + HeaderPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01020400
              + LEAF + Header Partition Closed Complete + Header Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01020000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030000
              + LEAF + Body Partition Pack + Body Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionOpenIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030100
              + LEAF + Body Partition Open Incomplete + Body Partition Open Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030200
              + LEAF + Body Partition Closed Incomplete + Body Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionOpenComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030300
              + LEAF + Body Partition Open Complete + Body Partition Open Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + BodyPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01030400
              + LEAF + Body Partition Closed Complete + Body Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericStreamPartition +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01031100
              + LEAF + Generic Stream Partition + Generic Stream Partition + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01030000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040000
              + LEAF + Footer Partition Pack + Footer Partition Pack + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01010000 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionClosedIncomplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040200
              + LEAF + Footer Partition Closed Incomplete + Footer Partition Closed Incomplete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01040000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + FooterPartitionClosedComplete +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01040400
              + LEAF + Footer Partition Closed Complete + Footer Partition Closed Complete + MXF + SMPTE 377M + false + urn:smpte:ul:060e2b34.027f0101.0d010201.01040000 + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PrimerPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01050000
              + NODE + Primer Packs + Primer Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PrimerPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01050100
              + LEAF + PrimerPack + PrimerPack + MXF + SMPTE 377M + false + 05 + + +
                urn:smpte:ul:060e2b34.01010105.06010107.15000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + IndexTables +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01100000
              + NODE + Index Tables + Index Tables + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + IndexTableSegment +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01100100
              + LEAF + IndexTableSegment + IndexTableSegment + MXF + SMPTE 377M + false + 53 + + +
                urn:smpte:ul:060e2b34.01010101.01011502.00000000
              + 3c0a + false +
              + +
                urn:smpte:ul:060e2b34.01010105.05300406.00000000
              + 3f0b + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020103.010a0000
              + 3f0c + false +
              + +
                urn:smpte:ul:060e2b34.01010105.07020201.01020000
              + 3f0d + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04060201.00000000
              + 3f05 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030405.00000000
              + 3f06 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010104.01030404.00000000
              + 3f07 + false +
              + +
                urn:smpte:ul:060e2b34.01010104.04040401.01000000
              + 3f08 + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.04040401.07000000
              + 3f0e + true + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040401.06000000
              + 3f09 + true + true +
              + +
                urn:smpte:ul:060e2b34.01010105.04040402.05000000
              + 3f0a + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04060204.00000000
              + 3f0f + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010a.04060205.00000000
              + 3f10 + true + false +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040501.00000000
              + 3f11 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04060206.00000000
              + 3f12 + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04040502.00000000
              + 3f13 + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + OtherMXFPacks +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01110000
              + NODE + Other MXF Packs + Other MXF Packs + MXF + SMPTE 377M + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + RandomIndexPack +
                urn:smpte:ul:060e2b34.027f0101.0d010201.01110100
              + LEAF + Random Index Pack + Random Index Pack + MXF + SMPTE ST 377-1 + false + 05 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceContainerLabels +
                urn:smpte:ul:060e2b34.027f0101.0d010300.00000000
              + NODE + Essence Container Labels + Essence Container Labels + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EssenceContainerLabelsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010301.00000000
              + NODE + Essence Container Labels - Version 1 + Essence Container Labels - Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericContainerLabelsDeprecated +
                urn:smpte:ul:060e2b34.027f0101.0d010301.01000000
              + NODE + Generic Container Labels - Deprecated + Generic Container Labels - Deprecated + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericContainerLabels +
                urn:smpte:ul:060e2b34.027f0101.0d010301.02000000
              + NODE + Generic Container Labels + Generic Container Labels + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EncryptedEssence +
                urn:smpte:ul:060e2b34.027f0101.0d010301.027e0000
              + NODE + EncryptedEssence + EncryptedEssence + DCP + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EncryptedTriplet +
                urn:smpte:ul:060e2b34.027f0101.0d010301.027e0100
              + LEAF + Encrypted Triplet + Encrypted Triplet + DCP + SMPTE 429-6 + false + 04 + + +
                urn:smpte:ul:060e2b34.01010109.06010106.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06090201.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010102.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.04061002.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010106.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010109.06100500.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010109.02090302.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveObject +
                urn:smpte:ul:060e2b34.027f0101.0d010400.00000000
              + LEAF + Descriptive Object + Descriptive Object + AAF[1.1:]~DescriptiveObject mxflib[:1.19]~DM_Set ASPA~DM_Set + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.11000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DescriptiveFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.00000000
              + LEAF + Descriptive Framework + Descriptive Framework + AAF[1.1:]~DescriptiveFramework mxflib[:1.19]~DM_Framework ASPA~DM_Framework + SMPTE ST 377-1 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010c.05200701.0c000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1DescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01000000
              + NODE + DMS-1 Descriptive Metadata Scheme + DMS-1 Descriptive Metadata Scheme + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Frameworks +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010000
              + NODE + DMS-1 Frameworks + DMS-1 Frameworks + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ProductionFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010100
              + LEAF + Production Framework + Production Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.05010101.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ClipFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010200
              + LEAF + Clip Framework + Clip Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020504.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050c00.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.01011509.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07020110.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01050700.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020503.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401102
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SceneFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01010300
              + LEAF + Scene Framework + Scene Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.01050600.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400e02
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401101
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1TitleSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01100000
              + NODE + DMS-1 Title Sets + DMS-1 Title Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Titles +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01100100
              + LEAF + Titles Set + Titles Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.01050201.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.01050301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050a01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01050b01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.01050801.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1IdentificationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01110000
              + NODE + DMS-1 Identification Sets + DMS-1 Identification Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Identification +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01110100
              + LEAF + Identification Set + Identification Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.01080100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01080200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01020202.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.020a0101.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RelationshipSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01120000
              + NODE + DMS-1 Relationship Sets + DMS-1 Relationship Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GroupRelationship +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01120100
              + LEAF + Episodic Item Set + Episodic Item Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.02020301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02020601.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.08010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.06100100.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06100400.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02020400.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02020500.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1BrandingSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01130000
              + NODE + DMS-1 Branding Sets + DMS-1 Branding Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Branding +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01130100
              + LEAF + Branding Set + Branding Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01050d01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01050e01.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1PublicationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140000
              + NODE + DMS-1 Publication Sets + DMS-1 Publication Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Event +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140100
              + LEAF + Event Set + Event Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.05010102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07020102.07020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07020102.09020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.05400d01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Publication +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01140200
              + LEAF + Publication Set + Publication Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.02100201.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02100201.04010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1AwardsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01150000
              + NODE + DMS-1 Awards Sets + DMS-1 Awards Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Award +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01150100
              + LEAF + Award Set + Award Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020201.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020102.07100100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020201.04010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020201.05010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.03020201.06010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401301
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1CaptionsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01160000
              + NODE + DMS-1 Captions Sets + DMS-1 Captions Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CaptionsDescription +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01160100
              + LEAF + Captions Description Set + Captions Description Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.03010102.02120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.04030101.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1InterpretiveSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170000
              + NODE + DMS-1 Interpretive Sets + DMS-1 Interpretive Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Annotation +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170100
              + LEAF + Annotation Set + Annotation Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020106.0e010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.09010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0a010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0f010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.060d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.03401303
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + SettingPeriod +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170200
              + LEAF + Setting Period Set + Setting Period Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07020108.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020108.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020108.03010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Scripting +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170300
              + LEAF + Scripting Set + Scripting Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.03020106.0b010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0c010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.06010104.060e0000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Classification +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170400
              + LEAF + Classification Set + Classification Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.03020102.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f01
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Shot +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170500
              + LEAF + Shot Set + Shot Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.07020103.01090000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07020201.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01070107.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020106.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020501.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03020502.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402302
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401200
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Keypoint +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170600
              + LEAF + Key Point Set + Key Point Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.10010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020102.11010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020103.01070000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CueWords +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01170800
              + LEAF + Cue Words Set + Cue Words Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.03020102.0e010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RoleSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01180000
              + NODE + DMS-1 Role Sets + DMS-1 Role Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Participant +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01180100
              + LEAF + Participant Role Set + Participant Role Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01011540.01010000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.01010103.02300102.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300501.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300501.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300502.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401501
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactCollections +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01190000
              + NODE + DMS-1 Contact Collections + DMS-1 Contact Collections + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ContactsList +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01190100
              + LEAF + Contacts List Set + Contacts List Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401600
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0000
              + NODE + DMS-1 Contact Sets + DMS-1 Contact Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Person +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0200
              + LEAF + Person Set + Person Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02300603.01010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.01020100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01080100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010a0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01050100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010b0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01060100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010c0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.01070100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.02300603.01090100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010d0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.02300603.010e0100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401502
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Organization +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0300
              + LEAF + Organisation Set + Organisation Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02300201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300603.03010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.010a0201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02300602.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Location +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011a0400
              + LEAF + Location Set + Location Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07012002.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07012002.02010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ContactInformationSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0000
              + NODE + DMS-1 Contact Information Sets + DMS-1 Contact Information Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Address +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0100
              + LEAF + Address Set + Address Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010101
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.04011101
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.04011201
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011401
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010201
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010401
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010501
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010601
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010701
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.04010801
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.07012001.04011601
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.06010104.05401f04
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Communications +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011b0200
              + LEAF + Communications Set + Communications Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.07012001.10030400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07012001.10030100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07012001.10030500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.07012001.10030200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.10030301
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.07012001.10030601
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1RightsSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0000
              + NODE + DMS-1 Rights Sets + DMS-1 Rights Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Contract +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0100
              + LEAF + Contract Set + Contract Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.02010200.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401302
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Rights +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011c0200
              + LEAF + Rights Set + Rights Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010103.02050102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050301.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050302.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.07012001.03050100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050201.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050403.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010108.02050404.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.02050202.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020120.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.07020120.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.02050401.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1FormatSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011d0000
              + NODE + DMS-1 Format Sets + DMS-1 Format Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + PictureFormat +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011d0100
              + LEAF + Picture Format Set + Picture Format Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.04010101.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.04010101.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.03020106.04010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ParametricSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011e0000
              + NODE + DMS-1 Parametric Sets + DMS-1 Parametric Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DeviceParameters +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011e0100
              + LEAF + Device Parameters Set + Device Parameters Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.01012008.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012001.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0101200c.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010102.01012005.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010102.010a0101.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012003.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.01012004.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03030310.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f03
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1NameValueSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011f0000
              + NODE + DMS-1 Name-Value Sets + DMS-1 Name-Value Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + NameValue +
                urn:smpte:ul:060e2b34.027f0101.0d010401.011f0100
              + LEAF + Name-Value Set + Name-Value Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.0301020a.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0301020a.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.01020201.00000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1ProjectSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200000
              + NODE + DMS-1 Project Sets + DMS-1 Project Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Processing +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200100
              + LEAF + Processing Set + Processing Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.05010103.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.03020302.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010103.05010104.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010104.05010107.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.05010301.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.05010302.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.05010303.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Project +
                urn:smpte:ul:060e2b34.027f0101.0d010401.01200200
              + LEAF + Project Set + Project Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010102.01030106.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01030108.01000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1AbstractSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0000
              + NODE + DMS-1 Abstract Sets + DMS-1 Abstract Sets + DMS-1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100
              + LEAF + DMS-1 Framework + DMS-1 Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010107.03010102.02130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.03020102.15010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.01050f01.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03110000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010107.03010102.03130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.060c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.03401600
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + ProductionClipFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f0200
              + LEAF + Production/Clip Framework + Production/Clip Framework + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f0100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.06010104.05400c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02401d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.02402100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS1Object +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000
              + LEAF + DMS-1 Set + DMS-1 Set + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextLanguage +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100
              + LEAF + TextLanguage + TextLanguage + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Thesaurus +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200
              + LEAF + Thesaurus + Thesaurus + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1100 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010104.03020102.02010000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + Contact +
                urn:smpte:ul:060e2b34.027f0101.0d010401.017f1a00
              + LEAF + Contact + Contact + DMS-1 + SMPTE 380M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.017f1200 + false + 06 53 + + +
                urn:smpte:ul:060e2b34.01010108.01011540.01020000
              + true + false +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401f02
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.06010104.05401700
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMSCryptoDescriptiveSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02000000
              + NODE + DMS-Crypto Descriptive Sets + DMS-Crypto Descriptive Sets + DMS-Crypto + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CryptographicFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02010000
              + LEAF + Cryptographic Framework + Cryptographic Framework + DMS-Crypto + SMPTE 429-6M + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.06010104.020d0000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + CryptographicContext +
                urn:smpte:ul:060e2b34.027f0101.0d010401.02020000
              + LEAF + Cryptographic Context + Cryptographic Context + DMS-Crypto + SMPTE 429-6M + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.01010109.01011511.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.06010102.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.01000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090301.02000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010109.02090302.01000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.027f0101.0d010401.03000000
              + NODE + DMS AS-03 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + DMS_AS_03_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.03010000
              + LEAF + DMS AS-03 Framework + AS_03 Descriptive Metadata + AMWA Application Specification AS-03 MXF Program Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010500
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010401.03010900
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedDescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04000000
              + NODE + Text-based Descriptive Metadata Scheme + Text-based Descriptive Metadata Scheme + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedFrameworks +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04010000
              + NODE + Text-based Frameworks + Text-based Frameworks + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04010100
              + LEAF + Text-based Framework + Text-based Framework + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.06010104.05410100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedDescriptiveMetadataSets +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020000
              + NODE + Text-based Descriptive Metadata Sets + Text-based Descriptive Metadata Sets + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + GenericStreamTextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020100
              + LEAF + Generic Stream Text-based Set + Generic Stream Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.01030408.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + UTF8TextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020200
              + LEAF + UTF-8 Text-based Set + UTF-8 Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.03010220.03010000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + UTF16TextBasedSet +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04020300
              + LEAF + UTF-16 Text-based Set + UTF-16 Text-based Set + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.03010220.03020000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedObjects +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04030000
              + NODE + Text-based Objects + Text-based Objects + DMS-Text + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + TextBasedObject +
                urn:smpte:ul:060e2b34.027f0101.0d010401.04030100
              + LEAF + Text-based Object + Text-based Object + DMS-Text + SMPTE RP 2057 + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.04060806.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.04090202.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03010102.02140000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.03020106.03020000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EIDRDescriptiveMetadataScheme +
                urn:smpte:ul:060e2b34.027f0101.0d010401.05000000
              + NODE + EIDR Descriptive Metadata Scheme + EIDR Descriptive Metadata Scheme + DMS-EIDR + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/aaf + EIDRFramework +
                urn:smpte:ul:060e2b34.027f0101.0d010401.05010000
              + LEAF + EIDR Framework + EIDR Descriptive Metadata Framework + DMS-EIDR + SMPTE RP 2089 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010e.01011514.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.027f0101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + ApplicationSpecificationsCommon +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01000000
              + NODE + Application Specifications Common + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + Segmentation +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01010000
              + NODE + Segmentation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common + DM_Segmentation_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.01010100
              + LEAF + DM_Segmentation_Framework + Segmentation metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a010000
              + NODE + DMS AS-10 Core + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 + DMS_AS_10_Core_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0a010100
              + LEAF + DMS AS-10 Core Framework + AS-10 Metadata Framework set + AMWA Application Specification AS-10 MXF for Production + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010102
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010103
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010104
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010105
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010106
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010107
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010108
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a010109
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010a
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0a01010b
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Core_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b010100
              + LEAF + DM_AS_11_Core_Framework + AS-11 core metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010102
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010103
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010104
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b01010a
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010105
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010106
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010107
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010108
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b010109
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b020000
              + NODE + AS-11 Segmentation + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 + DM_AS_11_Segmentation_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0b020100
              + LEAF + DM_AS_11_Segmentation_Framework + AS-11 segmentation metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010701.01010100 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0b020102
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + DMS_AS_12_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010100
              + LEAF + DMS_AS_12_Framework + AS_12 content provider independent metadata framework + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010101
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d010701.0c010102
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 + AS_12_DescriptiveObject +
                urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200
              + LEAF + AS_12_DescriptiveObject + AS_12 Commercial Distribution Slate Metadata + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.027f0101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Groups + http://www.ebu.ch/metadata/smpte/class13/group + EBU_UER +
                urn:smpte:ul:060e2b34.027f0101.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCore +
                urn:smpte:ul:060e2b34.027f0101.0d020100.00000000
              + NODE + ebucore + EBUCore DM_Framework + EBU Tech 3293 + false +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCoreMainFramework +
                urn:smpte:ul:060e2b34.027f0101.0d020101.00000000
              + LEAF + EBU Core Main Framework + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020101.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.03000000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020101.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coreMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d020102.00000000
              + LEAF + Core Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020102.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020102.17000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + metadataSchemaInformation +
                urn:smpte:ul:060e2b34.027f0101.0d020103.00000000
              + LEAF + Metadata Schema Information + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020103.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020103.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + identifier +
                urn:smpte:ul:060e2b34.027f0101.0d020104.00000000
              + LEAF + Identifier + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020104.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020104.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + title +
                urn:smpte:ul:060e2b34.027f0101.0d020105.00000000
              + LEAF + Title + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020105.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020105.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + alternativeTitle +
                urn:smpte:ul:060e2b34.027f0101.0d020106.00000000
              + LEAF + Alternative Title + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020106.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020106.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + subject +
                urn:smpte:ul:060e2b34.027f0101.0d020108.00000000
              + LEAF + Subject + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020108.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020108.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + description +
                urn:smpte:ul:060e2b34.027f0101.0d020109.00000000
              + LEAF + Description + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020109.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020109.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + date +
                urn:smpte:ul:060e2b34.027f0101.0d02010c.00000000
              + LEAF + Date + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010c.0f000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dateType +
                urn:smpte:ul:060e2b34.027f0101.0d02010d.00000000
              + LEAF + Date Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010d.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + type +
                urn:smpte:ul:060e2b34.027f0101.0d02010e.00000000
              + LEAF + Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02010e.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + objectType +
                urn:smpte:ul:060e2b34.027f0101.0d02010f.00000000
              + LEAF + Object Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02010f.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + genre +
                urn:smpte:ul:060e2b34.027f0101.0d020110.00000000
              + LEAF + Genre + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020110.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020110.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + targetAudience +
                urn:smpte:ul:060e2b34.027f0101.0d020111.00000000
              + LEAF + Target Audience + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020111.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020111.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + language +
                urn:smpte:ul:060e2b34.027f0101.0d020112.00000000
              + LEAF + Language + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020112.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020112.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coverage +
                urn:smpte:ul:060e2b34.027f0101.0d020113.00000000
              + LEAF + Coverage + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020113.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020113.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + spatial +
                urn:smpte:ul:060e2b34.027f0101.0d020114.00000000
              + LEAF + Spatial + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020114.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + location +
                urn:smpte:ul:060e2b34.027f0101.0d020115.00000000
              + LEAF + Location + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020115.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020115.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + coordinates +
                urn:smpte:ul:060e2b34.027f0101.0d020116.00000000
              + LEAF + Coordinates + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020116.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020116.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020116.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + temporal +
                urn:smpte:ul:060e2b34.027f0101.0d020117.00000000
              + LEAF + Temporal + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020117.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020117.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020117.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + periodOfTime +
                urn:smpte:ul:060e2b34.027f0101.0d020118.00000000
              + LEAF + Period Of Time + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020118.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020118.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rights +
                urn:smpte:ul:060e2b34.027f0101.0d020119.00000000
              + LEAF + Rights + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020119.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020119.10000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + version +
                urn:smpte:ul:060e2b34.027f0101.0d02011a.00000000
              + LEAF + Version + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011a.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rating +
                urn:smpte:ul:060e2b34.027f0101.0d02011b.00000000
              + LEAF + Rating + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011b.10000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationEvent +
                urn:smpte:ul:060e2b34.027f0101.0d02011c.00000000
              + LEAF + Publication Event + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011c.11000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationHistory +
                urn:smpte:ul:060e2b34.027f0101.0d02011d.00000000
              + LEAF + Publication History + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011d.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationChannel +
                urn:smpte:ul:060e2b34.027f0101.0d02011e.00000000
              + LEAF + Publication Channel + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011e.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationMedium +
                urn:smpte:ul:060e2b34.027f0101.0d02011f.00000000
              + LEAF + Publication Medium + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02011f.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + publicationService +
                urn:smpte:ul:060e2b34.027f0101.0d020120.00000000
              + LEAF + Publication Service + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020120.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020120.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + entity +
                urn:smpte:ul:060e2b34.027f0101.0d020121.00000000
              + LEAF + Entity + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020121.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020121.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + contact +
                urn:smpte:ul:060e2b34.027f0101.0d020122.00000000
              + LEAF + Contact + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020122.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020122.19000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + organization +
                urn:smpte:ul:060e2b34.027f0101.0d020123.00000000
              + LEAF + Organization + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020123.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020123.0c000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + department +
                urn:smpte:ul:060e2b34.027f0101.0d020124.00000000
              + LEAF + Department + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020124.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020124.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + details +
                urn:smpte:ul:060e2b34.027f0101.0d020125.00000000
              + LEAF + Details + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020125.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020125.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + address +
                urn:smpte:ul:060e2b34.027f0101.0d020126.00000000
              + LEAF + Address + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020126.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020126.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + region +
                urn:smpte:ul:060e2b34.027f0101.0d020127.00000000
              + LEAF + Region + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020127.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020127.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + compoundName +
                urn:smpte:ul:060e2b34.027f0101.0d020128.00000000
              + LEAF + Compound Name + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020128.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020128.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020128.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + role +
                urn:smpte:ul:060e2b34.027f0101.0d020129.00000000
              + LEAF + Role + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020129.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020129.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + countryType +
                urn:smpte:ul:060e2b34.027f0101.0d02012a.00000000
              + LEAF + Country Type + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012a.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + customRelation +
                urn:smpte:ul:060e2b34.027f0101.0d02012b.01000000
              + LEAF + Custom Relation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.01080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + basicRelation +
                urn:smpte:ul:060e2b34.027f0101.0d02012b.02000000
              + LEAF + basicRelation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02080000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02090000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020a0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020b0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020c0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020d0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020e0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.020f0000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02100000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02110000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02120000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02130000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02140000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02150000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02160000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02170000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012b.02180000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + planning +
                urn:smpte:ul:060e2b34.027f0101.0d02012c.00000000
              + LEAF + Planning + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012c.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + typeGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.01000000
              + LEAF + Type Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.01080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + formatGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.02000000
              + LEAF + Format Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.02080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + statusGroup +
                urn:smpte:ul:060e2b34.027f0101.0d02012d.03000000
              + LEAF + Status Group + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03030000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03040000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03050000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03060000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03070000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012d.03080000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + textualAnnotation +
                urn:smpte:ul:060e2b34.027f0101.0d02012e.00000000
              + LEAF + Textual Annotation + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02012e.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + basicLink +
                urn:smpte:ul:060e2b34.027f0101.0d02012f.00000000
              + LEAF + Basic Link + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02012f.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + format +
                urn:smpte:ul:060e2b34.027f0101.0d020130.00000000
              + LEAF + Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020130.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.22000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.23000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.24000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.25000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.26000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020130.27000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + videoFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020131.00000000
              + LEAF + Video Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020131.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.22000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.23000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.24000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.25000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.26000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.27000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020131.28000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + imageFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020132.00000000
              + LEAF + Image Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020132.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020132.1d000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020133.00000000
              + LEAF + Audio Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020133.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.1f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.20000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.21000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020133.22000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + track +
                urn:smpte:ul:060e2b34.027f0101.0d020134.00000000
              + LEAF + Track + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020134.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020134.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dataFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020135.00000000
              + LEAF + Data Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020135.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.17000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.18000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.19000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020135.1c000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + captioning +
                urn:smpte:ul:060e2b34.027f0101.0d020136.00000000
              + LEAF + Captioning + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020136.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020136.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + subtitling +
                urn:smpte:ul:060e2b34.027f0101.0d020137.00000000
              + LEAF + Subtitling + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020137.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020137.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + ancillaryData +
                urn:smpte:ul:060e2b34.027f0101.0d020138.00000000
              + LEAF + Ancillary Data + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020138.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020138.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + signingFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020139.00000000
              + LEAF + Signing Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020139.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020139.0a000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeString +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.01000000
              + LEAF + Technical Attribute String + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.01030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt8 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.02000000
              + LEAF + Technical Attribute Int8 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.02030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt16 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.03000000
              + LEAF + Technical Attribute Int16 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.03030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt32 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.04000000
              + LEAF + Technical Attribute Int32 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.04030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeInt64 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.05000000
              + LEAF + Technical Attribute Int64 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.05030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt8 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.06000000
              + LEAF + Technical Attribute UInt8 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.06030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt16 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.07000000
              + LEAF + Technical Attribute UInt16 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.07030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt32 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.08000000
              + LEAF + Technical Attribute UInt32 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.08030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeUInt64 +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.09000000
              + LEAF + Technical Attribute UInt64 + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.09030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeFloat +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0a000000
              + LEAF + Technical Attribute Float + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a020000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0a030000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeRational +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0b000000
              + LEAF + Technical Attribute Rational + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0b020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeAnyURI +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0c000000
              + LEAF + Technical Attribute AnyURI + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0c020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + technicalAttributeBoolean +
                urn:smpte:ul:060e2b34.027f0101.0d02013a.0d000000
              + LEAF + Technical Attribute Boolean + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d010000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013a.0d020000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + dimension +
                urn:smpte:ul:060e2b34.027f0101.0d02013b.00000000
              + LEAF + Dimension + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + packageInfo +
                urn:smpte:ul:060e2b34.027f0101.0d02013c.00000000
              + LEAF + Package Info + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013c.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + medium +
                urn:smpte:ul:060e2b34.027f0101.0d02013d.00000000
              + LEAF + Medium + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013d.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + codec +
                urn:smpte:ul:060e2b34.027f0101.0d02013e.00000000
              + LEAF + Codec + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013e.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + rational +
                urn:smpte:ul:060e2b34.027f0101.0d02013f.00000000
              + LEAF + Rational + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02013f.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + aspectRatio +
                urn:smpte:ul:060e2b34.027f0101.0d020140.00000000
              + LEAF + Aspect Ratio + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020140.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020140.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020140.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + height +
                urn:smpte:ul:060e2b34.027f0101.0d020141.00000000
              + LEAF + Height + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020141.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020141.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + width +
                urn:smpte:ul:060e2b34.027f0101.0d020142.00000000
              + LEAF + Width + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020142.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020142.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + part +
                urn:smpte:ul:060e2b34.027f0101.0d020143.00000000
              + LEAF + Part + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020143.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + partMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d020144.00000000
              + LEAF + Part Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020144.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020144.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + hash +
                urn:smpte:ul:060e2b34.027f0101.0d020146.00000000
              + LEAF + Hash + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020146.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020146.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + locator +
                urn:smpte:ul:060e2b34.027f0101.0d020147.00000000
              + LEAF + Locator + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020147.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020147.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + containerFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020148.00000000
              + LEAF + Container Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020148.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020148.15000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioFormatExtended +
                urn:smpte:ul:060e2b34.027f0101.0d020149.00000000
              + LEAF + Audio Format Extended + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020149.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020149.0e000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioProgramme +
                urn:smpte:ul:060e2b34.027f0101.0d02014a.00000000
              + LEAF + Audio Programme + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014a.0b000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + IDRef +
                urn:smpte:ul:060e2b34.027f0101.0d02014b.00000000
              + LEAF + IDRef + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014b.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + loudnessMetadata +
                urn:smpte:ul:060e2b34.027f0101.0d02014c.00000000
              + LEAF + Loudness Metadata + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014c.09000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioContent +
                urn:smpte:ul:060e2b34.027f0101.0d02014d.00000000
              + LEAF + Audio Content + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014d.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioObject +
                urn:smpte:ul:060e2b34.027f0101.0d02014e.00000000
              + LEAF + Audio Object + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014e.0d000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioPackFormat +
                urn:smpte:ul:060e2b34.027f0101.0d02014f.00000000
              + LEAF + Audio Pack Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02014f.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioChannelFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020150.00000000
              + LEAF + Audio Channel Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020150.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020150.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020151.00000000
              + LEAF + Audio Block Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020151.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.13000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.14000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.15000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.16000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020151.17000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockMatrixCoefficient +
                urn:smpte:ul:060e2b34.027f0101.0d020152.00000000
              + LEAF + Audio Block Matrix Coefficient + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020152.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020152.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioStreamFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020153.00000000
              + LEAF + Audio Stream Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020153.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020153.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioTrackFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020154.00000000
              + LEAF + Audio Track Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020154.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020154.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioTrackUID +
                urn:smpte:ul:060e2b34.027f0101.0d020155.00000000
              + LEAF + Audio Track UID + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020155.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020155.06000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioMXFLookup +
                urn:smpte:ul:060e2b34.027f0101.0d020156.00000000
              + LEAF + Audio MXF Lookup + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020156.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020156.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020156.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockMatrix +
                urn:smpte:ul:060e2b34.027f0101.0d020157.00000000
              + LEAF + Audio Block Matrix + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020157.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + time +
                urn:smpte:ul:060e2b34.027f0101.0d020158.00000000
              + LEAF + Time + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020158.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020158.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + metadataFormat +
                urn:smpte:ul:060e2b34.027f0101.0d020159.00000000
              + LEAF + Metadata Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020159.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020159.12000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + timecodeFormat +
                urn:smpte:ul:060e2b34.027f0101.0d02015a.00000000
              + LEAF + Timecode Format + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.0f000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.10000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.11000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.12000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015a.13000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + videoNoiseFilter +
                urn:smpte:ul:060e2b34.027f0101.0d02015b.00000000
              + LEAF + Video Noise Filter + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + EBUCoreObject +
                urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000
              + LEAF + EBU Core Object + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 + false + 06 53 +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audience +
                urn:smpte:ul:060e2b34.027f0101.0d02015d.00000000
              + LEAF + Audience + To describe an audience. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015d.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + filter +
                urn:smpte:ul:060e2b34.027f0101.0d02015e.00000000
              + LEAF + Filter + To define the characteristics of a filter. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015e.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + filterSetting +
                urn:smpte:ul:060e2b34.027f0101.0d02015f.00000000
              + LEAF + Filter Setting + To describe the settings of a filter. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.08000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.09000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0a000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0b000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0c000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0d000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0e000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02015f.0f000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreen +
                urn:smpte:ul:060e2b34.027f0101.0d020160.00000000
              + LEAF + Reference screen + To define a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020160.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020160.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020160.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreenCentrePosition +
                urn:smpte:ul:060e2b34.027f0101.0d020161.00000000
              + LEAF + Reference Screen Centre Position + To define the centre position of a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020161.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020161.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + referenceScreenWidth +
                urn:smpte:ul:060e2b34.027f0101.0d020162.00000000
              + LEAF + Reference Screen Width + To define the width of a reference screen. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020162.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020162.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020162.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioContentDialogue +
                urn:smpte:ul:060e2b34.027f0101.0d020163.00000000
              + LEAF + Audio Content Dialogue + To define an audio content dialogue. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020163.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020163.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioObjectInteraction +
                urn:smpte:ul:060e2b34.027f0101.0d020164.00000000
              + LEAF + Audio Content Interaction + To define the interaction parameters of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020164.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020164.05000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + gainInteractionRange +
                urn:smpte:ul:060e2b34.027f0101.0d020165.00000000
              + LEAF + Gain Interaction Range + To define a gain interaction range. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020165.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020165.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + positionInteractionRange +
                urn:smpte:ul:060e2b34.027f0101.0d020166.00000000
              + LEAF + Position Interaction Range + To define a position interaction range. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020166.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020166.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020166.03000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockPosition +
                urn:smpte:ul:060e2b34.027f0101.0d020167.00000000
              + LEAF + Audio Block Position + To define the position of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020167.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020167.04000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockDivergence +
                urn:smpte:ul:060e2b34.027f0101.0d020168.00000000
              + LEAF + Audio Block Divergence + To define the divergence of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020168.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d020168.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockZoneExclusion +
                urn:smpte:ul:060e2b34.027f0101.0d020169.00000000
              + LEAF + Audio Block Zone Exclusion + To define the exclusion zone of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d020169.01000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockZone +
                urn:smpte:ul:060e2b34.027f0101.0d02016a.00000000
              + LEAF + Audio Block Zone + To define a zone of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016a.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + audioBlockJumpPosition +
                urn:smpte:ul:060e2b34.027f0101.0d02016b.00000000
              + LEAF + Audio Block Jump Position + To define a jump position of an audio object. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016b.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016b.02000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + event +
                urn:smpte:ul:060e2b34.027f0101.0d02016c.00000000
              + LEAF + Event + To define an event. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.07000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016c.08000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + award +
                urn:smpte:ul:060e2b34.027f0101.0d02016d.00000000
              + LEAF + Award + To define an award. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.02000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.03000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.04000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.05000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.06000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016d.07000000
              + true +
              +
              +
              + + Groups + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group + affiliation +
                urn:smpte:ul:060e2b34.027f0101.0d02016e.00000000
              + LEAF + Affiliation + To define an affiliation. + EBU Tech 3293 + false + urn:smpte:ul:060e2b34.027f0101.0d02015c.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d02016e.01000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d02016e.02000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.027f0101.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4 + BBC +
                urn:smpte:ul:060e2b34.027f0101.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.027f0101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.027f0101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_DescriptiveFrameworks +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01000000
              + NODE + APP Descriptive Frameworks + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_InfaxFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01010000
              + LEAF + APP Infax Framework + APP Infax Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01010f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01011000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_PSEAnalysisFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01020000
              + LEAF + APP PSE Analysis Framework + APP PSE Analysis Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01020400
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_VTRReplayErrorFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01030000
              + LEAF + APP VTR Replay Error Framework + APP VTR Replay Error Framework + BBC Research White Paper WHP 167 D3 Preservation File Format + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01030100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_DigiBetaDropoutFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01040000
              + LEAF + APP DigiBeta Dropout Framework + APP DigiBeta Dropout Framework + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01040100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/4/archive + APP_TimecodeBreakFramework +
                urn:smpte:ul:060e2b34.027f0101.0d040101.01050000
              + LEAF + APP Timecode Break Framework + APP Timecode Break Framework + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d040101.01050100
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/5 + IRT +
                urn:smpte:ul:060e2b34.027f0101.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/6 + ARIB +
                urn:smpte:ul:060e2b34.027f0101.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/7 + AMIA +
                urn:smpte:ul:060e2b34.027f0101.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/8 + PBS +
                urn:smpte:ul:060e2b34.027f0101.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/9 + ASC +
                urn:smpte:ul:060e2b34.027f0101.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/10 + AES +
                urn:smpte:ul:060e2b34.027f0101.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.027f0101.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12 + DPP +
                urn:smpte:ul:060e2b34.027f0101.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.027f0101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DPP_Groups +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.01000000
              + NODE + DPP Groups + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/12/as11 + DM_AS_11_UKDPP_Framework +
                urn:smpte:ul:060e2b34.027f0101.0d0c0101.01010000
              + LEAF + DM_AS_11_UKDPP_Framework + AS-11 UK DPP metadata framework + AMWA Application Specification AS-11 MXF Program Contribution + false + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010500
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010600
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010700
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010800
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010900
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010a00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010b00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010d00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010e00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01010f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011100
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011200
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011300
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011400
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011500
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011600
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011700
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011800
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011900
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011a00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011b00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011c00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011d00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011e00
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01011f00
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012000
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012100
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012200
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012300
              + true +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012400
              + false +
              + +
                urn:smpte:ul:060e2b34.01010101.0d0c0101.01012500
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.027f0101.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/13/13 + DMS_AS_12_AdID_Slate +
                urn:smpte:ul:060e2b34.027f010d.0d0d0100.00000000
              + LEAF + DMS_AS_12_AdID_Slate + AS_12 Ad-ID advertisement identification metadata framework + AMWA Application Specification AS-12 Commercial Delivery + false + urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0101.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0102.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0103.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0104.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0105.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0106.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0107.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0108.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d0109.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d010a.00000000
              + false +
              + +
                urn:smpte:ul:060e2b34.0101010d.0d0d010b.00000000
              + false +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.027f0101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.027f0101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/2 + ASPA +
                urn:smpte:ul:060e2b34.027f0101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.027f0101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.027f0101.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/5 + CNN +
                urn:smpte:ul:060e2b34.027f0101.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.027f0101.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.027f0101.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.027f0101.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.027f0101.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/9 + IADataDescriptor +
                urn:smpte:ul:060e2b34.027f0105.0e090603.00000000
              + LEAF + Immersive Audio Data Descriptor + Immersive Audio Data Descriptor + SMPTE ST 429-18 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 + true + 06 53 +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/9 + IAEssenceSubDescriptor +
                urn:smpte:ul:060e2b34.027f0105.0e090606.00000000
              + LEAF + IA Essence SubDescriptor + IA Essence SubDescriptor + SMPTE ST 429-18 + false + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 + true + 06 53 + + +
                urn:smpte:ul:060e2b34.01010105.0e090506.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0e090507.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0e090508.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0e090509.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.01010105.0e09050a.00000000
              + true +
              + +
                urn:smpte:ul:060e2b34.0101010e.04020301.0f000000
              + true +
              +
              +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.027f0101.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.027f0101.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.027f0101.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.027f0101.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.027f0101.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.027f0101.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.027f0101.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.027f0101.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.027f0101.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.027f0101.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.027f0101.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.027f0101.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.027f0101.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/23 + ARRI +
                urn:smpte:ul:060e2b34.027f0101.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/24 + JVC +
                urn:smpte:ul:060e2b34.027f0101.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.027f0101.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/26 + NHK +
                urn:smpte:ul:060e2b34.027f0101.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/27 + HBO +
                urn:smpte:ul:060e2b34.027f0101.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/29 + DTS +
                urn:smpte:ul:060e2b34.027f0101.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/30 + FLIR +
                urn:smpte:ul:060e2b34.027f0101.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/31 + Barco +
                urn:smpte:ul:060e2b34.027f0101.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.027f0101.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Groups + http://www.smpte-ra.org/reg/395/2014/15 + Experimental +
                urn:smpte:ul:060e2b34.027f0101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/src/test/resources/registers/snapshot/Labels.xml b/src/test/resources/registers/snapshot/Labels.xml new file mode 100644 index 0000000..9c4cd4e --- /dev/null +++ b/src/test/resources/registers/snapshot/Labels.xml @@ -0,0 +1,36723 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTELABELS +
                urn:smpte:ul:060e2b34.04010101.00000000.00000000
              + NODE + SMPTE LABELS + Register of SMPTE Labels + SMPTE ST 400 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IDENTIFICATIONANDLOCATION +
                urn:smpte:ul:060e2b34.04010101.01000000.00000000
              + NODE + IDENTIFICATION AND LOCATION + SMPTE Label Identifiers for Identification and Location data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GloballyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010000.00000000
              + NODE + Globally Unique Identifiers + Identifies Globally Unique Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTIPayloadIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010100.00000000
              + NODE + SDTI Payload Identifiers + Legacy label used by SDTI systems + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01010101.00000000
              + NODE + SDTI-CP Identifiers + Legacy label used by SDTI-CP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEGPayloads +
                urn:smpte:ul:060e2b34.04010101.01010101.01000000
              + NODE + SDTI-CP MPEG Payloads + Legacy label used by SDTI-CP MPEG Payloads + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEG2BaselineTemplate +
                urn:smpte:ul:060e2b34.04010101.01010101.01010000
              + LEAF + SDTI-CP MPEG-2 Baseline Template + Legacy label used by SDTI-CP for MPEG-2 payloads + SMPTE RP 204 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SDTICPMPEG2ExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.01010101.01010100
              + LEAF + SDTI-CP MPEG-2 Extended Template + Legacy label used by SDTI-CP for MPEG-2 payloads with extensions to the baseline specification + SMPTE RP 204 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FileFormatIdentifiers +
                urn:smpte:ul:060e2b34.0401010a.01010200.00000000
              + NODE + File Format Identifiers + Labels for File Format Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FileFormatIdentifiersUnstructuredNode +
                urn:smpte:ul:060e2b34.0401010a.01010201.00000000
              + NODE + File Format Identifiers Unstructured Node + Labels for File Format Identifiers Unstructured Node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UnknownFileFormat +
                urn:smpte:ul:060e2b34.0401010a.01010201.01000000
              + LEAF + Unknown File Format + Identifies Unknown File Format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DefinitionIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010300.00000000
              + NODE + Definition Identifiers + Identifies Definition Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLDefinitionIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.00000000
              + NODE + Reg-XML Definition Identifiers + Identifies Reg-XML Definition Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLMetaDictionaryIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.01000000
              + NODE + Reg-XML Meta-Dictionary Identifiers + Identifies Reg-XML Meta-Dictionary Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLBaselineMetaDictionaryIdentifiers +
                urn:smpte:ul:060e2b34.0401010c.01010301.01010000
              + NODE + Reg-XML Baseline Meta-Dictionary Identifiers + Identifies Reg-XML Baseline Meta-Dictionary Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RegXMLSTXxx2MetaDictionaryBaseline +
                urn:smpte:ul:060e2b34.0401010c.01010301.01010100
              + LEAF + Reg-XML ST xxx--2 Meta-Dictionary Baseline + Identifies Reg-XML ST xxx--2 Meta-Dictionary Baseline + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GloballyUniqueLocators +
                urn:smpte:ul:060e2b34.04010101.01020000.00000000
              + NODE + Globally Unique Locators + SMPTE identifiers for Globally Unique Locators + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LocallyUniqueIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01030000.00000000
              + NODE + Locally Unique Identifiers + SMPTE Label identifiers for Locally Unique Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ForInformationOnlyDoNotUse +
                urn:smpte:ul:060e2b34.04010101.01030100.00000000
              + NODE + For Information Only Do Not Use + SMPTE Label identifiers for For Information Only Do Not Use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TrackIdentifiers +
                urn:smpte:ul:060e2b34.04010101.01030200.00000000
              + NODE + Track Identifiers + SMPTE Label identifiers for Track Identifiers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MetadataTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030201.00000000
              + NODE + Metadata Track Kinds + Identifies metadata track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MTimecodeTrackInactiveUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.01000000
              + LEAF + SMPTE-12M Timecode Track Inactive User Bits + Identifies a SMPTE 12M Timecode track with inactive user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MTimecodeTrackActiveUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.02000000
              + LEAF + SMPTE-12M Timecode Track Active User Bits + Identifies a SMPTE 12M Timecode track with active user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE309MTimecodeTrackDatecodeUserBits +
                urn:smpte:ul:060e2b34.04010101.01030201.03000000
              + LEAF + SMPTE-309M Timecode Track Datecode User Bits + Identifies a SMPTE 309M Timecode track (user bits define date code) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DescriptiveMetadataTrack +
                urn:smpte:ul:060e2b34.04010101.01030201.10000000
              + LEAF + Descriptive Metadata Track + Identifies a Descriptive Metadata Track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EssenceTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030202.00000000
              + NODE + Essence Track Kinds + Identifies essence track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.01000000
              + LEAF + Picture Essence Track + Identifies a picture essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.02000000
              + LEAF + Sound Essence Track + Identifies a sound essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssenceTrack +
                urn:smpte:ul:060e2b34.04010101.01030202.03000000
              + LEAF + Data Essence Track + Identifies a data essence track + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + OtherTrackKinds +
                urn:smpte:ul:060e2b34.04010101.01030203.00000000
              + NODE + Other Track Kinds + Identifies non-essence and non-metadata track kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AuxiliaryDataTrack +
                urn:smpte:ul:060e2b34.04010105.01030203.01000000
              + LEAF + Auxiliary Data Track + Identifies a track containing auxiliary data that is neither essence nor metadata (for example, icon images) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParsedTextTrack +
                urn:smpte:ul:060e2b34.04010107.01030203.02000000
              + LEAF + Parsed Text Track + Identifies a track containing parsed text (for example, XML code) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ADMINISTRATIVE +
                urn:smpte:ul:060e2b34.04010101.02000000.00000000
              + NODE + ADMINISTRATIVE + SMPTE Label identifiers for Administrative data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EncryptionIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090000.00000000
              + NODE + Encryption Identifiers + Identifies encryption parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEncryptionIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090200.00000000
              + NODE + Data Encryption Identifiers + Identifies data encryption parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEncryptionAlgorithmIdentifiers +
                urn:smpte:ul:060e2b34.04010107.02090201.00000000
              + NODE + Data Encryption Algorithm Identifiers + Identifies data encryption algorithms + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AES128CBCIdentifier +
                urn:smpte:ul:060e2b34.04010107.02090201.01000000
              + LEAF + AES-128 CBC Identifier + Identifies AES 128-bit encryption in Cypher Block Chaining mode + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataHashingAlgorithms +
                urn:smpte:ul:060e2b34.04010107.02090202.00000000
              + NODE + Data Hashing Algorithms + Identifies data hashing algorithms + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HMACSHA1128BitIdentifier +
                urn:smpte:ul:060e2b34.04010107.02090202.01000000
              + LEAF + HMAC-SHA1 128-bit Identifier + Identifies the HMAC-SHA1 128-bit data integrity check value + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HMACSHA1128 +
                urn:smpte:ul:060e2b34.04010108.02090202.02000000
              + LEAF + HMAC-SHA1 128 + Identifies the HMAC-SHA1 128 bit data integrity check value + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + INTERPRETIVE +
                urn:smpte:ul:060e2b34.04010101.03000000.00000000
              + NODE + INTERPRETIVE + SMPTE Label identifiers for Interpretive Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + InterpretivePictureEssence +
                urn:smpte:ul:060e2b34.0401010d.03010000.00000000
              + NODE + Picture Essence + SMPTE Label identifiers for Picture Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + InterpretiveSoundEssence +
                urn:smpte:ul:060e2b34.0401010d.03020000.00000000
              + NODE + Sound Essence + SMPTE Label identifiers for Sound Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020100.00000000
              + NODE + Audio Channel + SMPTE Label identifiers for Audio Channel interpretive data + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020101.00000000
              + LEAF + Left Audio Channel + Identifies the Audio Channel intended to drive the Left loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020102.00000000
              + LEAF + Right Audio Channel + Identifies the Audio Channel intended to drive the Right loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020103.00000000
              + LEAF + Center Audio Channel + Identifies the Audio Channel intended to drive the Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LFEAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020104.00000000
              + LEAF + LFE Audio Channel + Identifies the Audio Channel intended to drive the screen Low Frequency Effects loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020105.00000000
              + LEAF + Left Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020106.00000000
              + LEAF + Right Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftSideSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020107.00000000
              + LEAF + Left Side Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Side Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightSideSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020108.00000000
              + LEAF + Right Side Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Side Surround + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftRearSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.03020109.00000000
              + LEAF + Left Rear Surround Audio Channel + Identifies the Audio Channel intended to drive the Left Rear Surround loudspeaker(s) + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightRearSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010a.00000000
              + LEAF + Right Rear Surround Audio Channel + Identifies the Audio Channel intended to drive the Right Rear Surround loudspeaker(s) + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftCenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010b.00000000
              + LEAF + Left Center Audio Channel + Identifies the Audio Channel intended to drive the Left Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightCenterAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010c.00000000
              + LEAF + Right Center Audio Channel + Identifies the Audio Channel intended to drive the Right Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterSurroundAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010d.00000000
              + LEAF + Center Surround Audio Channel + Identifies the Audio Channel intended to drive the Center Surround loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HearingImpairedAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010e.00000000
              + LEAF + Hearing Impaired Audio Channel + A dedicated audio channel optimizing dialog intelligibility for the hearing impaired. This may carry a special dialog centric mix, i.e. a mix in which the dialog is predominate and dynamic range compression may be employed. + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VisuallyImpairedNarrativeAudioChannel +
                urn:smpte:ul:060e2b34.0401010d.0302010f.00000000
              + LEAF + Visually Impaired Narrative Audio Channel + A dedicated narration channel describing the main picture events for the visually impaired. + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AudioChannelsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020120.00000000
              + NODE + Audio Channels for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Audio Channel interpretive data + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MonoOne +
                urn:smpte:ul:060e2b34.0401010d.03020120.01000000
              + LEAF + SMPTE ST 2067-8 Mono One + A single channel of monaural audio + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MonoTwo +
                urn:smpte:ul:060e2b34.0401010d.03020120.02000000
              + LEAF + SMPTE ST 2067-8 Mono Two + A second single channel of monaural audio + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LeftTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.03000000
              + LEAF + SMPTE ST 2067-8 Left Total + Matrix encoded left channel of an Lt-Rt pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678RightTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.04000000
              + LEAF + SMPTE ST 2067-8 Right Total + Matrix encoded right channel of an Lt-Rt pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LeftSurroundTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.05000000
              + LEAF + SMPTE ST 2067-8 Left Surround Total + Matrix encoded left surround channel of an Lst-Rst pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678RightSurroundTotal +
                urn:smpte:ul:060e2b34.0401010d.03020120.06000000
              + LEAF + SMPTE ST 2067-8 Right Surround Total + Matrix encoded right surround channel of an Lst-Rst pair + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678Surround +
                urn:smpte:ul:060e2b34.0401010d.03020120.07000000
              + LEAF + SMPTE ST 2067-8 Surround + A single channel that Intended to drive one or more surround loudspeakers + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + NumberedSourceChannelForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08000000
              + NODE + Numbered Source Channel for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Audio Channels numbered between 001 and 127 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel001 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08010000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 001 + A single audio channel numbered 001 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel002 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08020000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 002 + A single audio channel numbered 002 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel003 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08030000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 003 + A single audio channel numbered 003 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel004 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08040000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 004 + A single audio channel numbered 004 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel005 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08050000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 005 + A single audio channel numbered 005 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel006 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08060000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 006 + A single audio channel numbered 006 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel007 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08070000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 007 + A single audio channel numbered 007 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel008 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08080000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 008 + A single audio channel numbered 008 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel009 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08090000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 009 + A single audio channel numbered 009 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0A +
                urn:smpte:ul:060e2b34.0401010d.03020120.080a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0A + A single audio channel numbered 0A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0B +
                urn:smpte:ul:060e2b34.0401010d.03020120.080b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0B + A single audio channel numbered 0B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0C +
                urn:smpte:ul:060e2b34.0401010d.03020120.080c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0C + A single audio channel numbered 0C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0D +
                urn:smpte:ul:060e2b34.0401010d.03020120.080d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0D + A single audio channel numbered 0D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0E +
                urn:smpte:ul:060e2b34.0401010d.03020120.080e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0E + A single audio channel numbered 0E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel0F +
                urn:smpte:ul:060e2b34.0401010d.03020120.080f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 0F + A single audio channel numbered 0F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel010 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08100000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 010 + A single audio channel numbered 010 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel011 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08110000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 011 + A single audio channel numbered 011 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel012 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08120000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 012 + A single audio channel numbered 012 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel013 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08130000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 013 + A single audio channel numbered 013 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel014 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08140000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 014 + A single audio channel numbered 014 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel015 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08150000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 015 + A single audio channel numbered 015 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel016 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08160000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 016 + A single audio channel numbered 016 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel017 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08170000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 017 + A single audio channel numbered 017 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel018 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08180000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 018 + A single audio channel numbered 018 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel019 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08190000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 019 + A single audio channel numbered 019 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1A +
                urn:smpte:ul:060e2b34.0401010d.03020120.081a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1A + A single audio channel numbered 1A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1B +
                urn:smpte:ul:060e2b34.0401010d.03020120.081b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1B + A single audio channel numbered 1B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1C +
                urn:smpte:ul:060e2b34.0401010d.03020120.081c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1C + A single audio channel numbered 1C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1D +
                urn:smpte:ul:060e2b34.0401010d.03020120.081d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1D + A single audio channel numbered 1D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1E +
                urn:smpte:ul:060e2b34.0401010d.03020120.081e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1E + A single audio channel numbered 1E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel1F +
                urn:smpte:ul:060e2b34.0401010d.03020120.081f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 1F + A single audio channel numbered 1F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel020 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08200000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 020 + A single audio channel numbered 020 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel021 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08210000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 021 + A single audio channel numbered 021 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel022 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08220000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 022 + A single audio channel numbered 022 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel023 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08230000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 023 + A single audio channel numbered 023 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel024 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08240000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 024 + A single audio channel numbered 024 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel025 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08250000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 025 + A single audio channel numbered 025 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel026 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08260000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 026 + A single audio channel numbered 026 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel027 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08270000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 027 + A single audio channel numbered 027 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel028 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08280000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 028 + A single audio channel numbered 028 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel029 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08290000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 029 + A single audio channel numbered 029 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2A +
                urn:smpte:ul:060e2b34.0401010d.03020120.082a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2A + A single audio channel numbered 2A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2B +
                urn:smpte:ul:060e2b34.0401010d.03020120.082b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2B + A single audio channel numbered 2B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2C +
                urn:smpte:ul:060e2b34.0401010d.03020120.082c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2C + A single audio channel numbered 2C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2D +
                urn:smpte:ul:060e2b34.0401010d.03020120.082d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2D + A single audio channel numbered 2D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2E +
                urn:smpte:ul:060e2b34.0401010d.03020120.082e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2E + A single audio channel numbered 2E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel2F +
                urn:smpte:ul:060e2b34.0401010d.03020120.082f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 2F + A single audio channel numbered 2F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel030 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08300000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 030 + A single audio channel numbered 030 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel031 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08310000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 031 + A single audio channel numbered 031 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel032 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08320000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 032 + A single audio channel numbered 032 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel033 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08330000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 033 + A single audio channel numbered 033 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel034 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08340000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 034 + A single audio channel numbered 034 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel035 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08350000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 035 + A single audio channel numbered 035 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel036 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08360000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 036 + A single audio channel numbered 036 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel037 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08370000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 037 + A single audio channel numbered 037 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel038 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08380000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 038 + A single audio channel numbered 038 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel039 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08390000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 039 + A single audio channel numbered 039 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3A +
                urn:smpte:ul:060e2b34.0401010d.03020120.083a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3A + A single audio channel numbered 3A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3B +
                urn:smpte:ul:060e2b34.0401010d.03020120.083b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3B + A single audio channel numbered 3B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3C +
                urn:smpte:ul:060e2b34.0401010d.03020120.083c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3C + A single audio channel numbered 3C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3D +
                urn:smpte:ul:060e2b34.0401010d.03020120.083d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3D + A single audio channel numbered 3D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3E +
                urn:smpte:ul:060e2b34.0401010d.03020120.083e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3E + A single audio channel numbered 3E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel3F +
                urn:smpte:ul:060e2b34.0401010d.03020120.083f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 3F + A single audio channel numbered 3F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel040 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08400000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 040 + A single audio channel numbered 040 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel041 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08410000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 041 + A single audio channel numbered 041 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel042 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08420000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 042 + A single audio channel numbered 042 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel043 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08430000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 043 + A single audio channel numbered 043 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel044 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08440000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 044 + A single audio channel numbered 044 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel045 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08450000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 045 + A single audio channel numbered 045 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel046 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08460000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 046 + A single audio channel numbered 046 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel047 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08470000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 047 + A single audio channel numbered 047 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel048 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08480000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 048 + A single audio channel numbered 048 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel049 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08490000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 049 + A single audio channel numbered 049 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4A +
                urn:smpte:ul:060e2b34.0401010d.03020120.084a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4A + A single audio channel numbered 4A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4B +
                urn:smpte:ul:060e2b34.0401010d.03020120.084b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4B + A single audio channel numbered 4B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4C +
                urn:smpte:ul:060e2b34.0401010d.03020120.084c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4C + A single audio channel numbered 4C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4D +
                urn:smpte:ul:060e2b34.0401010d.03020120.084d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4D + A single audio channel numbered 4D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4E +
                urn:smpte:ul:060e2b34.0401010d.03020120.084e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4E + A single audio channel numbered 4E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel4F +
                urn:smpte:ul:060e2b34.0401010d.03020120.084f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 4F + A single audio channel numbered 4F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel050 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08500000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 050 + A single audio channel numbered 050 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel051 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08510000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 051 + A single audio channel numbered 051 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel052 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08520000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 052 + A single audio channel numbered 052 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel053 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08530000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 053 + A single audio channel numbered 053 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel054 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08540000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 054 + A single audio channel numbered 054 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel055 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08550000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 055 + A single audio channel numbered 055 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel056 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08560000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 056 + A single audio channel numbered 056 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel057 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08570000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 057 + A single audio channel numbered 057 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel058 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08580000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 058 + A single audio channel numbered 058 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel059 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08590000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 059 + A single audio channel numbered 059 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5A +
                urn:smpte:ul:060e2b34.0401010d.03020120.085a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5A + A single audio channel numbered 5A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5B +
                urn:smpte:ul:060e2b34.0401010d.03020120.085b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5B + A single audio channel numbered 5B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5C +
                urn:smpte:ul:060e2b34.0401010d.03020120.085c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5C + A single audio channel numbered 5C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5D +
                urn:smpte:ul:060e2b34.0401010d.03020120.085d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5D + A single audio channel numbered 5D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5E +
                urn:smpte:ul:060e2b34.0401010d.03020120.085e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5E + A single audio channel numbered 5E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel5F +
                urn:smpte:ul:060e2b34.0401010d.03020120.085f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 5F + A single audio channel numbered 5F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel060 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08600000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 060 + A single audio channel numbered 060 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel061 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08610000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 061 + A single audio channel numbered 061 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel062 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08620000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 062 + A single audio channel numbered 062 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel063 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08630000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 063 + A single audio channel numbered 063 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel064 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08640000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 064 + A single audio channel numbered 064 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel065 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08650000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 065 + A single audio channel numbered 065 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel066 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08660000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 066 + A single audio channel numbered 066 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel067 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08670000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 067 + A single audio channel numbered 067 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel068 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08680000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 068 + A single audio channel numbered 068 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel069 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08690000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 069 + A single audio channel numbered 069 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6A +
                urn:smpte:ul:060e2b34.0401010d.03020120.086a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6A + A single audio channel numbered 6A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6B +
                urn:smpte:ul:060e2b34.0401010d.03020120.086b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6B + A single audio channel numbered 6B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6C +
                urn:smpte:ul:060e2b34.0401010d.03020120.086c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6C + A single audio channel numbered 6C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6D +
                urn:smpte:ul:060e2b34.0401010d.03020120.086d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6D + A single audio channel numbered 6D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6E +
                urn:smpte:ul:060e2b34.0401010d.03020120.086e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6E + A single audio channel numbered 6E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel6F +
                urn:smpte:ul:060e2b34.0401010d.03020120.086f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 6F + A single audio channel numbered 6F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel070 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08700000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 070 + A single audio channel numbered 070 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel071 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08710000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 071 + A single audio channel numbered 071 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel072 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08720000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 072 + A single audio channel numbered 072 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel073 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08730000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 073 + A single audio channel numbered 073 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel074 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08740000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 074 + A single audio channel numbered 074 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel075 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08750000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 075 + A single audio channel numbered 075 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel076 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08760000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 076 + A single audio channel numbered 076 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel077 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08770000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 077 + A single audio channel numbered 077 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel078 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08780000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 078 + A single audio channel numbered 078 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel079 +
                urn:smpte:ul:060e2b34.0401010d.03020120.08790000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 079 + A single audio channel numbered 079 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7A +
                urn:smpte:ul:060e2b34.0401010d.03020120.087a0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7A + A single audio channel numbered 7A + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7B +
                urn:smpte:ul:060e2b34.0401010d.03020120.087b0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7B + A single audio channel numbered 7B + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7C +
                urn:smpte:ul:060e2b34.0401010d.03020120.087c0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7C + A single audio channel numbered 7C + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7D +
                urn:smpte:ul:060e2b34.0401010d.03020120.087d0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7D + A single audio channel numbered 7D + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7E +
                urn:smpte:ul:060e2b34.0401010d.03020120.087e0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7E + A single audio channel numbered 7E + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678NumberedSourceChannel7F +
                urn:smpte:ul:060e2b34.0401010d.03020120.087f0000
              + LEAF + SMPTE ST 2067-8 Numbered Source Channel 7F + A single audio channel numbered 7F + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020200.00000000
              + NODE + Soundfield Group + SMPTE Label identifiers for Soundfield Groups interpretive data + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _51SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020201.00000000
              + LEAF + 5.1 Soundfield Group + Identifies the 5.1 Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _71DSSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020202.00000000
              + LEAF + 7.1DS Soundfield Group + Identifies the 7.1DS Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _71SDSSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020203.00000000
              + LEAF + 7.1SDS Soundfield Group + Identifies the 7.1SDS Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _61SoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020204.00000000
              + LEAF + 6.1 Soundfield Group + Identifies the 6.1 Soundfield Group + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + _10MonauralSoundfieldGroup +
                urn:smpte:ul:060e2b34.0401010d.03020205.00000000
              + LEAF + 1.0 Monaural Soundfield Group + Single channel mono designed to be played from Center loudspeaker + ST 428-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundfieldGroupsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020220.00000000
              + NODE + Soundfield Groups for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Soundfield Groups + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678StandardStereo +
                urn:smpte:ul:060e2b34.0401010d.03020220.01000000
              + LEAF + SMPTE ST 2067-8 Standard Stereo + Consists of Audio Channels L, R + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DualMono +
                urn:smpte:ul:060e2b34.0401010d.03020220.02000000
              + LEAF + SMPTE ST 2067-8 Dual Mono + Consists of Audio Channels M1, M2 + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DiscreteNumberedSources +
                urn:smpte:ul:060e2b34.0401010d.03020220.03000000
              + LEAF + SMPTE ST 2067-8 Discrete Numbered Sources + Collection of Audio Channels NSCxxx + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067830 +
                urn:smpte:ul:060e2b34.0401010d.03020220.04000000
              + LEAF + SMPTE ST 2067-8 3.0 + Consists of Audio Channels L, C, R + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067840 +
                urn:smpte:ul:060e2b34.0401010d.03020220.05000000
              + LEAF + SMPTE ST 2067-8 4.0 + Consists of Audio Channels L, C, R, S + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067850 +
                urn:smpte:ul:060e2b34.0401010d.03020220.06000000
              + LEAF + SMPTE ST 2067-8 5.0 + Consists of Audio Channels L, C, R, Ls, Rs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067860 +
                urn:smpte:ul:060e2b34.0401010d.03020220.07000000
              + LEAF + SMPTE ST 2067-8 6.0 + Consists of Audio Channels L, C, R, Ls, Rs, Cs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067870DS +
                urn:smpte:ul:060e2b34.0401010d.03020220.08000000
              + LEAF + SMPTE ST 2067-8 7.0DS + Consists of Audio Channels L, C, R, Lss, Rss, Rls, Rrs + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678LtRt +
                urn:smpte:ul:060e2b34.0401010d.03020220.09000000
              + LEAF + SMPTE ST 2067-8 Lt-Rt + Consists of Audio Channels Lt, Rt + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST2067851EX +
                urn:smpte:ul:060e2b34.0401010d.03020220.0a000000
              + LEAF + SMPTE ST 2067-8 5.1EX + Consists of Audio Channels L, C, R, Lst, Rst, LFE + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678HearingAccessibility +
                urn:smpte:ul:060e2b34.0401010d.03020220.0b000000
              + LEAF + SMPTE ST 2067-8 Hearing Accessibility + Consists of Audio Channel HI + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678VisualAccessibility +
                urn:smpte:ul:060e2b34.0401010d.03020220.0c000000
              + LEAF + SMPTE ST 2067-8 Visual Accessibility + Consists of Audio Channel VIN + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GroupOfSoundfieldGroups +
                urn:smpte:ul:060e2b34.0401010d.03020300.00000000
              + NODE + Group of Soundfield Groups + SMPTE Label identifiers for Groups of Soundfield Groups interpretive data + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GroupOfSoundfieldGroupsForSMPTEST20678 +
                urn:smpte:ul:060e2b34.0401010d.03020320.00000000
              + NODE + Group of Soundfield Groups for SMPTE ST 2067-8 + SMPTE Label identifiers for SMPTE ST 2067-8 Groups of Soundfield Groups + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678MainProgram +
                urn:smpte:ul:060e2b34.0401010d.03020320.01000000
              + LEAF + SMPTE ST 2067-8 Main Program + Identifies SMPTE ST 2067-8 2067-8 Main Program + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DescriptiveVideoService +
                urn:smpte:ul:060e2b34.0401010d.03020320.02000000
              + LEAF + SMPTE ST 2067-8 Descriptive Video Service + Identifies SMPTE ST 2067-8 2067-8 Descriptive Video Service + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20678DialogCentricMix +
                urn:smpte:ul:060e2b34.0401010d.03020320.03000000
              + LEAF + SMPTE ST 2067-8 Dialog Centric Mix + Identifies SMPTE ST 2067-8 2067-8 Dialog Centric Mix + ST 2067-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PARAMETRIC +
                urn:smpte:ul:060e2b34.04010101.04000000.00000000
              + NODE + PARAMETRIC + SMPTE Label identifiers for Parametric Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParametricPictureEssence +
                urn:smpte:ul:060e2b34.04010101.04010000.00000000
              + NODE + Picture Essence + SMPTE Label identifiers for picture essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FundamentalPictureCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010100.00000000
              + NODE + Fundamental Picture Characteristics + Identifies fundamental picture essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureSourceCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010101.00000000
              + NODE + Picture Source Characteristics + Identifies picture source parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic +
                urn:smpte:ul:060e2b34.04010101.04010101.01000000
              + NODE + Transfer Characteristic + Identifies transfer characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU470_PAL +
                urn:smpte:ul:060e2b34.04010101.04010101.01010000
              + LEAF + ITU-R BT.470 Transfer Characteristic + Identifies ITU-R BT.470 PAL transfer characteristic (note: used in B, D, G, H, I, M, N/PAL and B, D, G, H, K, K1, L/SECAM systems) + ITU-R BT.470 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU709 +
                urn:smpte:ul:060e2b34.04010101.04010101.01020000
              + LEAF + ITU-R BT.709 Transfer Characteristic + Identifies ITU-R BT.709 transfer characteristic (also used in SMPTE 170M, 274M and 296M) + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTE240M +
                urn:smpte:ul:060e2b34.04010101.04010101.01030000
              + LEAF + SMPTE 240M Transfer Characteristic + Identifies SMPTE 240M transfer characteristic (note: legacy use only) + SMPTE ST 240 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_274M_296M +
                urn:smpte:ul:060e2b34.04010101.04010101.01040000
              + LEAF + SMPTE 274/296M Gamma + Identifies gamma according to SMPTE 274M and 296M (deprecated) + SMPTE 274M & 296M + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU1361 +
                urn:smpte:ul:060e2b34.04010106.04010101.01050000
              + LEAF + ITU-R BT.1361 Transfer Characteristic + Identifies ITU-R BT.1361 transfer characterisitic + ITU-R BT.1361 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_linear +
                urn:smpte:ul:060e2b34.04010106.04010101.01060000
              + LEAF + Linear Transfer Characteristic + Identifies a linear transfer characteristic + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTE_DCDM +
                urn:smpte:ul:060e2b34.04010108.04010101.01070000
              + LEAF + SMPTE-DC28 DCDM Transfer Characteristic + Identifies the SMPTE DC28 DCDM transfer characteristic + SMPTE ST 428-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_IEC6196624_xvYCC +
                urn:smpte:ul:060e2b34.0401010d.04010101.01080000
              + LEAF + IEC 61966-2-4 xvYCC Transfer Characteristic + Identifies IEC 61966-2-4 xvYCC transfer characteristic + IEC 61966-2-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_ITU2020 +
                urn:smpte:ul:060e2b34.0401010e.04010101.01090000
              + LEAF + ITU-R BT.2020 Transfer Characteristic + Identifies ITU-R BT.2020 transfer characteristic + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_SMPTEST2084 +
                urn:smpte:ul:060e2b34.0401010d.04010101.010a0000
              + LEAF + SMPTE ST 2084 Transfer Characteristic + Identifies SMPTE ST 2084 transfer characteristic + SMPTE ST 2084 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_HLG_OETF +
                urn:smpte:ul:060e2b34.0401010d.04010101.010b0000
              + LEAF + Hybrid Log-Gamma OETF Transfer Characteristic + Identifies the Hybrid Log-Gamma reference non-linear transfer function (opto-eletronic transfer function, OETF) defined in ITU-R BT.2100 + This is identical to the reference non-linear transfer function (opto-eletronic transfer function, OETF) defined in ARIB STD-B67 + ITU-R BT.2100 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_Gamma_2_6 +
                urn:smpte:ul:060e2b34.0401010d.04010101.010c0000
              + LEAF + Gamma 2.6 Transfer Characteristic + Opto electric transfer function using a power function with an exponent of 1/2.6 and a scaling factor of 1.0 + SMPTE ST 2067-50 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TransferCharacteristic_sRGB +
                urn:smpte:ul:060e2b34.0401010d.04010101.010d0000
              + LEAF + sRGB Transfer Characteristic + Opto electric transfer function using a power function as defined in IEC 61966-2-1 + IEC 61966-2-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations +
                urn:smpte:ul:060e2b34.04010101.04010101.02000000
              + NODE + Coding Equations + Identifies the coding equation type + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU601 +
                urn:smpte:ul:060e2b34.04010101.04010101.02010000
              + LEAF + ITU-R BT.601 Coding Equations + Identifies ITU-R BT.601 Coding Equations + ITU-R BT.601 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU709 +
                urn:smpte:ul:060e2b34.04010101.04010101.02020000
              + LEAF + ITU-R BT.709 Coding Equations + Identifies ITU-R BT.709 Coding Equations + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_SMPTE240M +
                urn:smpte:ul:060e2b34.04010106.04010101.02030000
              + LEAF + SMPTE 240M Coding Equations + Identifies SMPTE 240M coding equations (note: legacy use only) + SMPTE ST 240 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_YCgCo +
                urn:smpte:ul:060e2b34.0401010d.04010101.02040000
              + LEAF + YCgCo Coding Equations + Identifies YCgCo coding equations + YCgCo is one of the "Luma and two Chroma" sample formats used in H.264. It utilises a lossless direct integer transform for efficient RGB coding. + ITU-T H.264 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_GBR +
                urn:smpte:ul:060e2b34.0401010d.04010101.02050000
              + LEAF + GBR Coding Equations + Identifies a simple transformation of RGB to YC1C2: Y=G; C1=B; C2=R + This identifies the coding equations used for direct encoding of RGB signals, for example in: VC-2 (SMPTE ST 2042-1) and H.264 (ITU-T H.264) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CodingEquations_ITU2020_NCL +
                urn:smpte:ul:060e2b34.0401010d.04010101.02060000
              + LEAF + ITU-R BT.2020 Non-Constant Luminance Coding Equations + Identifies ITU-R BT.2020 coding equations for non-constant luminance + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries +
                urn:smpte:ul:060e2b34.04010106.04010101.03000000
              + NODE + Color Primaries + Identifies the color primaries type + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_SMPTE170M +
                urn:smpte:ul:060e2b34.04010106.04010101.03010000
              + LEAF + SMPTE 170M Color Primaries + Identifies SMPTE 170M color primaries and white point + This label is intended to identify the color primaries and white point used by 525-line Standard Definition Digital Television (often referred to loosely as "NTSC" because such a digital signal could be produced by digitising an analog NTSC signal) as defined in ITU-R BT.601 (note: chromaticity coordinates of the color primaries used were only introduced into ITU-R BT.601 in ITU-R BT.601-6). These are identical to the color primaries ("SMPTE C set") and white point defined in SMPTE ST 170. Note that SMPTE ST 170 is deferred to by ITU-R BT.1700 as the defining specification for the analog NTSC signal. Note that ITU-R BT.470 (as of ITU-R BT.470-7) defers to ITU-R BT.1700 as the defining specification for all video signal characteristics. + SMPTE ST 170 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU470_PAL +
                urn:smpte:ul:060e2b34.04010106.04010101.03020000
              + LEAF + ITU-R BT.470 PAL Color Primaries + Identifies ITU-R BT.470 PAL color primaries and white point (note: used in B, D, G, H, I, N/PAL and B, D, G, H, K, K1, L/SECAM systems) + This label is intended to identify the color primaries and white point used by 625-line Standard Definition Digital Television (often referred to loosely as "PAL" because such a digital signal could be produced by digitising certain analog signals described as "PAL") as defined in ITU-R BT.601 (note: chromaticity coordinates of the color primaries used were only introduced into ITU-R BT.601 in ITU-R BT.601-6). These are identical to the color primaries and white point defined for 625-line PAL in ITU-R BT.1700. Note that ITU-R BT.470 (as of ITU-R BT.470-7) defers to ITU-R BT.1700 as the defining specification for all video signal characteristics. + ITU-R BT.470 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU709 +
                urn:smpte:ul:060e2b34.04010106.04010101.03030000
              + LEAF + ITU-R BT.709 Color Primaries + Identifies ITU-R BT.709 color primaries and white point + ITU-R BT.709 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ITU2020 +
                urn:smpte:ul:060e2b34.0401010d.04010101.03040000
              + LEAF + ITU-R BT.2020 Color Primaries + Identifies ITU-R BT.2020 color primaries and white point + ITU-R BT.2020 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_SMPTE_DCDM +
                urn:smpte:ul:060e2b34.0401010d.04010101.03050000
              + LEAF + SMPTE-DC28 DCDM Color Primaries + Identifies SMPTE DC28 D-Cinema Distribution Master color primaries and white point + In DCDM the color primaries are such that the entire CIE XYZ color space can be used + SMPTE ST 428-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_P3D65 +
                urn:smpte:ul:060e2b34.0401010d.04010101.03060000
              + LEAF + P3D65 Color Primaries + Identifies P3D65 color primaries and white point + SMPTE ST 2067-21 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_ACES +
                urn:smpte:ul:060e2b34.0401010d.04010101.03070000
              + LEAF + ACES Color Primaries + Identifies ACES SMPTE ST 2065-1 color primaries and white point + SMPTE ST 2065-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ColorPrimaries_CinemaMezzanine +
                urn:smpte:ul:060e2b34.0401010d.04010101.03080000
              + LEAF + Cinema Mezzanine Color Primaries + Identifies XYZ tristimulus values as specified in ISO 11664-3 + SMPTE ST 2067-40 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AlternativeCenterCut +
                urn:smpte:ul:060e2b34.0401010d.04010101.04000000
              + NODE + Alternative Center Cut + Rectangular area of specified aspect ratio containing all of the critical action that is (a) centered on the active area, (b) entirely contained within the active area and (c) has a height or width equal to that of the active area + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterCut43 +
                urn:smpte:ul:060e2b34.0401010d.04010101.04010000
              + LEAF + 4:3 Alternative Center Cut + Indicates that the image essence can accommodate an alternative center cut with a 4:3 aspect ratio + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CenterCut149 +
                urn:smpte:ul:060e2b34.0401010d.04010101.04020000
              + LEAF + 14:9 Alternative Center Cut + Indicates that the image essence can accommodate an alternative center cut with a 14:9 aspect ratio + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureCodingCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04010200.00000000
              + NODE + Picture Coding Characteristics + Identifies Picture Coding Characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010201.00000000
              + NODE + Uncompressed Picture Coding + Identifies Uncompressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved444CbYCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01010101
              + LEAF + Uncompressed Picture Coding Interleaved 444 CbYCr 8-bit + Identifies Uncompressed Picture Coding Interleaved 444 CbYCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020101
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 8-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422YCbYCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020102
              + LEAF + Uncompressed Picture Coding Interleaved 422 YCbYCr 8-bit + Identifies Uncompressed Picture Coding Interleaved 422 YCbYCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar422YCbCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020103
              + LEAF + Uncompressed Picture Coding Planar 422 YCbCr 8-bit + Identifies Uncompressed Picture Coding Planar 422 YCbCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY10Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020201
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 10-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 10-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar422CbYCrY10Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020202
              + LEAF + Uncompressed Picture Coding Planar 422 CbYCrY 10-bit + Identifies Uncompressed Picture Coding Planar 422 CbYCrY 10-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY12Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020301
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 12-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 12-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingInterleaved422CbYCrY16Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01020401
              + LEAF + Uncompressed Picture Coding Interleaved 422 CbYCrY 16-bit + Identifies Uncompressed Picture Coding Interleaved 422 CbYCrY 16-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedPictureCodingPlanar420YCbCr8Bit +
                urn:smpte:ul:060e2b34.0401010a.04010201.01030102
              + LEAF + Uncompressed Picture Coding Planar 420 YCbCr 8-bit + Identifies Uncompressed Picture Coding Planar 420 YCbCr 8-bit + SMPTE ST 377-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UndefinedUncompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010201.7f000000
              + LEAF + Undefined Uncompressed Picture Coding + Identifies uncompressed pictures with no defined source coding standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedPictureCoding +
                urn:smpte:ul:060e2b34.04010101.04010202.00000000
              + NODE + Compressed Picture Coding + Identifies Compressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEGCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.01000000
              + NODE + MPEG Compression + Identifies MPEG Compressed Picture Coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPML +
                urn:smpte:ul:060e2b34.04010101.04010202.01010000
              + NODE + MPEG-2 MP-ML + Identifies MPEG-2 MP@ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01011000
              + LEAF + MPEG-2 MP-ML I-Frame + Identifies MPEG-2 MP-ML I-Frame coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01011100
              + LEAF + MPEG-2 MP-ML Long GOP + Identifies MPEG-2 MP-ML Long GOP coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01011200
              + LEAF + MPEG-2 MP-ML No I-Frames + Identifies MPEG-2 MP-ML No I-Frames coding + ISO 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPMLIECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01012000
              + NODE + MPEG-2 MP-ML IEC-HDV Constrained + Identifies MPEG-2 MP@ML, IEC HDV Constrained coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7202997P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012001
              + LEAF + MPEG-2 HDV MP-ML 480x720 29.97P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 29.97P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7202997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012002
              + LEAF + MPEG-2 HDV MP-ML 480x720 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994I4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012004
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94I 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94I frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012005
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94I 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012006
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML480x7205994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012007
              + LEAF + MPEG-2 HDV MP-ML 480x720 59.94P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72025P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012011
              + LEAF + MPEG-2 HDV MP-ML 576x720 25P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 25P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012012
              + LEAF + MPEG-2 HDV MP-ML 576x720 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050I4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012014
              + LEAF + MPEG-2 HDV MP-ML 576x720 50I 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50I frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012015
              + LEAF + MPEG-2 HDV MP-ML 576x720 50I 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012016
              + LEAF + MPEG-2 HDV MP-ML 576x720 50P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPML576x72050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01012017
              + LEAF + MPEG-2 HDV MP-ML 576x720 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PML +
                urn:smpte:ul:060e2b34.04010101.04010202.01020000
              + NODE + MPEG-2 422P-ML + Identifies MPEG-2 422P@ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED10MPEG2422PML +
                urn:smpte:ul:060e2b34.04010101.04010202.01020100
              + NODE + SMPTE D-10 MPEG-2 422P-ML + Identifies SMPTE Type-D10 MPEG-2 constrained 422P@ML + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1050Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020101
              + LEAF + SMPTE D-10 50Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 50Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1050Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020102
              + LEAF + SMPTE D-10 50Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 50Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1040Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020103
              + LEAF + SMPTE D-10 40Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 40Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1040Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020104
              + LEAF + SMPTE D-10 40Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 40Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1030Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020105
              + LEAF + SMPTE D-10 30Mbps 625x50I + Identifies SMPTE D-10 at a bit rate of 30Mbps for 625x50I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1030Mbps525x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.01020106
              + LEAF + SMPTE D-10 30Mbps 525x59.94I + Identifies SMPTE D-10 at a bit rate of 30Mbps for 525x59.94I scanning + SMPTE ST 356 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01020200
              + LEAF + MPEG-2 422P-ML I-Frame + Identifies MPEG-2 422P-ML I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01020300
              + LEAF + MPEG-2 422P-ML Long GOP + Identifies MPEG-2 422P-ML Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PMLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01020400
              + LEAF + MPEG-2 422P-ML No I-Frames + Identifies MPEG-2 422P-ML No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHL +
                urn:smpte:ul:060e2b34.04010103.04010202.01030000
              + NODE + MPEG-2 MP-HL + Identifies MPEG-2 MP@HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01030200
              + LEAF + MPEG-2 MP-HL I-Frame + Identifies MPEG-2 MP-HL I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01030300
              + LEAF + MPEG-2 MP-HL Long GOP + Identifies MPEG-2 MP-HL Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01030400
              + LEAF + MPEG-2 MP-HL No I-Frames + Identifies MPEG-2 MP-HL No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPHLIECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01032000
              + NODE + MPEG-2 MP-HL IEC-HDV Constrained + Identifies MPEG-2 MP@HL IEC HDV Constrained + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDV720x12805994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01032001
              + LEAF + MPEG-2 HDV 720x1280 59.94P 16x9 + Identifies MPEG-2 HDV constrained 720x1280 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDV720x128050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01032008
              + LEAF + MPEG-2 HDV 720x1280 50P 16x9 + Identifies MPEG-2 HDV constrained 720x1280 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHL +
                urn:smpte:ul:060e2b34.04010103.04010202.01040000
              + NODE + MPEG-2 422P-HL + Identifies MPEG-2 422P@HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLIFrame +
                urn:smpte:ul:060e2b34.04010103.04010202.01040200
              + LEAF + MPEG-2 422P-HL I-Frame + Identifies MPEG-2 422P-HL I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLLongGOP +
                urn:smpte:ul:060e2b34.04010103.04010202.01040300
              + LEAF + MPEG-2 422P-HL Long GOP + Identifies MPEG-2 422P-HL Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2422PHLNoIFrames +
                urn:smpte:ul:060e2b34.04010103.04010202.01040400
              + LEAF + MPEG-2 422P-HL No I-Frames + Identifies MPEG-2 422P-HL No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14 +
                urn:smpte:ul:060e2b34.04010108.04010202.01050000
              + NODE + MPEG-2 MP-H14 + Identifies MPEG-2 MP@H-1440 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14IFrame +
                urn:smpte:ul:060e2b34.04010108.04010202.01050200
              + LEAF + MPEG-2 MP-H14 I-Frame + Identifies MPEG-2 MP-H14 I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14LongGOP +
                urn:smpte:ul:060e2b34.04010108.04010202.01050300
              + LEAF + MPEG-2 MP-H14 Long GOP + Identifies MPEG-2 MP-H14 Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14NoIFrames +
                urn:smpte:ul:060e2b34.04010108.04010202.01050400
              + LEAF + MPEG-2 MP-H14 No I-Frames + Identifies MPEG-2 MP-H14 No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPH14IECHDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04010202.01052000
              + NODE + MPEG-2 MP-H14 IEC-HDV Constrained + Identifies MPEG-2 MP@H-1440 IEC HDV Constrained + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14480x7205994P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052001
              + LEAF + MPEG-2 HDV MP-H14 480x720 59.94P 4x3 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14480x7205994P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052002
              + LEAF + MPEG-2 HDV MP-H14 480x720 59.94P 16x9 + Identifies MPEG-2 coded, HDV constrained 480x720 scanning, 59.94P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14576x72050P4x3 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052008
              + LEAF + MPEG-2 HDV MP-H14 576x720 50P 4x3 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 4x3 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14576x72050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052009
              + LEAF + MPEG-2 HDV MP-H14 576x720 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 576x720 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x12802997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052010
              + LEAF + MPEG-2 HDV MP-H14 720x1280 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x128025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052014
              + LEAF + MPEG-2 HDV MP-H14 720x1280 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH14720x128050P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052015
              + LEAF + MPEG-2 HDV MP-H14 720x1280 50P 16x9 + Identifies MPEG-2 coded, HDV constrained 720x1280 scanning, 50P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14405994I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052020
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 59.94I 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 59.94I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14402997P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052021
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 29.97P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 29.97P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x14402398P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052022
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 23.98P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 23.98P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x144050I16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052024
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 50I 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 50I frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HDVMPH141080x144025P16x9 +
                urn:smpte:ul:060e2b34.04010108.04010202.01052025
              + LEAF + MPEG-2 HDV MP-H14 1080x1440 25P 16x9 + Identifies MPEG-2 coded, HDV constrained 1080x1440 scanning, 25P frame rate and 16x9 picture aspect ratio + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPML +
                urn:smpte:ul:060e2b34.04010109.04010202.01060000
              + NODE + MPEG-2 HP-ML + Identifies MPEG-2 High Profile, Main Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLIFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01060200
              + LEAF + MPEG-2 HP-ML I-Frame + Identifies MPEG-2 High Profile, Main Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLLongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01060300
              + LEAF + MPEG-2 HP-ML Long GOP + Identifies MPEG-2 High Profile, Main Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPMLNoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01060400
              + LEAF + MPEG-2 HP-ML No I-Frames + Identifies MPEG-2 High Profile, Main Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHL +
                urn:smpte:ul:060e2b34.04010109.04010202.01070000
              + NODE + MPEG-2 HP-HL + Identifies MPEG-2 High Profile, High Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLIFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01070200
              + LEAF + MPEG-2 HP-HL I-Frame + Identifies MPEG-2 High Profile, High Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLLongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01070300
              + LEAF + MPEG-2 HP-HL Long GOP + Identifies MPEG-2 High Profile, High Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPHLNoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01070400
              + LEAF + MPEG-2 HP-HL No I-Frames + Identifies MPEG-2 High Profile, High Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14 +
                urn:smpte:ul:060e2b34.04010109.04010202.01080000
              + NODE + MPEG-2 HP-H14 + Identifies MPEG-2 High Profile, High 1440 Level coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14IFrame +
                urn:smpte:ul:060e2b34.04010109.04010202.01080200
              + LEAF + MPEG-2 HP-H14 I-Frame + Identifies MPEG-2 High Profile, High 1440 Level, I-Frame coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14LongGOP +
                urn:smpte:ul:060e2b34.04010109.04010202.01080300
              + LEAF + MPEG-2 HP-H14 Long GOP + Identifies MPEG-2 High Profile, High 1440 Level, Long GOP coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPH14NoIFrames +
                urn:smpte:ul:060e2b34.04010109.04010202.01080400
              + LEAF + MPEG-2 HP-H14 No I-Frames + Identifies MPEG-2 High Profile, High 1440 Level, No I-Frames coding + ISO/IEC 13818-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2Other +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090000
              + NODE + MPEG-2 Other + Identifies MPEG-2 Other coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090100
              + NODE + MPEG-2 SP LL + Identifies MPEG-2 SP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090200
              + NODE + MPEG-2 SP ML + Identifies MPEG-2 SP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090300
              + NODE + MPEG-2 SP HL + Identifies MPEG-2 SP HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01090400
              + NODE + MPEG-2 SP H14 + Identifies MPEG-2 SP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01091000
              + NODE + MPEG-2 MP LL + Identifies MPEG-2 MP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2HPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01092000
              + NODE + MPEG-2 HP LL + Identifies MPEG-2 HP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093000
              + NODE + MPEG-2 SSP LL + Identifies MPEG-2 SSP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093100
              + NODE + MPEG-2 SSP ML + Identifies MPEG-2 SSP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SSPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01093200
              + NODE + MPEG-2 SSP H14 + Identifies MPEG-2 SSP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094000
              + NODE + MPEG-2 SRNSP LL + Identifies MPEG-2 SRNSP LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094100
              + NODE + MPEG-2 SRNSP ML + Identifies MPEG-2 SRNSP ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094200
              + NODE + MPEG-2 SRNSP HL + Identifies MPEG-2 SRNSP HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2SRNSPH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01094300
              + NODE + MPEG-2 SRNSP H14 + Identifies MPEG-2 SRNSP H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095000
              + NODE + MPEG-2 Multiview LL + Identifies MPEG-2 Multiview LL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewML +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095100
              + NODE + MPEG-2 Multiview ML + Identifies MPEG-2 Multiview ML coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095200
              + NODE + MPEG-2 Multiview HL + Identifies MPEG-2 Multiview HL coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2MultiviewH14 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01095300
              + NODE + MPEG-2 Multiview H14 + Identifies MPEG-2 Multiview H14 coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Video +
                urn:smpte:ul:060e2b34.04010103.04010202.01100000
              + NODE + MPEG-1 Video + Identifies MPEG-1 Video coding + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1ConstrainedProfile +
                urn:smpte:ul:060e2b34.04010103.04010202.01100100
              + LEAF + MPEG-1 Constrained Profile + Identifies MPEG-1 with Constrained Profile + ISO/IEC 11172-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1UnconstrainedCoding +
                urn:smpte:ul:060e2b34.04010103.04010202.01100200
              + LEAF + MPEG-1 Unconstrained Coding + Identifies MPEG-1 with Unconstrained Coding + ISO/IEC 11172-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4Part2Video +
                urn:smpte:ul:060e2b34.04010103.04010202.01200000
              + NODE + MPEG-4 Part2 Video + Identifies MPEG-4 Part 2 Compressed Video (natural visual) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200201
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 1 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200202
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 2 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200203
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 3 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4AdvancedRealTimeSimpleProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01200204
              + LEAF + MPEG-4 Advanced Real-time Simple Profile Level 4 + Identifies MPEG-4 Advanced Real-time Simple Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201001
              + LEAF + MPEG-4 Simple Studio Profile Level 1 + Identifies MPEG-4 Simple Studio Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201002
              + LEAF + MPEG-4 Simple Studio Profile Level 2 + Identifies MPEG-4 Simple Studio Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201003
              + LEAF + MPEG-4 Simple Studio Profile Level 3 + Identifies MPEG-4 Simple Studio Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201004
              + LEAF + MPEG-4 Simple Studio Profile Level 4 + Identifies MPEG-4 Simple Studio Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel5 +
                urn:smpte:ul:060e2b34.0401010b.04010202.01201005
              + LEAF + MPEG-4 Simple Studio Profile Level 5 + Identifies MPEG-4 Simple Studio Profile Level 5 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4SimpleStudioProfileLevel6 +
                urn:smpte:ul:060e2b34.0401010b.04010202.01201006
              + LEAF + MPEG-4 Simple Studio Profile Level 6 + Identifies MPEG-4 Simple Studio Profile Level 6 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel1 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201101
              + LEAF + MPEG-4 Core Studio Profile Level 1 + Identifies MPEG-4 Core Studio Profile Level 1 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel2 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201102
              + LEAF + MPEG-4 Core Studio Profile Level 2 + Identifies MPEG-4 Core Studio Profile Level 2 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel3 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201103
              + LEAF + MPEG-4 Core Studio Profile Level 3 + Identifies MPEG-4 Core Studio Profile Level 3 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG4CoreStudioProfileLevel4 +
                urn:smpte:ul:060e2b34.04010103.04010202.01201104
              + LEAF + MPEG-4 Core Studio Profile Level 4 + Identifies MPEG-4 Core Studio Profile Level 4 coding + ISO/IEC 14496-2 Visual + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCVideo +
                urn:smpte:ul:060e2b34.0401010a.04010202.01300000
              + NODE + H.264/MPEG-4 AVC Video + Identifies H.264/MPEG-4 AVC Video + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCPredictiveProfiles +
                urn:smpte:ul:060e2b34.0401010d.04010202.01310000
              + NODE + H.264/MPEG-4 AVC Predictive Profiles + Identifies H.264/MPEG-4 AVC Predictive Profiles + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCBaselineProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311000
              + NODE + H.264/MPEG-4 AVC Baseline Profile + Identifies H.264/MPEG-4 AVC Baseline Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCBaselineProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311001
              + LEAF + H.264/MPEG-4 AVC Baseline Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Baseline Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCConstrainedBaselineProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311100
              + NODE + H.264/MPEG-4 AVC Constrained Baseline Profile + Identifies H.264/MPEG-4 AVC Constrained Baseline Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCConstrainedBaselineProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01311101
              + LEAF + H.264/MPEG-4 AVC Constrained Baseline Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Constrained Baseline Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCMainProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01312000
              + NODE + H.264/MPEG-4 AVC Main Profile + Identifies H.264/MPEG-4 AVC Main Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCMainProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01312001
              + LEAF + H.264/MPEG-4 AVC Main Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Main Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCExtendedProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01313000
              + NODE + H.264/MPEG-4 AVC Extended Profile + Identifies H.264/MPEG-4 AVC Extended Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCExtendedProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01313001
              + LEAF + H.264/MPEG-4 AVC Extended Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC Extended Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHighProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01314000
              + NODE + H.264/MPEG-4 AVC High Profile + Identifies H.264/MPEG-4 AVC High Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHighProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01314001
              + LEAF + H.264/MPEG-4 AVC High Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10Profile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01315000
              + NODE + H.264/MPEG-4 AVC High 10 Profile + Identifies H.264/MPEG-4 AVC High 10 Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10ProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01315001
              + LEAF + H.264/MPEG-4 AVC High 10 Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 10 Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422Profile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01316000
              + NODE + H.264/MPEG-4 AVC High 422 Profile + Identifies H.264/MPEG-4 AVC High 422 Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422ProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01316001
              + LEAF + H.264/MPEG-4 AVC High 422 Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 422 Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444PredictiveProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01317000
              + NODE + H.264/MPEG-4 AVC High 444 Predictive Profile + Identifies H.264/MPEG-4 AVC High 444 Predictive Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444PredictiveProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01317001
              + LEAF + H.264/MPEG-4 AVC High 444 Predictive Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 444 Predictive Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCIntraProfiles +
                urn:smpte:ul:060e2b34.0401010a.04010202.01320000
              + NODE + H.264/MPEG-4 AVC Intra Profiles + Identifies H.264/MPEG-4 AVC Intra Profiles + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322000
              + NODE + H.264/MPEG-4 AVC High 10 Intra Profile + Identifies H.264/MPEG-4 AVC High 10 Intra Profile + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322001
              + LEAF + H.264/MPEG-4 AVC High 10 Intra Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 10 Intra Unconstrained Coding + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322100
              + NODE + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5010805994iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322101
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50108050iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322102
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5010802997pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322103
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass50108025pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322104
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass507205994pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322108
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh10IntraRP2027ConstrainedClass5072050pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01322109
              + LEAF + H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/50p Coding + Identifies H.264/MPEG-4 AVC High 10 Intra RP2027 Constrained Class 50 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323000
              + NODE + H.264/MPEG-4 AVC High 422 Intra Profile + Identifies H.264/MPEG-4 AVC High 422 Intra Profile + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323001
              + LEAF + H.264/MPEG-4 AVC High 422 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 422 Intra Profile Unconstrained Coding + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100 +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323100
              + NODE + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10010805994iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323101
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100108050iCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323102
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10010802997pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323103
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass100108025pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323104
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass1007205994pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323108
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass10072050pCoding +
                urn:smpte:ul:060e2b34.0401010a.04010202.01323109
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/50p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 100 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200 +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323200
              + NODE + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20010805994iCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323201
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/59.94i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/59.94i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200108050iCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323202
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/50i Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/50i Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20010802997pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323203
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/29.97p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/29.97p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass200108025pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323204
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/25p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 1080/25p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass2007205994pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323208
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/59.94p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/59.94p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh422IntraRP2027ConstrainedClass20072050pCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01323209
              + LEAF + H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/50p Coding + Identifies H.264/MPEG-4 AVC High 422 Intra RP2027 Constrained Class 200 720/50p Coding + SMPTE RP 2027 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444IntraProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01324000
              + NODE + H.264/MPEG-4 AVC High 444 Intra Profile + Identifies H.264/MPEG-4 AVC High 444 Intra Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCHigh444IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01324001
              + LEAF + H.264/MPEG-4 AVC High 444 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC High 444 Intra Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCCAVLC444IntraProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.01325000
              + NODE + H.264/MPEG-4 AVC CAVLC 444 Intra Profile + Identifies H.264/MPEG-4 AVC CAVLC 444 Intra Profile + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + H264MPEG4AVCCAVLC444IntraProfileUnconstrainedCoding +
                urn:smpte:ul:060e2b34.0401010d.04010202.01325001
              + LEAF + H.264/MPEG-4 AVC CAVLC 444 Intra Profile Unconstrained Coding + Identifies H.264/MPEG-4 AVC CAVLC 444 Intra Profile Unconstrained Coding. Note: Profile compliant coding with no additional constraints + ISO/IEC 14496-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVVideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02000000
              + NODE + DV Video Compression + Identifies all variants of DV Video Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IEC61834Part2VideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02010000
              + NODE + IEC-61834 Part-2 Video Compression + Identifies IEC DV Part-2 Video Compression family + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02010100
              + LEAF + IEC-DV Video 25Mbps 525x60I + Identifies IEC-DV compressed to 25Mbps for a 525x60I source + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02010200
              + LEAF + IEC-DV Video 25Mbps 625x50I + Identifies IEC-DV compressed to 25Mbps for a 625x50I source + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps525x60ISMPTE305MType41h +
                urn:smpte:ul:060e2b34.04010101.04010202.02010300
              + LEAF + IEC-DV Video 25Mbps 525x60I SMPTE-305M Type-41h + Identifies IEC-DV compressed to 25Mbps for a 525x60I source as defined by SMPTE-305M + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IECDVVideo25Mbps625x50ISMPTE305MType41h +
                urn:smpte:ul:060e2b34.04010101.04010202.02010400
              + LEAF + IEC-DV Video 25Mbps 625x50I SMPTE-305M Type-41h + Identifies IEC-DV compressed to 25Mbps for a 625x50I source as defined by SMPTE-305M + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideoCompression +
                urn:smpte:ul:060e2b34.04010101.04010202.02020000
              + NODE + DV-based Video Compression + Identifies DV-based Video Compression family + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo25Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020100
              + LEAF + DV-based Video 25Mbps 525x60I + Identifies DV-based compressed to 25Mbps for a 525x60I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo25Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020200
              + LEAF + DV-based Video 25Mbps 625x50I + Identifies DV-based compressed to 25Mbps for a 625x50I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo50Mbps525x60I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020300
              + LEAF + DV-based Video 50Mbps 525x60I + Identifies DV-based compressed to 50Mbps for a 525x60I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo50Mbps625x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020400
              + LEAF + DV-based Video 50Mbps 625x50I + Identifies DV-based compressed to 50Mbps for a 625x50I source + SMPTE ST 314 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps1080x5994I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020500
              + LEAF + DV-based Video 100Mbps 1080x59.94I + Identifies DV-based compressed to 100Mbps for a 1080x59.94I source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps1080x50I +
                urn:smpte:ul:060e2b34.04010101.04010202.02020600
              + LEAF + DV-based Video 100Mbps 1080x50I + Identifies DV-based compressed to 100Mbps for a 1080x50I source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps720x5994P +
                urn:smpte:ul:060e2b34.04010101.04010202.02020700
              + LEAF + DV-based Video 100Mbps 720x59.94P + Identifies DV-based compressed to 100Mbps for a 720x59.94P source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVBasedVideo100Mbps720x50P +
                urn:smpte:ul:060e2b34.04010101.04010202.02020800
              + LEAF + DV-based Video 100Mbps 720x50P + Identifies DV-based compressed to 100Mbps for a 720x50P source + SMPTE ST 370 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IndividualPictureCodingSchemes +
                urn:smpte:ul:060e2b34.04010107.04010202.03000000
              + NODE + Individual Picture Coding Schemes + Identifies Individual Picture Coding Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000PictureCodingScheme +
                urn:smpte:ul:060e2b34.04010107.04010202.03010000
              + NODE + JPEG 2000 Picture Coding Scheme + Identifies the JPEG 2000 picture coding scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ISOIEC154441JPEG2002 +
                urn:smpte:ul:060e2b34.04010107.04010202.03010100
              + NODE + ISO/IEC 15444-1 JPEG 2002 + Identifies JPEG 2000, ISO/IEC 15444-1:2002 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000DigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010107.04010202.03010101
              + LEAF + JPEG 2000 Digital Cinema Profile + Identifies a JPEG 2000, ISO/IEC 15444-1:2002 AMD 1, Digital Cinema Profile + ISO/IEC 15444-1:2002 AMD 1 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000Amd12KDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010109.04010202.03010103
              + LEAF + JPEG 2000 Amd-1 2K Digital Cinema Profile + Identifies a JPEG 2000 Amd-1 2K Digital Cinema Profile Bitstream + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000Amd14KDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.04010109.04010202.03010104
              + LEAF + JPEG 2000 Amd-1 4K Digital Cinema Profile + Identifies a JPEG 2000 Amd-1 4K Digital Cinema Profile Bitstream + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010111
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 1 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 1 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010112
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 2 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 2 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010113
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 3 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 3 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010114
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 4 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 4 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionSingleTileProfileLevel5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010115
              + LEAF + JPEG 2000 Broadcast Contribution Single Tile Profile Level 5 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Single Tile Profile Level 5 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionMultiTileReversibleProfileLevel6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010116
              + LEAF + JPEG 2000 Broadcast Contribution Multi-tile Reversible Profile Level 6 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Multi-tile Reversible Profile Level 6 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000BroadcastContributionMultiTileReversibleProfileLevel7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010117
              + LEAF + JPEG 2000 Broadcast Contribution Multi-tile Reversible Profile Level 7 + Identifies a JPEG 2000 Bitstream with an Broadcast Contribution Multi-tile Reversible Profile Level 7 + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + JPEG2000UndefinedDigitalCinemaProfile +
                urn:smpte:ul:060e2b34.0401010a.04010202.0301017f
              + LEAF + JPEG 2000 Undefined Digital Cinema Profile + Identifies a JPEG 2000 Bitstream with an Undefined Digital Cinema Profile + ISO/IEC 15444-1:2002 AMD 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010200
              + NODE + 2K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010201
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010202
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010203
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010204
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010205
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010206
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010207
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010208
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010209
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301020f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010210
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010211
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010212
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010213
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010214
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010215
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010216
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010217
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010218
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010219
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301021f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010220
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010221
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010222
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010223
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010224
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010225
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010226
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010227
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010228
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010229
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022c
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022d
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022e
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301022f
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010230
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010231
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010232
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010233
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010234
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010235
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010236
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010237
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010238
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010239
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301023a
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301023b
              + LEAF + 2K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 2K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010300
              + NODE + 4K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010301
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010302
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010303
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010304
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010305
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010306
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010307
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010308
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010309
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301030f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010310
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010311
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010312
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010313
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010314
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010315
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010316
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010317
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010318
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010319
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301031f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010320
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010321
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010322
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010323
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010324
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010325
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010326
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010327
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010328
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010329
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032c
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032d
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032e
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301032f
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010330
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010331
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010332
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010333
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010334
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010335
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010336
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010337
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010338
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010339
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301033a
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301033b
              + LEAF + 4K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 4K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010400
              + NODE + 8K IMF Single Tile Lossy Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010401
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010402
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010403
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010404
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010405
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010406
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010407
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010408
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010409
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301040f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010410
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010411
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010412
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010413
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010414
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010415
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010416
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010417
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010418
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010419
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301041f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010420
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010421
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010422
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010423
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010424
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010425
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010426
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010427
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010428
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010429
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042c
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042d
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042e
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301042f
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010430
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010431
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010432
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010433
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010434
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010435
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010436
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010437
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010438
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010439
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301043a
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleTileLossyProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301043b
              + LEAF + 8K IMF Single Tile Lossy Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 8K IMF Single Tile Lossy Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010500
              + NODE + 2K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010501
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010502
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010503
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010504
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010505
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010506
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010507
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010508
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010509
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301050f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010510
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010511
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010512
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010513
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010514
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010515
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010516
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010517
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010518
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010519
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301051f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010520
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010521
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010522
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010523
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010524
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010525
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010526
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010527
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010528
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010529
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052c
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052d
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052e
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301052f
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010530
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010531
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010532
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010533
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010534
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010535
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010536
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010537
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010538
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010539
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301053a
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_2KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301053b
              + LEAF + 2K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 2K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010600
              + NODE + 4K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010601
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010602
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010603
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010604
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010605
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010606
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010607
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010608
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010609
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301060f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010610
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010611
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010612
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010613
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010614
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010615
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010616
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010617
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010618
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010619
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301061f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010620
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010621
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010622
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010623
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010624
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010625
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010626
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010627
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010628
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010629
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062c
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062d
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062e
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301062f
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010630
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010631
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010632
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010633
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010634
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010635
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010636
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010637
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010638
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010639
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301063a
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_4KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301063b
              + LEAF + 4K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 4K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010700
              + NODE + 8K IMF Single/Multi-Tile Reversible Profile (ISO/IEC 15444-1:2004 AMD8) + Levels and sublevels of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M0S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010701
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 0 Sublevel 0) + Indicates a codestream conforming to Mainlevel 0 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M1S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010702
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 0) + Indicates a codestream conforming to Mainlevel 1 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M1S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010703
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 1 Sublevel 1) + Indicates a codestream conforming to Mainlevel 1 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M2S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010704
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 0) + Indicates a codestream conforming to Mainlevel 2 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M2S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010705
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 2 Sublevel 1) + Indicates a codestream conforming to Mainlevel 2 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M3S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010706
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 0) + Indicates a codestream conforming to Mainlevel 3 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M3S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010707
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 3 Sublevel 1) + Indicates a codestream conforming to Mainlevel 3 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010708
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 0) + Indicates a codestream conforming to Mainlevel 4 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010709
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 1) + Indicates a codestream conforming to Mainlevel 4 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M4S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 4 Sublevel 2) + Indicates a codestream conforming to Mainlevel 4 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 0) + Indicates a codestream conforming to Mainlevel 5 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 1) + Indicates a codestream conforming to Mainlevel 5 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 2) + Indicates a codestream conforming to Mainlevel 5 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M5S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 5 Sublevel 3) + Indicates a codestream conforming to Mainlevel 5 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301070f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 0) + Indicates a codestream conforming to Mainlevel 6 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010710
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 1) + Indicates a codestream conforming to Mainlevel 6 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010711
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 2) + Indicates a codestream conforming to Mainlevel 6 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010712
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 3) + Indicates a codestream conforming to Mainlevel 6 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M6S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010713
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 6 Sublevel 4) + Indicates a codestream conforming to Mainlevel 6 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010714
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 0) + Indicates a codestream conforming to Mainlevel 7 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010715
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 1) + Indicates a codestream conforming to Mainlevel 7 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010716
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 2) + Indicates a codestream conforming to Mainlevel 7 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010717
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 3) + Indicates a codestream conforming to Mainlevel 7 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010718
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 4) + Indicates a codestream conforming to Mainlevel 7 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M7S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010719
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 7 Sublevel 5) + Indicates a codestream conforming to Mainlevel 7 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 0) + Indicates a codestream conforming to Mainlevel 8 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 1) + Indicates a codestream conforming to Mainlevel 8 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 2) + Indicates a codestream conforming to Mainlevel 8 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 3) + Indicates a codestream conforming to Mainlevel 8 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 4) + Indicates a codestream conforming to Mainlevel 8 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301071f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 5) + Indicates a codestream conforming to Mainlevel 8 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M8S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010720
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 8 Sublevel 6) + Indicates a codestream conforming to Mainlevel 8 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010721
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 0) + Indicates a codestream conforming to Mainlevel 9 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010722
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 1) + Indicates a codestream conforming to Mainlevel 9 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010723
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 2) + Indicates a codestream conforming to Mainlevel 9 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010724
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 3) + Indicates a codestream conforming to Mainlevel 9 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010725
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 4) + Indicates a codestream conforming to Mainlevel 9 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010726
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 5) + Indicates a codestream conforming to Mainlevel 9 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010727
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 6) + Indicates a codestream conforming to Mainlevel 9 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M9S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010728
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 9 Sublevel 7) + Indicates a codestream conforming to Mainlevel 9 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010729
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 0) + Indicates a codestream conforming to Mainlevel 10 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 1) + Indicates a codestream conforming to Mainlevel 10 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 2) + Indicates a codestream conforming to Mainlevel 10 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072c
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 3) + Indicates a codestream conforming to Mainlevel 10 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072d
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 4) + Indicates a codestream conforming to Mainlevel 10 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072e
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 5) + Indicates a codestream conforming to Mainlevel 10 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301072f
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 6) + Indicates a codestream conforming to Mainlevel 10 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010730
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 7) + Indicates a codestream conforming to Mainlevel 10 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M10S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010731
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 10 Sublevel 8) + Indicates a codestream conforming to Mainlevel 10 Sublevel 8 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S0 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010732
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 0) + Indicates a codestream conforming to Mainlevel 11 Sublevel 0 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S1 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010733
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 1) + Indicates a codestream conforming to Mainlevel 11 Sublevel 1 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S2 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010734
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 2) + Indicates a codestream conforming to Mainlevel 11 Sublevel 2 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S3 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010735
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 3) + Indicates a codestream conforming to Mainlevel 11 Sublevel 3 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S4 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010736
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 4) + Indicates a codestream conforming to Mainlevel 11 Sublevel 4 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S5 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010737
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 5) + Indicates a codestream conforming to Mainlevel 11 Sublevel 5 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S6 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010738
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 6) + Indicates a codestream conforming to Mainlevel 11 Sublevel 6 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S7 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03010739
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 7) + Indicates a codestream conforming to Mainlevel 11 Sublevel 7 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S8 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301073a
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 8) + Indicates a codestream conforming to Mainlevel 11 Sublevel 8 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + J2K_8KIMF_SingleMultiTileReversibleProfile_M11S9 +
                urn:smpte:ul:060e2b34.0401010d.04010202.0301073b
              + LEAF + 8K IMF Single/Multi-Tile Reversible Profile (Mainlevel 11 Sublevel 9) + Indicates a codestream conforming to Mainlevel 11 Sublevel 9 of the 8K IMF Single/Multi-Tile Reversible Profile defined in ISO/IEC 15444-1:2004 AMD8 + ISO/IEC 15444-1:2004 AMD8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPPictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020000
              + NODE + TIFF/EP Picture Coding Scheme + Identifier for the TIFF/EP Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPProfile2PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020100
              + NODE + TIFF/EP Profile 2 Picture Coding Scheme + Identifier for the TIFF/EP Profile 2 Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPUncompressedCFA +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020101
              + LEAF + TIFF/EP Uncompressed CFA + Identifier for the TIFF/EP Uncompressed CFA format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPUncompressedLinearRaw +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020102
              + LEAF + TIFF/EP Uncompressed LinearRaw + Identifier for the TIFF/EP Uncompressed LinearRaw format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPCompressedCFA +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020103
              + LEAF + TIFF/EP Compressed CFA + Identifier for the TIFF/EP Compressed CFA format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TIFFEPCompressedLinearRaw +
                urn:smpte:ul:060e2b34.0401010b.04010202.03020104
              + LEAF + TIFF/EP Compressed LinearRaw + Identifier for the TIFF/EP Compressed LinearRaw format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC2PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03030000
              + NODE + VC-2 Picture Coding Scheme + Identifies the VC-2 Picture Coding Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC2Stream +
                urn:smpte:ul:060e2b34.0401010d.04010202.03030100
              + LEAF + VC-2 Stream + Identifies a bitstream as a VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESPictureCodingSchemes +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040000
              + NODE + ACES Picture Coding Schemes + Identifies ACES SMPTE ST 2065-4 Picture Coding Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESUncompressedMonoscopicWithoutAlpha +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040100
              + LEAF + ACES Uncompressed Monoscopic Without Alpha + Identifier for ACES SMPTE ST 2065-4 monoscopic uncompressed picture coding without alpha channel + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ACESUncompressedMonoscopicWithAlpha +
                urn:smpte:ul:060e2b34.0401010d.04010202.03040200
              + LEAF + ACES Uncompressed Monoscopic With Alpha + Identifier for ACES SMPTE ST 2065-4 monoscopic uncompressed picture coding with alpha channel + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050000
              + NODE + VC-5 Picture Coding Scheme + Picture essence coding label for a VC-5 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050300
              + NODE + VC-5 Part 3 Picture Coding Scheme + Picture essence coding label for a VC-5 Part 3 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3RGBAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050301
              + LEAF + VC-5 Part 3 RGB(A) Picture + Picture essence coding label for a VC-5 Part 3 bitstream with image format RGB(A) + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3YCCAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050302
              + LEAF + VC-5 Part 3 YCC(A) Picture + Picture essence coding label for a VC-5 Part 3 bitstream with image format YCC(A) + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part3BayerPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050303
              + LEAF + VC-5 Part 3 Bayer Picture + Picture essence coding label for a VC-5 Part 3 bitstream with Bayer image format + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part4PictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050400
              + NODE + VC-5 Part 4 Picture Coding Scheme + Picture Essence Coding Label for a VC-5 Part 4 bitstream + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + VC5Part4YCCAPicture +
                urn:smpte:ul:060e2b34.0401010d.04010202.03050402
              + LEAF + VC-5 Part 4 YCC(A) Picture + Picture essence coding label for a VC-5 Part 4 bitstream with subsampled color difference components + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCodingScheme +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060000
              + NODE + ProRes Picture Coding Scheme + Identifies ProRes Picture coding scheme + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422Proxy +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060100
              + LEAF + ProRes Picture Coding 422 Proxy + Identifies ProRes Picture coding for the 422 Proxy profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422LT +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060200
              + LEAF + ProRes Picture Coding 422 LT + Identifies ProRes Picture coding for the 422 LT profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060300
              + LEAF + ProRes Picture Coding 422 + Identifies ProRes Picture coding for the 422 profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding422HQ +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060400
              + LEAF + ProRes Picture Coding 422 HQ + Identifies ProRes Picture coding for the 422 HQ profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding4444 +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060500
              + LEAF + ProRes Picture Coding 4444 + Identifies ProRes Picture coding for the 4444 profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ProResPictureCoding4444XQ +
                urn:smpte:ul:060e2b34.0401010d.04010202.03060600
              + LEAF + ProRes Picture Coding 4444 XQ + Identifies ProRes Picture coding for the 4444 XQ profile + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SpecialisedCompressionSchemes +
                urn:smpte:ul:060e2b34.04010101.04010202.70000000
              + NODE + Specialised Compression Schemes + Identifies Specialised or Custom Compression Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11Compression +
                urn:smpte:ul:060e2b34.04010101.04010202.70010000
              + NODE + SMPTE D-11 Compression + Identifies Type D-11 compressed (High Definition) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110802398PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010100
              + LEAF + SMPTE D-11 1080 23.98PsF + Identifies SMPTE compression of a 1080/23.98PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108024PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010200
              + LEAF + SMPTE D-11 1080 24PsF + Identifies SMPTE compression of a 1080/24PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108025PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010300
              + LEAF + SMPTE D-11 1080 25PsF + Identifies SMPTE compression of a 1080/25PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110802997PsF +
                urn:smpte:ul:060e2b34.04010101.04010202.70010400
              + LEAF + SMPTE D-11 1080 29.97PsF + Identifies SMPTE compression of a 1080/29.97PsF source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED11108050I +
                urn:smpte:ul:060e2b34.04010101.04010202.70010500
              + LEAF + SMPTE D-11 1080 50I + Identifies SMPTE compression of a 1080/50I source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTED1110805994I +
                urn:smpte:ul:060e2b34.04010101.04010202.70010600
              + LEAF + SMPTE D-11 1080 59.94I + Identifies SMPTE compression of a 1080/59.94I source + SMPTE ST 367 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3Compression +
                urn:smpte:ul:060e2b34.0401010a.04010202.71000000
              + NODE + SMPTE VC-3 Compression + Identifies SMPTE VC-3 Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1235 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71010000
              + LEAF + SMPTE VC-3 ID 1235 + Identifies SMPTE VC-3 Compression ID 1235 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1237 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71030000
              + LEAF + SMPTE VC-3 ID 1237 + Identifies SMPTE VC-3 Compression ID 1237 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1238 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71040000
              + LEAF + SMPTE VC-3 ID 1238 + Identifies SMPTE VC-3 Compression ID 1238 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1241 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71070000
              + LEAF + SMPTE VC-3 ID 1241 + Identifies SMPTE VC-3 Compression ID 1241 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1242 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71080000
              + LEAF + SMPTE VC-3 ID 1242 + Identifies SMPTE VC-3 Compression ID 1242 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1243 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71090000
              + LEAF + SMPTE VC-3 ID 1243 + Identifies SMPTE VC-3 Compression ID 1243 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1244 +
                urn:smpte:ul:060e2b34.0401010d.04010202.710a0000
              + LEAF + SMPTE VC-3 ID 1244 + Identifies SMPTE VC-3 Compression ID 1244 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1250 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71100000
              + LEAF + SMPTE VC-3 ID 1250 + Identifies SMPTE VC-3 Compression ID 1250 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1251 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71110000
              + LEAF + SMPTE VC-3 ID 1251 + Identifies SMPTE VC-3 Compression ID 1251 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1252 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71120000
              + LEAF + SMPTE VC-3 ID 1252 + Identifies SMPTE VC-3 Compression ID 1252 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1253 +
                urn:smpte:ul:060e2b34.0401010a.04010202.71130000
              + LEAF + SMPTE VC-3 ID 1253 + Identifies SMPTE VC-3 Compression ID 1253 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1256 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71160000
              + LEAF + SMPTE VC-3 ID 1256 + Identifies SMPTE VC-3 Compression ID 1256 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1258 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71180000
              + LEAF + SMPTE VC-3 ID 1258 + Identifies SMPTE VC-3 Compression ID 1258 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1259 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71190000
              + LEAF + SMPTE VC-3 ID 1259 + Identifies SMPTE VC-3 Compression ID 1259 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1260 +
                urn:smpte:ul:060e2b34.0401010d.04010202.711a0000
              + LEAF + SMPTE VC-3 ID 1260 + Identifies SMPTE VC-3 Compression ID 1260 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1270 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71240000
              + LEAF + SMPTE VC-3 ID 1270 + Identifies SMPTE VC-3 Compression ID 1270 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1271 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71250000
              + LEAF + SMPTE VC-3 ID 1271 + Identifies SMPTE VC-3 Compression ID 1271 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1272 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71260000
              + LEAF + SMPTE VC-3 ID 1272 + Identifies SMPTE VC-3 Compression ID 1272 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1273 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71270000
              + LEAF + SMPTE VC-3 ID 1273 + Identifies SMPTE VC-3 Compression ID 1273 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC3ID1274 +
                urn:smpte:ul:060e2b34.0401010d.04010202.71280000
              + LEAF + SMPTE VC-3 ID 1274 + Identifies SMPTE VC-3 Compression ID 1274 + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1Compression +
                urn:smpte:ul:060e2b34.0401010a.04010202.72000000
              + NODE + SMPTE VC-1 Compression + Identifies SMPTE VC-1 Compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingSPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72010000
              + LEAF + SMPTE VC-1 Coding SP@LL + Identifies SMPTE VC-1 Compression Coding SP@LL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingSPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.72020000
              + LEAF + SMPTE VC-1 Coding SP@ML + Identifies SMPTE VC-1 Compression Coding SP@ML + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPLL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72030000
              + LEAF + SMPTE VC-1 Coding MP@LL + Identifies SMPTE VC-1 Compression Coding MP@LL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPML +
                urn:smpte:ul:060e2b34.0401010a.04010202.72040000
              + LEAF + SMPTE VC-1 Coding MP@ML + Identifies SMPTE VC-1 Compression Coding MP@ML + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingMPHL +
                urn:smpte:ul:060e2b34.0401010a.04010202.72050000
              + LEAF + SMPTE VC-1 Coding MP@HL + Identifies SMPTE VC-1 Compression Coding MP@HL + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL0 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72060000
              + LEAF + SMPTE VC-1 Coding AP@L0 + Identifies SMPTE VC-1 Compression Coding AP@L0 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL1 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72070000
              + LEAF + SMPTE VC-1 Coding AP@L1 + Identifies SMPTE VC-1 Compression Coding AP@L1 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL2 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72080000
              + LEAF + SMPTE VC-1 Coding AP@L2 + Identifies SMPTE VC-1 Compression Coding AP@L2 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL3 +
                urn:smpte:ul:060e2b34.0401010a.04010202.72090000
              + LEAF + SMPTE VC-1 Coding AP@L3 + Identifies SMPTE VC-1 Compression Coding AP@L3 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEVC1CodingAPL4 +
                urn:smpte:ul:060e2b34.0401010a.04010202.720a0000
              + LEAF + SMPTE VC-1 Coding AP@L4 + Identifies SMPTE VC-1 Compression Coding AP@L4 + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureTrackLabeling +
                urn:smpte:ul:060e2b34.0401010d.04010210.00000000
              + NODE + Picture Track Labeling + Identifies Picture Track Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PictureTrackLabelingForSMPTEST2070 +
                urn:smpte:ul:060e2b34.0401010d.04010210.01000000
              + NODE + Picture Track Labeling for SMPTE ST 2070 + Identifies Picture Track Labeling SMPTE ST 2070 + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftEyePictureTrack +
                urn:smpte:ul:060e2b34.0401010d.04010210.01010000
              + LEAF + Left Eye Picture Track + Identifies Picture Track Corresponding to Left Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightEyePictureTrack +
                urn:smpte:ul:060e2b34.0401010d.04010210.01020000
              + LEAF + Right Eye Picture Track + Identifies Picture Track Corresponding to Right Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ParametricSoundEssence +
                urn:smpte:ul:060e2b34.04010101.04020000.00000000
              + NODE + Sound Essence + Identifies sound essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundCodingCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04020200.00000000
              + NODE + Sound Coding Characteristics + Identifies sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UncompressedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020201.00000000
              + NODE + Uncompressed Sound Coding + Identifies uncompressed sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE382MDefaultUncompressedSoundCoding +
                urn:smpte:ul:060e2b34.0401010a.04020201.01000000
              + LEAF + SMPTE-382M Default Uncompressed Sound Coding + Identifies SMPTE-382M Default Uncompressed Sound Coding + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + AIFFUncompressedCoding +
                urn:smpte:ul:060e2b34.04010107.04020201.7e000000
              + LEAF + AIFF Uncompressed Coding + Identifies uncompressed sound coded according to AIFF (big-endian samples) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + UndefinedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020201.7f000000
              + LEAF + Undefined Sound Coding + Identifies uncompressed sound with no defined source coding standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedSoundCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.00000000
              + NODE + Compressed Sound Coding + Identifies compressed sound coding characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompressedAudioCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.03000000
              + NODE + Compressed Audio Coding + Identifies compression of all audio types + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompandedAudioCoding +
                urn:smpte:ul:060e2b34.04010103.04020202.03010000
              + NODE + Companded Audio Coding + Identifies sample-based companding schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ALawCodedAudioDefault +
                urn:smpte:ul:060e2b34.04010103.04020202.03010100
              + LEAF + A-law Coded Audio default + Identifies A-law 8-bit compressed audio - default value + ITU-T Rec G.711 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DVCompressedAudio +
                urn:smpte:ul:060e2b34.04010103.04020202.03011000
              + LEAF + DV Compressed Audio + Identifies DV 12-bit compressed audio + IEC 61834-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE338MAudioCoding +
                urn:smpte:ul:060e2b34.04010101.04020202.03020000
              + NODE + SMPTE ST 338 Audio per ST 337 Coding + Identifies Compressed audio types identified by SMPTE ST 338 + SMPTE ST 337, SMPTE ST 338 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ATSCA52CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020100
              + LEAF + ATSC A-52 Compressed Audio + Identifies ATSC A/52 compressed audio + ATSC A/52A + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer1CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020400
              + LEAF + MPEG-1 Layer-1 Compressed Audio + Identifies compressed audio compliant to MPEG-1 layer 1 + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer1Or2CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020500
              + LEAF + MPEG-1 Layer-1 or 2 Compressed Audio + Identifies compressed audio compliant to MPEG-1 layer 2 or 3 or MPEG-2 data without extension (audio) + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG1Layer2HDVConstrained +
                urn:smpte:ul:060e2b34.04010108.04020202.03020501
              + LEAF + MPEG-1 Layer-2 HDV Constrained + Identifies compressed audio compliant to MPEG-1 layer 2 stereo and constrained to the HDV specification + IEC61834-11(HDV) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2Layer1CompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03020600
              + LEAF + MPEG-2 Layer-1 Compressed Audio + Identifies compressed audio compliant to MPEG-2 data with extension (audio) + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DolbyECompressedAudio +
                urn:smpte:ul:060e2b34.04010101.04020202.03021c00
              + LEAF + Dolby-E Compressed Audio + Identifies Dolby E compressed audio + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + NonSMPTE338MMPEG2Coding +
                urn:smpte:ul:060e2b34.04010103.04020202.03030000
              + NODE + Non SMPTE ST 338 MPEG-2 Coding + Identifies MPEG-2 Audio compression schemes not defined by SMPTE ST 338 + SMPTE ST 337, SMPTE ST 338 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG2AACCompressedAudio +
                urn:smpte:ul:060e2b34.04010103.04020202.03030100
              + LEAF + MPEG-2 AAC Compressed Audio + Identifies MPEG-2 Advanced Audio Coding + ISO/IEC 13818-7 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_Compressed_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04000000
              + NODE + MPEG Audio Compression + Identifies MPEG Audio compression + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010000
              + NODE + MPEG-1 Audio Coding + Identifies compressed audio compliant to MPEG-1 audio coding + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_I +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010100
              + LEAF + MPEG-1 Layer I + Identifies compressed audio compliant to MPEG-1 Layer I + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_II +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010200
              + LEAF + MPEG-1 Layer II + Identifies compressed audio compliant to MPEG-1 Layer II + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_1_Layer_III +
                urn:smpte:ul:060e2b34.0401010d.04020202.04010300
              + LEAF + MPEG-1 Layer III + Identifies compressed audio compliant to MPEG-1 Layer III + ISO/IEC 11172-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020000
              + NODE + MPEG-2 Audio Coding + Identifies compressed audio compliant to MPEG-2 Audio Coding + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_I +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020100
              + LEAF + MPEG-2 Layer I + Identifies compressed audio compliant to MPEG-2 Layer I + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_II +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020200
              + LEAF + MPEG-2 Layer II + Identifies compressed audio compliant to MPEG-2 Layer II + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Layer_III +
                urn:smpte:ul:060e2b34.0401010d.04020202.04020300
              + LEAF + MPEG-2 Layer III + Identifies compressed audio compliant to MPEG-2 Layer III + ISO/IEC 13818-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_Advanced_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030000
              + NODE + MPEG-2 Advanced Audio Coding + Identifies compressed audio compliant to MPEG-2 Advanced Audio Coding + Refer to ISO/IEC 13818-7 + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_LC_AAC +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030100
              + LEAF + Low Complexity profile MPEG-2 AAC + Identifies compressed audio compliant to MPEG-2 AAC Low Complexity profile + Refer to ISO/IEC 13818-7, §7 "Profiles and Profile Interoperability" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_2_AAC_SBR +
                urn:smpte:ul:060e2b34.0401010d.04020202.04030200
              + LEAF + Low Complexity profile MPEG-2 AAC+SBR + Identifies compressed audio compliant to MPEG-2 AAC Low Complexity + SBR + Refer to ISO/IEC 13818-7, §7 "Profiles and Profile Interoperability" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_Advanced_Audio_Coding +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040000
              + NODE + MPEG-4 Advanced Audio Coding + Identifies compressed audio compliant to MPEG-4 Advanced Audio Coding + Refer to ISO/IEC 14496-3 + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_AAC_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040100
              + LEAF + MPEG-4 AAC Profile + Identifies compressed audio compliant to MPEG-4 AAC LC Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_High_Efficiency_AAC_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040200
              + LEAF + MPEG-4 High Efficiency AAC Profile + Identifies compressed audio compliant to MPEG-4 High Efficiency AAC Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + MPEG_4_High_Efficiency_AAC_v2_Profile +
                urn:smpte:ul:060e2b34.0401010d.04020202.04040300
              + LEAF + MPEG-4 High Efficiency AAC v2 Profile + Identifies compressed audio compliant to MPEG-4 High Efficiency AAC v2 Profile + Refer to ISO/IEC 14496-3, §1.5.2 "Audio profiles and levels" + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabeling +
                urn:smpte:ul:060e2b34.04010109.04020210.00000000
              + NODE + Sound Channel Labeling + Identifies Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE2035 +
                urn:smpte:ul:060e2b34.0401010b.04020210.01000000
              + NODE + Sound Channel Labeling SMPTE 2035 + Identifies SoundChannel Labeling SMPTE 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010000
              + NODE + SMPTE-2035 Mono Program Configurations + Identifies SMPTE-2035 Mono Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010100
              + LEAF + SMPTE-2035 Mono Program 1a + Identifies SMPTE-2035 Mono Program 1a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010200
              + LEAF + SMPTE-2035 Mono Program 1b + Identifies SMPTE-2035 Mono Program 1b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgram1c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01010300
              + LEAF + SMPTE-2035 Mono Program 1c + Identifies SMPTE-2035 Mono Program 1c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020000
              + NODE + SMPTE-2035 Stereo Program Configurations + Identifies SMPTE-2035 Stereo Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020100
              + LEAF + SMPTE-2035 Stereo Program 2a + Identifies SMPTE-2035 Stereo Program 2a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020200
              + LEAF + SMPTE-2035 Stereo Program 2b + Identifies SMPTE-2035 Stereo Program 2b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgram2c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01020300
              + LEAF + SMPTE-2035 Stereo Program 2c + Identifies SMPTE-2035 Stereo Program 2c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030000
              + NODE + SMPTE-2035 Dual Stereo Program Configurations + Identifies SMPTE-2035 Dual Stereo Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereo3a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030100
              + LEAF + SMPTE-2035 Dual Stereo 3a + Identifies SMPTE-2035 Dual Stereo 3a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereo3b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01030200
              + LEAF + SMPTE-2035 Dual Stereo 3b + Identifies SMPTE-2035 Dual Stereo 3b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentaryProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040000
              + NODE + SMPTE-2035 Mono Commentary Program Configurations + Identifies SMPTE-2035 Mono Commentary Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040100
              + LEAF + SMPTE-2035 Mono Commentary 4a + Identifies SMPTE-2035 Mono Commentary 4a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040200
              + LEAF + SMPTE-2035 Mono Commentary 4b + Identifies SMPTE-2035 Mono Commentary 4b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoCommentary4c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01040300
              + LEAF + SMPTE-2035 Mono Commentary 4c + Identifies SMPTE-2035 Mono Commentary 4c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSoundConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050000
              + NODE + SMPTE-2035 Stereo International Sound Configurations + Identifies SMPTE-2035 Stereo International Sound Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSound5a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050100
              + LEAF + SMPTE-2035 Stereo International Sound 5a + Identifies SMPTE-2035 Stereo International Sound 5a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoInternationalSound5b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01050200
              + LEAF + SMPTE-2035 Stereo International Sound 5b + Identifies SMPTE-2035 Stereo International Sound 5b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoCommentaryProgramConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060000
              + NODE + SMPTE-2035 Stereo Commentary Program Configurations + Identifies SMPTE-2035 Stereo Commentary Program Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramSound6a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060100
              + LEAF + SMPTE-2035 Stereo Program Sound 6a + Identifies SMPTE-2035 Stereo Program Sound 6a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramSound6b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01060200
              + LEAF + SMPTE-2035 Stereo Program Sound 6b + Identifies SMPTE-2035 Stereo Program Sound 6b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogueConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070000
              + NODE + SMPTE-2035 Mono Program Dialogue Configurations + Identifies SMPTE-2035 Mono Program Dialogue Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogue7a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070100
              + LEAF + SMPTE-2035 Mono Program Dialogue 7a + Identifies SMPTE-2035 Mono Program Dialogue 7a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramDialogue7b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01070200
              + LEAF + SMPTE-2035 Mono Program Dialogue 7b + Identifies SMPTE-2035 Mono Program Dialogue 7b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080000
              + NODE + SMPTE-2035 Mono Program Combo Configurations + Identifies SMPTE-2035 Mono Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080100
              + LEAF + SMPTE-2035 Mono Program Combo 8a + Identifies SMPTE-2035 Mono Program Combo 8a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080200
              + LEAF + SMPTE-2035 Mono Program Combo 8b + Identifies SMPTE-2035 Mono Program Combo 8b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramCombo8c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080300
              + LEAF + SMPTE-2035 Mono Program Combo 8c + Identifies SMPTE-2035 Mono Program Combo 8c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8d +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080400
              + LEAF + SMPTE-2035 Mono Programs Combo 8d + Identifies SMPTE-2035 Mono Programs Combo 8d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8e +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080500
              + LEAF + SMPTE-2035 Mono Programs Combo 8e + Identifies SMPTE-2035 Mono Programs Combo 8e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8f +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080600
              + LEAF + SMPTE-2035 Mono Programs Combo 8f + Identifies SMPTE-2035 Mono Programs Combo 8f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MonoProgramsCombo8g +
                urn:smpte:ul:060e2b34.0401010b.04020210.01080700
              + LEAF + SMPTE-2035 Mono Programs Combo 8g + Identifies SMPTE-2035 Mono Programs Combo 8g + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090000
              + NODE + SMPTE-2035 Stereo Program Combo Configurations + Identifies SMPTE-2035 Stereo Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9a +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090100
              + LEAF + SMPTE-2035 Stereo Program Combo 9a + Identifies SMPTE-2035 Stereo Program Combo 9a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9b +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090200
              + LEAF + SMPTE-2035 Stereo Program Combo 9b + Identifies SMPTE-2035 Stereo Program Combo 9b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9c +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090300
              + LEAF + SMPTE-2035 Stereo Program Combo 9c + Identifies SMPTE-2035 Stereo Program Combo 9c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9d +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090400
              + LEAF + SMPTE-2035 Stereo Program Combo 9d + Identifies SMPTE-2035 Stereo Program Combo 9d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramCombo9e +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090500
              + LEAF + SMPTE-2035 Stereo Program Combo 9e + Identifies SMPTE-2035 Stereo Program Combo 9e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035StereoProgramsCombo9f +
                urn:smpte:ul:060e2b34.0401010b.04020210.01090600
              + LEAF + SMPTE-2035 Stereo Programs Combo 9f + Identifies SMPTE-2035 Stereo Programs Combo 9f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelChannelNonPCMAudio +
                urn:smpte:ul:060e2b34.0401010b.04020210.010a0000
              + NODE + SMPTE-2035 Multi-Channel Channel Non-PCM Audio + Identifies SMPTE-2035 Multi-Channel Channel Non-PCM Audio + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelChannelNonPCM10a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010a0100
              + LEAF + SMPTE-2035 Multi-Channel Channel Non-PCM 10a + Identifies SMPTE-2035 Multi-Channel Channel Non-PCM 10a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramComboConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0000
              + NODE + SMPTE-2035 Multi-Channel Program Combo Configurations + Identifies SMPTE-2035 Multi-Channel Program Combo Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0100
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11a + Identifies SMPTE-2035 Multi-Channel Program Combo 11a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11b +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0200
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11b + Identifies SMPTE-2035 Multi-Channel Program Combo 11b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11c +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0300
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11c + Identifies SMPTE-2035 Multi-Channel Program Combo 11c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11d +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0400
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11d + Identifies SMPTE-2035 Multi-Channel Program Combo 11d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11e +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0500
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11e + Identifies SMPTE-2035 Multi-Channel Program Combo 11e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11f +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0600
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11f + Identifies SMPTE-2035 Multi-Channel Program Combo 11f + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11g +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0700
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11g + Identifies SMPTE-2035 Multi-Channel Program Combo 11g + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11h +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0800
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11h + Identifies SMPTE-2035 Multi-Channel Program Combo 11h + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035MultiChannelProgramCombo11i +
                urn:smpte:ul:060e2b34.0401010b.04020210.010b0900
              + LEAF + SMPTE-2035 Multi-Channel Program Combo 11i + Identifies SMPTE-2035 Multi-Channel Program Combo 11i + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoMultiChannelConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010c0000
              + NODE + SMPTE-2035 Dual Stereo Multi-Channel Configurations + Identifies SMPTE-2035 Dual Stereo Multi-Channel Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE2035DualStereoMultiChannel12a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010c0100
              + LEAF + SMPTE-2035 Dual Stereo Multi-Channel 12a + Identifies SMPTE-2035 Dual Stereo Multi-Channel 12a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackProgramTypeConfigurations +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0000
              + NODE + SMPTE-2035 12-Track Program Type Configurations + Identifies SMPTE-2035 12-Track Program Type Configurations + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoProgramsPlusMultiChannelProgram13a +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0100
              + LEAF + SMPTE-2035 12-Track Stereo Programs Plus Multi-Channel Program 13a + Identifies SMPTE-2035 12-Track Stereo Programs Plus Multi-Channel Program 13a + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoDualLanguageProgramPlusMultiChannelProgram13b +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0200
              + LEAF + SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Program 13b + Identifies SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Program 13b + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackStereoDualLanguageProgramPlusMultiChannelCodedAudio13c +
                urn:smpte:ul:060e2b34.0401010b.04020210.010d0300
              + LEAF + SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Coded-Audio 13c + Identifies SMPTE-2035 12-Track Stereo Dual-Language Program Plus Multi-Channel-Coded-Audio 13c + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackMultiChannelProgramPlusStereoPrograms13d +
                urn:smpte:ul:060e2b34.0401010d.04020210.010d0400
              + LEAF + SMPTE-2035 12-Track Multi-Channel Program plus Stereo Programs 13d + Identifies SMPTE-2035 12-Track Multi-Channel Program plus Stereo Programs 13d + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE203512TrackMultiChannelProgramPlusStereoProgram13e +
                urn:smpte:ul:060e2b34.0401010d.04020210.010d0500
              + LEAF + SMPTE-2035 12-Track Multi-Channel Program plus Stereo Program 13e + Identifies SMPTE-2035 12-Track Multi-Channel Program plus Stereo Program 13e + SMPTE ST 2035 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE320M +
                urn:smpte:ul:060e2b34.04010109.04020210.02000000
              + NODE + Sound Channel Labeling SMPTE320M + Identifies Sound Channel Labeling according to SMPTE320M + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE320M8ChannelModeA +
                urn:smpte:ul:060e2b34.04010109.04020210.02010000
              + LEAF + SMPTE-320M 8-Channel ModeA + Identifies SMPTE-320M 8-Channel ModeA + SMPTE ST 320 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE320M8ChannelModeB +
                urn:smpte:ul:060e2b34.04010109.04020210.02020000
              + LEAF + SMPTE-320M 8-Channel ModeB + Identifies SMPTE-320M 8-Channel ModeB + SMPTE ST 320 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE4292 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03000000
              + NODE + Sound Channel Labeling SMPTE 429-2 + Identifies Sound Channel Labeling according to SMPTE 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTE4292Sets1 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010000
              + NODE + Sound Channel Labeling SMPTE 429-2 Sets-1 + Identifies Static Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration1 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010100
              + LEAF + SMPTE-429-2 Channel Configuration 1 + Identifies SMPTE-429-2 Channel Configuration 1 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration2 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010200
              + LEAF + SMPTE-429-2 Channel Configuration 2 + Identifies SMPTE-429-2 Channel Configuration 2 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration3 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010300
              + LEAF + SMPTE-429-2 Channel Configuration 3 + Identifies SMPTE-429-2 Channel Configuration 3 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration4 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010400
              + LEAF + SMPTE-429-2 Channel Configuration 4 + Identifies SMPTE-429-2 Channel Configuration 4 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292ChannelConfiguration5 +
                urn:smpte:ul:060e2b34.0401010b.04020210.03010500
              + LEAF + SMPTE-429-2 Channel Configuration 5 + Identifies SMPTE-429-2 Channel Configuration 5 + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE4292DCinemaApplicationOfTheMultichannelAudioFramework +
                urn:smpte:ul:060e2b34.0401010d.04020210.03020000
              + LEAF + SMPTE-429-2 D-Cinema Application of the Multichannel Audio Framework + Identifies SMPTE-429-2 D-Cinema Application of the Multichannel Audio Framework + SMPTE ST 429-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SoundChannelLabelingSMPTEST20672 +
                urn:smpte:ul:060e2b34.0401010d.04020210.04000000
              + NODE + Sound Channel Labeling SMPTE ST 2067-2 + Identifies Sound Channel Labeling SMPTE ST 2067-2 + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTEST20672ApplicationOfTheMXFMultichannelAudioFramework +
                urn:smpte:ul:060e2b34.0401010d.04020210.04010000
              + LEAF + SMPTE ST 2067-2 Application of the MXF Multichannel Audio Framework + Identifies SMPTE ST 2067-2 Application of the MXF Multichannel Audio Framework + SMPTE ST 2067-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssence +
                urn:smpte:ul:060e2b34.04010101.04030000.00000000
              + NODE + Data Essence + Identifies data essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericEventTextEssence +
                urn:smpte:ul:060e2b34.0401010d.04030100.00000000
              + NODE + Generic Event Text Essence + Identifies Generic Event Text Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericSubtitleEssence +
                urn:smpte:ul:060e2b34.0401010d.04030101.00000000
              + NODE + Generic Subtitle Essence + Identifies Generic Subtitle Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EBUT3264STLSubtitleEssence +
                urn:smpte:ul:060e2b34.0401010d.04030101.01000000
              + LEAF + EBU-t3264 STL Subtitle Essence + Identifies EBU-t3264 STL Subtitle Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GenericCaptionsEssence +
                urn:smpte:ul:060e2b34.0401010d.04030102.00000000
              + NODE + Generic Captions Essence + Identifies Generic Captions Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + EBUT3264STLCaptionsEssence +
                urn:smpte:ul:060e2b34.0401010d.04030102.01000000
              + LEAF + EBU-t3264 STL Captions Essence + Identifies EBU-t3264 STL Captions Essence + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataEssenceCodingCharacteristics +
                urn:smpte:ul:060e2b34.0401010d.04030200.00000000
              + NODE + Data Essence Coding Characteristics + Identifies Data Essence Coding Characteristics + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataTrackLabeling +
                urn:smpte:ul:060e2b34.0401010d.04030210.00000000
              + NODE + Data Track Labeling + Identifies Data Track Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DataTrackLabelingSMPTEST2070 +
                urn:smpte:ul:060e2b34.0401010d.04030210.01000000
              + NODE + Data Track Labeling SMPTE ST 2070 + Identifies Data Track Labeling SMPTE ST 2070 + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + LeftEyeDataTrack +
                urn:smpte:ul:060e2b34.0401010d.04030210.01010000
              + LEAF + Left Eye Data Track + Identifies Data Track Corresponding to Left Eye + SMTPE ST 2070 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RightEyeDataTrack +
                urn:smpte:ul:060e2b34.0401010d.04030210.01020000
              + LEAF + Right Eye Data Track + Identifies Data Track Corresponding to Right Eye + SMPTE ST 2070-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + Metadata +
                urn:smpte:ul:060e2b34.04010101.04040000.00000000
              + NODE + Metadata + Identifies metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FundamentalMetadataCharacteristics +
                urn:smpte:ul:060e2b34.04010101.04040100.00000000
              + NODE + Fundamental Metadata Characteristics + Identifies fundamental metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + StaticMetadata +
                urn:smpte:ul:060e2b34.04010101.04040101.00000000
              + NODE + Static Metadata + Identifies static metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DynamicMetadata +
                urn:smpte:ul:060e2b34.04010101.04040102.00000000
              + NODE + Dynamic Metadata + Identifies dynamic metadata parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RepetitiveTimingMetadata +
                urn:smpte:ul:060e2b34.04010101.04040102.01000000
              + NODE + Repetitive Timing Metadata + Identifies repetitive timing metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MInactiveUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01010000
              + NODE + SMPTE-12M Inactive User Bits + Identifies SMPTE 12M timecode with inactive user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsInactiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010100
              + LEAF + SMPTE-12M 23.98fps Inactive User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Inactive User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsInactiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010101
              + LEAF + SMPTE-12M 23.98fps Inactive User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Inactive User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010200
              + LEAF + SMPTE-12M 24fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010300
              + LEAF + SMPTE-12M 25fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsInactiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010400
              + LEAF + SMPTE-12M 29.97fps Inactive User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Inactive User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsInactiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01010401
              + LEAF + SMPTE-12M 29.97fps Inactive User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Inactive User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsInactiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01010500
              + LEAF + SMPTE-12M 30fps Inactive User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Inactive User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MActiveUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01020000
              + NODE + SMPTE-12M Active User Bits + Identifies SMPTE 12M timecode with active user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsActiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020100
              + LEAF + SMPTE-12M 23.98fps Active User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Active User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsActiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020101
              + LEAF + SMPTE-12M 23.98fps Active User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Active User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020200
              + LEAF + SMPTE-12M 24fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020300
              + LEAF + SMPTE-12M 25fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsActiveUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020400
              + LEAF + SMPTE-12M 29.97fps Active User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Active User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsActiveUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01020401
              + LEAF + SMPTE-12M 29.97fps Active User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Active User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsActiveUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01020500
              + LEAF + SMPTE-12M 30fps Active User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Active User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12MDatecodeUserBits +
                urn:smpte:ul:060e2b34.04010101.04040102.01030000
              + NODE + SMPTE-12M Datecode User Bits + Identifies SMPTE 12M timecode with datecode user bits + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsDatecodeUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030100
              + LEAF + SMPTE-12M 23.98fps Datecode User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 23.98fps with Datecode User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2398fpsDatecodeUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030101
              + LEAF + SMPTE-12M 23.98fps Datecode User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 23.98fps with Datecode User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M24fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030200
              + LEAF + SMPTE-12M 24fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 24fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M25fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030300
              + LEAF + SMPTE-12M 25fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 25fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsDatecodeUserBitsDropFrameInactive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030400
              + LEAF + SMPTE-12M 29.97fps Datecode User Bits Drop Frame Inactive + Identifies SMPTE-12M timecode at 29.97fps with Datecode User Bits and Drop Frame Inactive + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M2997fpsDatecodeUserBitsDropFrameActive +
                urn:smpte:ul:060e2b34.04010101.04040102.01030401
              + LEAF + SMPTE-12M 29.97fps Datecode User Bits Drop Frame Active + Identifies SMPTE-12M timecode at 29.97fps with Datecode User Bits and Drop Frame Active + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SMPTE12M30fpsDatecodeUserBitsNoDropFrame +
                urn:smpte:ul:060e2b34.04010101.04040102.01030500
              + LEAF + SMPTE-12M 30fps Datecode User Bits No Drop Frame + Identifies SMPTE-12M timecode at 30fps with Datecode User Bits and No Drop Frame + SMPTE ST 12-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTDataCoding +
                urn:smpte:ul:060e2b34.0401010d.04040102.02000000
              + NODE + DMCVT Data Coding + Identifies DMCVT Data Coding + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication1 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02010000
              + LEAF + DMCVT Application 1 + Identifies DMCVT Application 1 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication2 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02020000
              + LEAF + DMCVT Application 2 + Identifies DMCVT Application 2 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication3 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02030000
              + LEAF + DMCVT Application 3 + Identifies DMCVT Application 3 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DMCVTApplication4 +
                urn:smpte:ul:060e2b34.0401010d.04040102.02040000
              + LEAF + DMCVT Application 4 + Identifies DMCVT Application 4 + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CompoundEssence +
                urn:smpte:ul:060e2b34.04010101.04050000.00000000
              + NODE + Compound Essence + SMPTE Label identifiers for compound essence parameters + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GeneralData +
                urn:smpte:ul:060e2b34.04010101.04100000.00000000
              + NODE + General Data + SMPTE Label identifiers for general data parameters (neither essence nor metadata) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ViewingEnvironment +
                urn:smpte:ul:060e2b34.0401010d.04100101.01000000
              + NODE + Viewing Environment + Viewing Environment Labels + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + TheatricalViewingEnvironment +
                urn:smpte:ul:060e2b34.0401010d.04100101.01010000
              + LEAF + Theatrical Viewing Environment + Theatrical Viewing Environment as defined in SMPTE RP 431-2 + SMPTE RP 431-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HDTVReferenceViewingEnvironment +
                urn:smpte:ul:060e2b34.0401010d.04100101.01020000
              + LEAF + HDTV Reference Viewing Environment + Reference Viewing Environment for Evaluation of HDTV Images, as defined in SMPTE ST 2080-3 + SMPTE ST 2080-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + HDRReferenceViewingEnvironment +
                urn:smpte:ul:060e2b34.0401010d.04100101.01030000
              + LEAF + HDR Reference Viewing Environment + Reference Viewing Environment for Evaluation of HDR Images, as defined in ITU-R BT.2100-1 + ITU-R BT.2100-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + PROCESS +
                urn:smpte:ul:060e2b34.04010101.05000000.00000000
              + NODE + PROCESS + SMPTE Label identifiers for Process Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + Settings +
                urn:smpte:ul:060e2b34.0401010b.05100000.00000000
              + NODE + Settings + Identifies Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + DeviceSettings +
                urn:smpte:ul:060e2b34.0401010b.05100100.00000000
              + NODE + Device Settings + Identifies Device Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + CameraSettings +
                urn:smpte:ul:060e2b34.0401010b.05100101.00000000
              + NODE + Camera Settings + Identifies Camera Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ExposureSettings +
                urn:smpte:ul:060e2b34.0401010b.05100101.01000000
              + NODE + Exposure Settings + Identifies Exposure Settings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ManualExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01010000
              + LEAF + Manual Exposure + Identifies Manual Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + FullAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01020000
              + LEAF + Full Auto Exposure + Identifies Full Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + GainPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01030000
              + LEAF + Gain Priority Auto Exposure + Identifies Gain Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + IrisPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01040000
              + LEAF + Iris Priority Auto Exposure + Identifies Iris Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + ShutterPriorityAutoExposure +
                urn:smpte:ul:060e2b34.0401010b.05100101.01050000
              + LEAF + Shutter Priority Auto Exposure + Identifies Shutter Priority Auto Exposure + SMPTE RDD 18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + RELATIONAL +
                urn:smpte:ul:060e2b34.04010101.06000000.00000000
              + NODE + RELATIONAL + SMPTE Label identifiers for Relational Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + SPATIOTEMPORAL +
                urn:smpte:ul:060e2b34.04010101.07000000.00000000
              + NODE + SPATIO-TEMPORAL + SMPTE Label identifiers for Spatio-Temporal Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012 + COMPOUND +
                urn:smpte:ul:060e2b34.04010101.0c000000.00000000
              + NODE + COMPOUND + SMPTE Label identifiers for Compound Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.04010101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.04010101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFStructuralMetadata +
                urn:smpte:ul:060e2b34.04010101.0d010100.00000000
              + NODE + AAF Structural Metadata + Identifiers for AAF Structural Metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFStructuralMetadataVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010101.00000000
              + NODE + AAF Structural Metadata Version 1 + Identifiers for AAF Structural Metadata Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFVersion1Standard +
                urn:smpte:ul:060e2b34.04010101.0d010101.01000000
              + NODE + AAF Version 1 Standard + Identifiers for AAF Version 1 Standard + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFVersion1StandardKinds +
                urn:smpte:ul:060e2b34.04010101.0d010101.01010000
              + NODE + AAF Version 1 Standard Kinds + Identifiers for AAF Version 1 Standard Kinds + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + OperationCategory_Effect +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010100
              + LEAF + OperationCategory Effect + Identifier for OperationCategory Effect + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Effect +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010200
              + LEAF + PluginCategory Effect + Identifier for PluginCategory Effect + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Codec +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010300
              + LEAF + PluginCategory Codec + Identifier for PluginCategory Codec + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + PluginCategory_Interpolation +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010400
              + LEAF + PluginCategory Interpolation + Identifier for PluginCategory Interpolation + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_SubClip +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010500
              + LEAF + Usage SubClip + Identifier for Usage SubClip + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_AdjustedClip +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010600
              + LEAF + Usage AdjustedClip + Identifier for Usage AdjustedClip + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_TopLevel +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010700
              + LEAF + Usage TopLevel + Identifier for Usage TopLevel + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_LowerLevel +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010800
              + LEAF + Usage LowerLevel + Identifier for Usage LowerLevel + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + Usage_Template +
                urn:smpte:ul:060e2b34.04010101.0d010102.01010900
              + LEAF + Usage Template + Identifier for Usage Template + AAF Object Specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOperationalPatternApplication +
                urn:smpte:ul:060e2b34.04010101.0d010200.00000000
              + NODE + MXF Operational Pattern Application + Identifiers for MXF Operational Patterns + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPStructureVersion +
                urn:smpte:ul:060e2b34.04010101.0d010201.00000000
              + NODE + MXF OP Structure Version + Identifiers for MXF OPs with Structure Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1xSingleItemAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.01000000
              + NODE + MXF OP1x SingleItem AnyPackage + Identifiers for MXF OP1x, SingleItem AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010000
              + NODE + MXF OP1a SingleItem SinglePackage + Identifiers for MXF: OP1a, SingleItem SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010100
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack Stream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack Stream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010300
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack Stream External + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack Stream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010500
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack NonStream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack NonStream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010700
              + LEAF + MXF OP1a SingleItem SinglePackage UniTrack NonStream External + Identifier for MXF OP1a SingleItem SinglePackage, with UniTrack NonStream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010900
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack Stream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack Stream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010b00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack Stream External + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack Stream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010d00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack NonStream Internal + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1aSingleItemSinglePackageMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01010f00
              + LEAF + MXF OP1a SingleItem SinglePackage MultiTrack NonStream External + Identifier for MXF OP1a SingleItem SinglePackage, with MultiTrack NonStream and External essence constraints + SMPTE ST 378 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020000
              + NODE + MXF OP1b SingleItem GangedPackages + Identifiers for MXF: OP1b, SingleItem GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020100
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack Stream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack Stream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020300
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack Stream External + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack Stream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020500
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack NonStream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack NonStream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020700
              + LEAF + MXF OP1b SingleItem GangedPackages UniTrack NonStream External + Identifier for MXF OP1b SingleItem GangedPackages, with UniTrack NonStream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020900
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack Stream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack Stream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020b00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack Stream External + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack Stream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020d00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack NonStream Internal + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1bSingleItemGangedPackagesMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01020f00
              + LEAF + MXF OP1b SingleItem GangedPackages MultiTrack NonStream External + Identifier for MXF OP1b SingleItem GangedPackages, with MultiTrack NonStream and External essence constraints + SMPTE ST 391 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030000
              + NODE + MXF OP1c SingleItem AlternatePackages + Identifiers for MXF: OP1c, SingleItem AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030100
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack Stream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack Stream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030300
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack Stream External + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack Stream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030500
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack NonStream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack NonStream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesUniTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030700
              + LEAF + MXF OP1c SingleItem AlternatePackages UniTrack NonStream External + Identifier for MXF OP1c SingleItem AlternatePackages, with UniTrack NonStream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030900
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack Stream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack Stream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030b00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack Stream External + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack Stream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackNonStreamInternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030d00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack NonStream Internal + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack NonStream and Internal essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP1cSingleItemAlternatePackagesMultiTrackNonStreamExternal +
                urn:smpte:ul:060e2b34.04010101.0d010201.01030f00
              + LEAF + MXF OP1c SingleItem AlternatePackages MultiTrack NonStream External + Identifier for MXF OP1c SingleItem AlternatePackages, with MultiTrack NonStream and External essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2xPlaylistItemsAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.02000000
              + NODE + MXF OP2x PlaylistItems AnyPackage + Identifiers for MXF: OP2x, PlaylistItems AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010000
              + NODE + MXF OP2a PlaylistItems SinglePackage + Identifiers for MXF: OP2a, PlaylistItems SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010100
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010110
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010300
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010310
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack Stream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010500
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010510
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010700
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010710
              + LEAF + MXF OP2a PlaylistItems SinglePackage UniTrack NonStream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010900
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010910
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010b00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010b10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack Stream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010d00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010d10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010f00
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream External NoProcessing + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2aPlaylistItemsSinglePackageMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02010f10
              + LEAF + MXF OP2a PlaylistItems SinglePackage MultiTrack NonStream External MayProcess + Identifier for MXF OP2a PlaylistItems, SinglePackage, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 392 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020000
              + NODE + MXF OP2b PlaylistItems GangedPackages + Identifiers for MXF: OP2b, PlaylistItems GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020100
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020110
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020300
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020310
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack Stream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020500
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020510
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020700
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020710
              + LEAF + MXF OP2b PlaylistItems GangedPackages UniTrack NonStream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020900
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020910
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020b00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020b10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack Stream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020d00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020d10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020f00
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2bPlaylistItemsGangedPackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02020f10
              + LEAF + MXF OP2b PlaylistItems GangedPackages MultiTrack NonStream External MayProcess + Identifier for MXF OP2b PlaylistItems, GangedPackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 393 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030000
              + NODE + MXF OP2c PlaylistItems AlternatePackages + Identifiers for MXF: OP2c, PlaylistItems AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030100
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030110
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030300
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030310
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack Stream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030500
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030510
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030700
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030710
              + LEAF + MXF OP2c PlaylistItems AlternatePackages UniTrack NonStream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030900
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030910
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030b00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030b10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack Stream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030d00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030d10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030f00
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP2cPlaylistItemsAlternatePackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.02030f10
              + LEAF + MXF OP2c PlaylistItems AlternatePackages MultiTrack NonStream External MayProcess + Identifier for MXF OP2c PlaylistItems, AlternatePackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3xEditItemsAnyPackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.03000000
              + NODE + MXF OP3x EditItems AnyPackage + Identifiers for MXF: OP3x, EditItems AnyPackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackage +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010000
              + NODE + MXF OP3a EditItems SinglePackage + Identifiers for MXF: OP3a, EditItems SinglePackage + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010100
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010110
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010300
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010310
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack Stream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010500
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010510
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010700
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010710
              + LEAF + MXF OP3a EditItems SinglePackage UniTrack NonStream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010900
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010910
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010b00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010b10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack Stream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010d00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010d10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010f00
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream External NoProcessing + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3aEditItemsSinglePackageMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03010f10
              + LEAF + MXF OP3a EditItems SinglePackage MultiTrack NonStream External MayProcess + Identifier for MXF OP3a EditItems, SinglePackage, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020000
              + NODE + MXF OP3b EditItems GangedPackages + Identifiers for MXF: OP3b, EditItems GangedPackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020100
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020110
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020300
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020310
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack Stream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020500
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020510
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020700
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020710
              + LEAF + MXF OP3b EditItems GangedPackages UniTrack NonStream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020900
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020910
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020b00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020b10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack Stream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020d00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020d10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020f00
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3bEditItemsGangedPackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03020f10
              + LEAF + MXF OP3b EditItems GangedPackages MultiTrack NonStream External MayProcess + Identifier for MXF OP3b EditItems, GangedPackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 407 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackages +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030000
              + NODE + MXF OP3c EditItems AlternatePackages + Identifiers for MXF: OP3c, EditItems AlternatePackages + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030100
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030110
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030300
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030310
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack Stream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030500
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030510
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030700
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesUniTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030710
              + LEAF + MXF OP3c EditItems AlternatePackages UniTrack NonStream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with UniTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030900
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030910
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030b00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030b10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack Stream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, Stream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamInternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030d00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream Internal NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, Internal and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamInternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030d10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream Internal MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, Internal and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamExternalNoProcessing +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030f00
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream External NoProcessing + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, External and NoProcessing essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOP3cEditItemsAlternatePackagesMultiTrackNonStreamExternalMayProcess +
                urn:smpte:ul:060e2b34.04010101.0d010201.03030f10
              + LEAF + MXF OP3c EditItems AlternatePackages MultiTrack NonStream External MayProcess + Identifier for MXF OP3c EditItems, AlternatePackages, with MultiTrack, NonStream, External and MayProcess essence constraints + SMPTE ST 408 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtom1Track1SourceClip +
                urn:smpte:ul:060e2b34.04010102.0d010201.10000000
              + LEAF + MXF-OP Atom 1 Track 1 SourceClip + Identifier for MXF-OP Atom file, where the Material Package contains 1 Track that has 1 SourceClip + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtom1TrackNSourceClips +
                urn:smpte:ul:060e2b34.04010102.0d010201.10010000
              + LEAF + MXF-OP Atom 1 Track N SourceClips + Identifier for MXF-OP Atom file, where the Material Package contains 1 Track that has N>1 SourceClips + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtomNTracks1SourceClip +
                urn:smpte:ul:060e2b34.04010102.0d010201.10020000
              + LEAF + MXF-OP Atom N Tracks 1 SourceClip + Identifier for MXF-OP Atom file, where the Material Package contains N Tracks that has 1 SourceClip + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFOPAtomNTracksNSourceClips +
                urn:smpte:ul:060e2b34.04010102.0d010201.10030000
              + LEAF + MXF-OP Atom N Tracks N SourceClips + Identifier for MXF-OP Atom file, where the Material Package contains N Tracks that has N>1 SourceClips + SMPTE ST 390 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEssenceContainers +
                urn:smpte:ul:060e2b34.04010101.0d010300.00000000
              + NODE + MXF Essence Containers + Identifiers for MXF Essence Containers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEssenceContainersVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010301.00000000
              + NODE + MXF Essence Containers Version-1 + Identifiers for MXF Essence Containers Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericContainerDeprecated +
                urn:smpte:ul:060e2b34.04010101.0d010301.01000000
              + NODE + MXF Generic Container (Deprecated) + Identifiers for the MXF Generic Container - for experimental and heritage versions (deprecated for future use) + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericContainer +
                urn:smpte:ul:060e2b34.04010101.0d010301.02000000
              + NODE + MXF Generic Container + Identifiers for the MXF Generic Container + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED10Mappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010000
              + NODE + MXF-GC SMPTE D-10 Mappings + Identifiers for mappings using the MXF-GC SMPTE D-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED10625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010100
              + NODE + MXF-GC SMPTE D-10 625x50I 50Mbps + Identifiers for mapping SMPTE D-10 with 625x50I at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010101
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010102
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I50MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201017f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 50Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010200
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 50Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010201
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010202
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I50MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201027f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 50Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10625x50I40Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010300
              + NODE + MXF-GC SMPTE Type-D10 625x50I 40Mbps + Identifiers for mapping SMPTE Type-D10 with 625x50I at 40Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010301
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010302
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I40MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201037f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 40Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I40Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010400
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 40Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 40Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010401
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010402
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I40MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201047f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 40Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10625x50I30Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010500
              + NODE + MXF-GC SMPTE Type-D10 625x50I 30Mbps + Identifiers for mapping SMPTE Type-D10 with 625x50I at 30Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010501
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010502
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10625x50I30MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201057f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 625x50I 30Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 625x50I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD10525x5994I30Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010600
              + NODE + MXF-GC SMPTE Type-D10 525x59.94I 30Mbps + Identifiers for mapping SMPTE Type-D10 with 525x59.94I at 30Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010601
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps DefinedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the defined template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02010602
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps ExtendedTemplate + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the extended template + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED10525x5994I30MbpsPictureOnly +
                urn:smpte:ul:060e2b34.04010102.0d010301.0201067f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-10 525x59.94I 30Mbps PictureOnly + Identifier for MXF-GC Frame-wrapped SMPTE mapping of D-10 at 525x59.94I using the picture-only + SMPTE ST 386 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVDIFMappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020000
              + NODE + MXF-GC DV-DIF Mappings + Identifiers for mappings using the MXF-GC: DV-DIF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020100
              + NODE + MXF-GC IEC-DV 525x59.94I 25Mbps + Identifiers for mappings using the MXF-GC IEC-DV compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020101
              + LEAF + MXF-GC Frame-wrapped IEC-DV 525x59.94I 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020102
              + LEAF + MXF-GC Clip-wrapped IEC-DV 525x59.94I 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020200
              + NODE + MXF-GC IEC DV 625x50I 25Mbps + Identifiers for mappings using the MXF-GC IEC DV compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020201
              + LEAF + MXF-GC Frame-wrapped IEC-DV 625x50I 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020202
              + LEAF + MXF-GC Clip-wrapped IEC-DV 625x50I 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020300
              + NODE + MXF-GC IEC DV 525x59.94I 25Mbps SMPTE-322M + Identifiers for mappings using the MXF-GC IEC DV compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020301
              + LEAF + MXF-GC Frame-wrapped IEC-DV 525x59.94I 25Mbps SMPTE-322M + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV525x5994I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020302
              + LEAF + MXF-GC Clip-wrapped IEC-DV 525x59.94I 25Mbps SMPTE-322M + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 525x59.94I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020400
              + NODE + MXF-GC IEC DV 625x50I 25Mbps SMPTE-322M + Identifiers for mappings using the MXF-GC IEC DV compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020401
              + LEAF + MXF-GC Frame-wrapped IEC-DV 625x50I 25Mbps SMPTE-322M + Identifier for MXF Frame-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDV625x50I25MbpsSMPTE322M +
                urn:smpte:ul:060e2b34.04010101.0d010301.02020402
              + LEAF + MXF-GC Clip-wrapped IEC-DV 625x50I 25Mbps SMPTE-322M + Identifier for MXF Clip-wrapped IEC-DV compressed data of a 625x50I source at 25Mbps + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCIECDVUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f00
              + NODE + MXF-GC IEC DV UndefinedSource + Identifiers for mappings using the MXF-GC IEC DV compression of an undefined source + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedIECDVUndefinedSource25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f01
              + LEAF + MXF-GC Frame-wrapped IEC-DV UndefinedSource 25Mbps + Identifier for MXF Frame-wrapped IEC-DV compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedIECDVUndefinedSource25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02023f02
              + LEAF + MXF-GC Clip-wrapped IEC-DV UndefinedSource 25Mbps + Identifier for MXF Clip-wrapped IEC-DV compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024000
              + NODE + MXF-GC DV-based 525x59.94I 25Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 525x59.94I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024001
              + LEAF + MXF-GC Frame-wrapped DV-based 525x59.94I 25Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased525x5994I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024002
              + LEAF + MXF-GC Clip-wrapped DV-based 525x59.94I 25Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024100
              + NODE + MXF-GC DV-based 625x50I 25Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 625x50I source at 25Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024101
              + LEAF + MXF-GC Frame-wrapped DV-based 625x50I 25Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased625x50I25Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02024102
              + LEAF + MXF-GC Clip-wrapped DV-based 625x50I 25Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025000
              + NODE + MXF-GC DV-based 525x59.94I 50Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 525x59.94I source at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025001
              + LEAF + MXF-GC Frame-wrapped DV-based 525x59.94I 50Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased525x5994I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025002
              + LEAF + MXF-GC Clip-wrapped DV-based 525x59.94I 50Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 525x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025100
              + NODE + MXF-GC DV-based 625x50I 50Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 625x50I source at 50Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025101
              + LEAF + MXF-GC Frame-wrapped DV-based 625x50I 50Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased625x50I50Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02025102
              + LEAF + MXF-GC Clip-wrapped DV-based 625x50I 50Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 625x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026000
              + NODE + MXF-GC DV-based 1080x59.94I 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 1080x59.94I source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026001
              + LEAF + MXF-GC Frame-wrapped DV-based 1080x59.94I 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 1080x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased1080x5994I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026002
              + LEAF + MXF-GC Clip-wrapped DV-based 1080x59.94I 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 1080x59.94I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026100
              + NODE + MXF-GC DV-based 1080x50I 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 1080x50I source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026101
              + LEAF + MXF-GC Frame-wrapped DV-based 1080x50I 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 1080x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased1080x50I100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026102
              + LEAF + MXF-GC Clip-wrapped DV-based 1080x50I 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 1080x50I + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026200
              + NODE + MXF-GC DV-based 720x59.94P 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 720x59.94P source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026201
              + LEAF + MXF-GC Frame-wrapped DV-based 720x59.94P 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 720x59.94P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased720x5994P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026202
              + LEAF + MXF-GC Clip-wrapped DV-based 720x59.94P 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 720x59.94P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026300
              + NODE + MXF-GC DV-based 720x50P 100Mbps + Identifiers for mappings using the MXF-GC DV-based compression of a 720x50P source at 100Mbps + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026301
              + LEAF + MXF-GC Frame-wrapped DV-based 720x50P 100Mbps + Identifier for MXF MXF-GC Frame-wrapped compressed data of a DV-based source at 720x50P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBased720x50P100Mbps +
                urn:smpte:ul:060e2b34.04010101.0d010301.02026302
              + LEAF + MXF-GC Clip-wrapped DV-based 720x50P 100Mbps + Identifier for MXF MXF-GC Clip-wrapped compressed data of a DV-based source at 720x50P + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f00
              + NODE + MXF-GC DV-based UndefinedSource + Identifiers for mappings using the MXF-GC DV-based compression of an undefined source + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f01
              + LEAF + MXF-GC Frame-wrapped DV-based UndefinedSource + Identifier for MXF MXF-GC Frame-wrapped compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedDVBasedUndefinedSource +
                urn:smpte:ul:060e2b34.04010101.0d010301.02027f02
              + LEAF + MXF-GC Clip-wrapped DV-based UndefinedSource + Identifier for MXF MXF-GC Clip-wrapped compressed data of an undefined source + SMPTE ST 383 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED11Mappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030000
              + NODE + MXF-GC SMPTE D-11 Mappings + Identifiers for MXF mappings of SMPTE 367M (Type D11) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTED111080x2398PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030100
              + NODE + MXF-GC SMPTE D-11 1080x23.98PsF + Identifiers for MXF mapping of SMPTE D-11 for 1080x23.98PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030101
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030102
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2398PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203017f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x23.98PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x23.98PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x2398PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030200
              + NODE + MXF-GC SMPTE Type-D11 1080x23.98PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x23.98PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030201
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030202
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x24PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203027f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x24PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x24PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x25PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030300
              + NODE + MXF-GC SMPTE Type-D11 1080x25PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x25PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030301
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030302
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the extended template + SMPTEST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x25PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203037f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x25PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x25PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x2997PsF +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030400
              + NODE + MXF-GC SMPTE Type-D11 1080x29.97PsF + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x29.97PsF + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030401
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030402
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x2997PsFPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203047f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x29.97PsF Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x29.97PsF using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x50I +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030500
              + NODE + MXF-GC SMPTE Type-D11 1080x50I + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x50I + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030501
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the defined template + SMPTEST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030502
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x50IPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203057f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x50I Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x50I using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCSMPTETypeD111080x5994I +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030600
              + NODE + MXF-GC SMPTE Type-D11 1080x59.94I + Identifiers for MXF mapping of SMPTE Type-D11 for 1080x59.94I + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IDefinedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030601
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Defined Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the defined template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IExtendedTemplate +
                urn:smpte:ul:060e2b34.04010101.0d010301.02030602
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Extended Template + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the extended template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedSMPTED111080x5994IPictureOnly +
                urn:smpte:ul:060e2b34.04010101.0d010301.0203067f
              + LEAF + MXF-GC Frame-wrapped SMPTE D-11 1080x59.94I Picture Only + Identifier for MXF-GC Frame-wrapped SMPTE of D-11 1080x59.94I using the picture only template + SMPTE ST 387 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGES +
                urn:smpte:ul:060e2b34.04010102.0d010301.02040000
              + NODE + MXF-GC MPEG ES + Identifiers for MXF Mappings of MPEG Elementary Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c00
              + NODE + MXF-GC MPEG ES ProgStreamMap SID + Identifiers for MXF mappings of MPEG ES with a ProgStreamMap SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ProgStreamMap SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d00
              + NODE + MXF-GC MPEG ES PrivateStream-1 SID + Identifiers for MXF mappings of MPEG ES with a PrivateStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PrivateStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PrivateStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e00
              + NODE + MXF-GC MPEG ES PaddingStream SID + Identifiers for MXF mappings of MPEG ES with a PaddingStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PaddingStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f00
              + NODE + MXF-GC MPEG ES PrivateStream-2 SID + Identifiers for MXF mappings of MPEG ES with a PrivateStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02043f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES PrivateStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with PrivateStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044000
              + NODE + MXF-GC MPEG ES AudioStream-0 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204407f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-0 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044100
              + NODE + MXF-GC MPEG ES AudioStream-1 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204417f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044200
              + NODE + MXF-GC MPEG ES AudioStream-2 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204427f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044300
              + NODE + MXF-GC MPEG ES AudioStream-3 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204437f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-3 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044400
              + NODE + MXF-GC MPEG ES AudioStream-4 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204447f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-4 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044500
              + NODE + MXF-GC MPEG ES AudioStream-5 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204457f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-5 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044600
              + NODE + MXF-GC MPEG ES AudioStream-6 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204467f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-6 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044700
              + NODE + MXF-GC MPEG ES AudioStream-7 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204477f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-7 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044800
              + NODE + MXF-GC MPEG ES AudioStream-8 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044807
              + LEAF + MXF-GC Custom ClosedGOP-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC Custom ClosedGOP-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204487f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-8 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044900
              + NODE + MXF-GC MPEG ES AudioStream-9 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204497f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-9 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a00
              + NODE + MXF-GC MPEG ES AudioStream-10 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-10 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b00
              + NODE + MXF-GC MPEG ES AudioStream-11 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-11 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c00
              + NODE + MXF-GC MPEG ES AudioStream-12 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-12 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d00
              + NODE + MXF-GC MPEG ES AudioStream-13 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-13 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e00
              + NODE + MXF-GC MPEG ES AudioStream-14 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-14 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f00
              + NODE + MXF-GC MPEG ES AudioStream-15 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f03
              + LEAF + MXF-GC Custom Stripe-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC Custom Stripe-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02044f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-15 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045000
              + NODE + MXF-GC MPEG ES AudioStream-16 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-16 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204507f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-16 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045100
              + NODE + MXF-GC MPEG ES AudioStream-17 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-17 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204517f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-17 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045200
              + NODE + MXF-GC MPEG ES AudioStream-18 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-18 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204527f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-18 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045300
              + NODE + MXF-GC MPEG ES AudioStream-19 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-19 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204537f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-19 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045400
              + NODE + MXF-GC MPEG ES AudioStream-20 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-20 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204547f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-20 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045500
              + NODE + MXF-GC MPEG ES AudioStream-21 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-21 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204557f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-21 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045600
              + NODE + MXF-GC MPEG ES AudioStream-22 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-22 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204567f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-22 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045700
              + NODE + MXF-GC MPEG ES AudioStream-23 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-23 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204577f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-23 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045800
              + NODE + MXF-GC MPEG ES AudioStream-24 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-24 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204587f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-24 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045900
              + NODE + MXF-GC MPEG ES AudioStream-25 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-25 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204597f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-25 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a00
              + NODE + MXF-GC MPEG ES AudioStream-26 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-26 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-26 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b00
              + NODE + MXF-GC MPEG ES AudioStream-27 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-27 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-27 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c00
              + NODE + MXF-GC MPEG ES AudioStream-28 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-28 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-28 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d00
              + NODE + MXF-GC MPEG ES AudioStream-29 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-29 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-29 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e00
              + NODE + MXF-GC MPEG ES AudioStream-30 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-30 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-30 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f00
              + NODE + MXF-GC MPEG ES AudioStream-31 SID + Identifiers for MXF mappings of MPEG ES with a AudioStream-31 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02045f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AudioStream-31 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046000
              + NODE + MXF-GC MPEG ES VideoStream-0 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204607f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-0 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046100
              + NODE + MXF-GC MPEG ES VideoStream-1 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204617f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-1 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046200
              + NODE + MXF-GC MPEG ES VideoStream-2 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204627f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-2 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046300
              + NODE + MXF-GC MPEG ES VideoStream-3 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204637f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-3 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046400
              + NODE + MXF-GC MPEG ES VideoStream-4 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204647f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-4 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046500
              + NODE + MXF-GC MPEG ES VideoStream-5 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204657f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-5 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046600
              + NODE + MXF-GC MPEG ES VideoStream-6 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204667f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-6 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046700
              + NODE + MXF-GC MPEG ES VideoStream-7 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204677f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-7 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046800
              + NODE + MXF-GC MPEG ES VideoStream-8 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204687f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-8 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046900
              + NODE + MXF-GC MPEG ES VideoStream-9 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204697f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-9 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a00
              + NODE + MXF-GC MPEG ES VideoStream-10 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-10 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b00
              + NODE + MXF-GC MPEG ES VideoStream-11 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-11 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c00
              + NODE + MXF-GC MPEG ES VideoStream-12 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-12 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d00
              + NODE + MXF-GC MPEG ES VideoStream-13 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-13 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e00
              + NODE + MXF-GC MPEG ES VideoStream-14 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-14 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f00
              + NODE + MXF-GC MPEG ES VideoStream-15 SID + Identifiers for MXF mappings of MPEG ES with a VideoStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02046f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES VideoStream-15 SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047000
              + NODE + MXF-GC MPEG ES ECMStream SID + Identifiers for MXF mappings of MPEG ES with a ECMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047001
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047002
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047006
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204707f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ECMStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047100
              + NODE + MXF-GC MPEG ES EMMStream SID + Identifiers for MXF mappings of MPEG ES with a EMMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047101
              + LEAF + MXF-GC Frame-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047102
              + LEAF + MXF-GC Clip-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047106
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204717f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES EMMStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047200
              + NODE + MXF-GC MPEG ES DSMCCStream SID + Identifiers for MXF mappings of MPEG ES with a DSMCCStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047201
              + LEAF + MXF-GC Frame-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047202
              + LEAF + MXF-GC Clip-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047206
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204727f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES DSMCCStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047300
              + NODE + MXF-GC MPEG ES 13522Stream SID + Identifiers for MXF mappings of MPEG ES with a 13522Stream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047301
              + LEAF + MXF-GC Frame-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047302
              + LEAF + MXF-GC Clip-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047306
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204737f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES 13522Stream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047400
              + NODE + MXF-GC MPEG ES ITURec222-A SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-A SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047401
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047402
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047406
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204747f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-A SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047500
              + NODE + MXF-GC MPEG ES ITURec222-B SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-B SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047501
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047502
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047506
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204757f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-B SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047600
              + NODE + MXF-GC MPEG ES ITURec222-C SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-C SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047601
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047602
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047606
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204767f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-C SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047700
              + NODE + MXF-GC MPEG ES ITURec222-D SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-D SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047701
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047702
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047706
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204777f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-D SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047800
              + NODE + MXF-GC MPEG ES ITURec222-E SID + Identifiers for MXF mappings of MPEG ES with a ITURec222-E SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047801
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047802
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047806
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204787f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ITURec222-E SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047900
              + NODE + MXF-GC MPEG ES AncStream SID + Identifiers for MXF mappings of MPEG ES with a AncStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047901
              + LEAF + MXF-GC Frame-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047902
              + LEAF + MXF-GC Clip-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047906
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0204797f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES AncStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a00
              + NODE + MXF-GC MPEG ES SLPackStream SID + Identifiers for MXF mappings of MPEG ES with a SLPackStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES SLPackStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b00
              + NODE + MXF-GC MPEG ES FlexMuxStream SID + Identifiers for MXF mappings of MPEG ES with a FlexMuxStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES FlexMuxStream SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f00
              + NODE + MXF-GC MPEG ES ProgStreamDir SID + Identifiers for MXF mappings of MPEG ES with a ProgStreamDir SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f01
              + LEAF + MXF-GC Frame-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC Frame-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f02
              + LEAF + MXF-GC Clip-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC Clip-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomStripe-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomPES-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomFixedAudioSize-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f06
              + LEAF + MXF-GC CustomSplice-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomSplice-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomClosedGOP-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomSlave-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02047f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-ES ProgStreamDir SID + Identifier for MXF-GC CustomUnconstrained-wrapped MPEG-ES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressedPictures +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050000
              + NODE + MXF-GC Uncompressed Pictures + Identifiers for MXF GC Uncompressed Picture Mappings + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed525625SD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050100
              + NODE + MXF-GC Uncompressed 525+625 SD + Identifiers for MXF-GC Uncompressed Standard Definition video + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050101
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050102
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050103
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 720 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050105
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050106
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I720422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050107
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 720 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 720 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050109
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010b
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010d
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010e
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205010f
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050111
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050112
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050113
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94P 960 420 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050115
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050116
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50P960420 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050117
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50P 960 420 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50P video using 960 pixels and 420 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050119
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011b
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94P 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011d
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011e
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50P960422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205011f
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50P 960 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50P video using 960 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050121
              + LEAF + MXF-GC Frame-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050122
              + LEAF + MXF-GC Clip-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed525x5994I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050123
              + LEAF + MXF-GC Line-wrapped Uncompressed 525x59.94I 960 4444 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 525x59.94I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050125
              + LEAF + MXF-GC Frame-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050126
              + LEAF + MXF-GC Clip-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed625x50I9604444 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050127
              + LEAF + MXF-GC Line-wrapped Uncompressed 625x50I 960 4444 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 625x50I video using 960 pixels and 4444 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed1080HD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050200
              + NODE + MXF-GC Uncompressed 1080 HD + Identifiers for MXF-GC Uncompressed High Definition video using 1080 active lines + SMPTE ST 274 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050201
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050202
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2398P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050203
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x23.98P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x23.98P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050205
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050206
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2398PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050207
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x23.98PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x23.98PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050211
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050212
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x24P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050213
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x24P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x24P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050215
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050216
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x24PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050217
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x24PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x24PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050221
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050222
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x25P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050223
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x25P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x25P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050225
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050226
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x25PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050227
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x25PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x25PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050229
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205022a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x50I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205022b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x50I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x50I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050231
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050232
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2997P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050233
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x29.97P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x29.97P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050235
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050236
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x2997PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050237
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x29.97PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x29.97PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050239
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205023a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x5994I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205023b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x59.94I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x59.94I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050241
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050242
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x30P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050243
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x30P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x30P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050245
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050246
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x30PsF1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050247
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x30PsF 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x30PsF video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050249
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205024a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x60I1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205024b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x60I 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x60I video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050251
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050252
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x50P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050253
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x50P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x50P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050259
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205025a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x5994P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205025b
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x59.94P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x59.94P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050261
              + LEAF + MXF-GC Frame-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050262
              + LEAF + MXF-GC Clip-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed1080x60P1920422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050263
              + LEAF + MXF-GC Line-wrapped Uncompressed 1080x60P 1920 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 1080x60P video using 1920 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressed720HD +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050300
              + NODE + MXF-GC Uncompressed 720 HD + Identifiers for MXF-GC Uncompressed High Definition video using 720 active lines + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050301
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050302
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x2398P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050303
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x23.98P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x23.98P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050305
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050306
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x24P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050307
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x24P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x24P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050309
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205030a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x25P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205030b
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x25P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x25P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050311
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050312
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x2997P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050313
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x29.97P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x29.97P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050315
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050316
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x30P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050317
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x30P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x30P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050319
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205031a
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x50P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.0205031b
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x50P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x50P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050321
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050322
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x5994P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050323
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x59.94P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x59.94P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050325
              + LEAF + MXF-GC Frame-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Frame-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050326
              + LEAF + MXF-GC Clip-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Clip-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressed720x60P1280422 +
                urn:smpte:ul:060e2b34.04010101.0d010301.02050327
              + LEAF + MXF-GC Line-wrapped Uncompressed 720x60P 1280 422 + Identifier for a MXF-GC Line-wrapped source of Uncompressed 720x60P video using 1280 pixels and 422 sampling + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCUncompressedNonStandardFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f00
              + NODE + MXF-GC Uncompressed Non-standard Format + Identifiers for non-standardised uncompressed video formats. Parameters to be determined from the appropriate Essence Descriptor + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f01
              + LEAF + MXF-GC Frame-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Frame-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f02
              + LEAF + MXF-GC Clip-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Clip-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCLineWrappedUncompressedNonStandardVideoLineFormat +
                urn:smpte:ul:060e2b34.04010101.0d010301.02057f03
              + LEAF + MXF-GC Line-wrapped Uncompressed Non-standard video line format + Identifier for a MXF-GC Line-wrapped, Uncompressed, Non-standard video line format + SMPTE ST 384 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAESBWFAudio +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060000
              + NODE + MXF-GC AES-BWF Audio + Identifiers for MXF-GC Mappings of AES3 and Broadcast Wave audio data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060100
              + LEAF + MXF-GC Frame-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Frame-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060200
              + LEAF + MXF-GC Clip-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Clip-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060300
              + LEAF + MXF-GC Frame-wrapped AES3 audio data + Identifier for MXF-GC, Frame-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010101.0d010301.02060400
              + LEAF + MXF-GC Clip-wrapped AES3 audio data + Identifier for MXF-GC, Clip-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.04010105.0d010301.02060800
              + LEAF + MXF-GC Custom-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Custom-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.04010105.0d010301.02060900
              + LEAF + MXF-GC Custom-wrapped AES3 audio data + Identifier for MXF-GC, Custom-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCConstantDurationCustomWrappedBroadcastWaveAudioData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02060a00
              + LEAF + MXF-GC Constant duration Custom-wrapped Broadcast Wave audio data + Identifier for MXF-GC, Constant duration Custom-wrapped Broadcast Wave audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCConstantDurationCustomWrappedAES3AudioData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02060b00
              + LEAF + MXF-GC Constant duration Custom-wrapped AES3 audio data + Identifier for MXF-GC, Constant duration Custom-wrapped AES3 audio data + SMPTE ST 382 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPES +
                urn:smpte:ul:060e2b34.04010102.0d010301.02070000
              + NODE + MXF-GC MPEG PES + Identifiers for Mappings using MPEG Packetised Elementary Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESProgStreamMap +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c00
              + NODE + MXF-GC MPEG PES ProgStreamMap + Identifiers for MXF mappings of MPEG PES with a ProgStreamMap SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c06
              + LEAF + MXF-GC CustomSplice MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ProgStreamMap SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d00
              + NODE + MXF-GC MPEG PES PrivateStream1 SID + Identifiers for MXF mappings of MPEG PES with a PrivateStream1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d06
              + LEAF + MXF-GC CustomSplice MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PrivateStream1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e00
              + NODE + MXF-GC MPEG PES PaddingStream SID + Identifiers for MXF mappings of MPEG PES with a PaddingStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e06
              + LEAF + MXF-GC CustomSplice MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PaddingStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f00
              + NODE + MXF-GC MPEG PES PrivateStream2 SID + Identifiers for MXF mappings of MPEG PES with a PrivateStream2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f06
              + LEAF + MXF-GC CustomSplice MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02073f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES PrivateStream2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074000
              + NODE + MXF-GC MPEG PES AudioStream-0 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074006
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207407f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-0 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074100
              + NODE + MXF-GC MPEG PES AudioStream-1 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074106
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207417f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074200
              + NODE + MXF-GC MPEG PES AudioStream-2 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074206
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207427f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074300
              + NODE + MXF-GC MPEG PES AudioStream-3 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074306
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207437f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-3 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074400
              + NODE + MXF-GC MPEG PES AudioStream-4 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074406
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207447f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-4 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074500
              + NODE + MXF-GC MPEG PES AudioStream-5 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074506
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207457f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-5 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074600
              + NODE + MXF-GC MPEG PES AudioStream-6 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074606
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207467f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-6 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074700
              + NODE + MXF-GC MPEG PES AudioStream-7 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074706
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207477f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-7 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074800
              + NODE + MXF-GC MPEG PES AudioStream-8 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074806
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207487f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-8 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074900
              + NODE + MXF-GC MPEG PES AudioStream-9 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074906
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207497f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-9 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a00
              + NODE + MXF-GC MPEG PES AudioStream-10 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-10 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b00
              + NODE + MXF-GC MPEG PES AudioStream-11 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-11 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c00
              + NODE + MXF-GC MPEG PES AudioStream-12 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-12 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d00
              + NODE + MXF-GC MPEG PES AudioStream-13 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-13 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e00
              + NODE + MXF-GC MPEG PES AudioStream-14 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-14 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f00
              + NODE + MXF-GC MPEG PES AudioStream-15 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02074f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-15 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075000
              + NODE + MXF-GC MPEG PES AudioStream-16 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-16 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075006
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207507f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-16 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075100
              + NODE + MXF-GC MPEG PES AudioStream-17 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-17 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075106
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207517f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-17 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075200
              + NODE + MXF-GC MPEG PES AudioStream-18 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-18 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075206
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207527f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-18 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075300
              + NODE + MXF-GC MPEG PES AudioStream-19 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-19 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075306
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207537f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-19 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075400
              + NODE + MXF-GC MPEG PES AudioStream-20 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-20 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075406
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207547f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-20 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075500
              + NODE + MXF-GC MPEG PES AudioStream-21 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-21 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075506
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207557f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-21 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075600
              + NODE + MXF-GC MPEG PES AudioStream-22 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-22 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075606
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207567f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-22 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075700
              + NODE + MXF-GC MPEG PES AudioStream-23 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-23 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075706
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207577f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-23 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075800
              + NODE + MXF-GC MPEG PES AudioStream-24 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-24 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075806
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207587f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-24 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075900
              + NODE + MXF-GC MPEG PES AudioStream-25 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-25 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075906
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207597f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-25 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a00
              + NODE + MXF-GC MPEG PES AudioStream-26 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-26 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-26 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b00
              + NODE + MXF-GC MPEG PES AudioStream-27 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-27 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-27 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c00
              + NODE + MXF-GC MPEG PES AudioStream-28 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-28 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-28 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d00
              + NODE + MXF-GC MPEG PES AudioStream-29 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-29 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-29 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e00
              + NODE + MXF-GC MPEG PES AudioStream-30 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-30 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-30 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f00
              + NODE + MXF-GC MPEG PES AudioStream-31 SID + Identifiers for MXF mappings of MPEG PES with a AudioStream-31 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f06
              + LEAF + MXF-GC CustomSplice MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02075f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AudioStream-31 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076000
              + NODE + MXF-GC MPEG PES VideoStream-0 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-0 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076006
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207607f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-0 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076100
              + NODE + MXF-GC MPEG PES VideoStream-1 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-1 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076106
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207617f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-1 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076200
              + NODE + MXF-GC MPEG PES VideoStream-2 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-2 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076206
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207627f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-2 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076300
              + NODE + MXF-GC MPEG PES VideoStream-3 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-3 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076306
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207637f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-3 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076400
              + NODE + MXF-GC MPEG PES VideoStream-4 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-4 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076406
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207647f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-4 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076500
              + NODE + MXF-GC MPEG PES VideoStream-5 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-5 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076506
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207657f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-5 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076600
              + NODE + MXF-GC MPEG PES VideoStream-6 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-6 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076606
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207667f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-6 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076700
              + NODE + MXF-GC MPEG PES VideoStream-7 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-7 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076706
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207677f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-7 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076800
              + NODE + MXF-GC MPEG PES VideoStream-8 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-8 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076806
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207687f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-8 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076900
              + NODE + MXF-GC MPEG PES VideoStream-9 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-9 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076906
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207697f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-9 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a00
              + NODE + MXF-GC MPEG PES VideoStream-10 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-10 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-10 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b00
              + NODE + MXF-GC MPEG PES VideoStream-11 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-11 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-11 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c00
              + NODE + MXF-GC MPEG PES VideoStream-12 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-12 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076c7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-12 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d00
              + NODE + MXF-GC MPEG PES VideoStream-13 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-13 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076d7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-13 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e00
              + NODE + MXF-GC MPEG PES VideoStream-14 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-14 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076e7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-14 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f00
              + NODE + MXF-GC MPEG PES VideoStream-15 SID + Identifiers for MXF mappings of MPEG PES with a VideoStream-15 SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f06
              + LEAF + MXF-GC CustomSplice MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomSplice MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02076f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES VideoStream-15 SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077000
              + NODE + MXF-GC MPEG PES ECMStream SID + Identifiers for MXF mappings of MPEG PES with a ECMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077001
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077002
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077003
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077004
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077005
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077006
              + LEAF + MXF-GC CustomSplice MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077007
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077008
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207707f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ECMStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077100
              + NODE + MXF-GC MPEG PES EMMStream SID + Identifiers for MXF mappings of MPEG PES with a EMMStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077101
              + LEAF + MXF-GC Frame-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077102
              + LEAF + MXF-GC Clip-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077103
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077104
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077105
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077106
              + LEAF + MXF-GC CustomSplice MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077107
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077108
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207717f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES EMMStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077200
              + NODE + MXF-GC MPEG PES DSMCCStream SID + Identifiers for MXF mappings of MPEG PES with a DSMCCStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077201
              + LEAF + MXF-GC Frame-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077202
              + LEAF + MXF-GC Clip-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077203
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077204
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077205
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077206
              + LEAF + MXF-GC CustomSplice MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077207
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077208
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207727f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES DSMCCStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077300
              + NODE + MXF-GC MPEG PES 13522Stream SID + Identifiers for MXF mappings of MPEG PES with a 13522Stream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077301
              + LEAF + MXF-GC Frame-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077302
              + LEAF + MXF-GC Clip-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077303
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077304
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077305
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077306
              + LEAF + MXF-GC CustomSplice MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077307
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077308
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPES13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207737f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES 13522Stream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077400
              + NODE + MXF-GC MPEG PES ITURec222-A SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-A SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077401
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077402
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077403
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077404
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077405
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077406
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077407
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077408
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207747f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-A SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077500
              + NODE + MXF-GC MPEG PES ITURec222-B SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-B SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077501
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077502
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077503
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077504
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077505
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077506
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077507
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077508
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207757f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-B SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077600
              + NODE + MXF-GC MPEG PES ITURec222-C SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-C SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077601
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077602
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077603
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077604
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077605
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077606
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077607
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077608
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207767f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-C SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077700
              + NODE + MXF-GC MPEG PES ITURec222-D SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-D SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077701
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077702
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077703
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077704
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077705
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077706
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077707
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077708
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207777f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-D SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077800
              + NODE + MXF-GC MPEG PES ITURec222-E SID + Identifiers for MXF mappings of MPEG PES with a ITURec222-E SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077801
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077802
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077803
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077804
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077805
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077806
              + LEAF + MXF-GC CustomSplice MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077807
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077808
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207787f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ITURec222-E SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077900
              + NODE + MXF-GC MPEG PES AncStream SID + Identifiers for MXF mappings of MPEG PES with a AncStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077901
              + LEAF + MXF-GC Frame-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077902
              + LEAF + MXF-GC Clip-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077903
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077904
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077905
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077906
              + LEAF + MXF-GC CustomSplice MPEG-PES AncStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077907
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077908
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.0207797f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES AncStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a00
              + NODE + MXF-GC MPEG PES SLPackStream SID + Identifiers for MXF mappings of MPEG PES with a SLPackStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a06
              + LEAF + MXF-GC CustomSplice MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077a7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES SLPackStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b00
              + NODE + MXF-GC MPEG PES FlexMuxStream SID + Identifiers for MXF mappings of MPEG PES with a FlexMuxStream SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b06
              + LEAF + MXF-GC CustomSplice MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomSplice MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077b7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES FlexMuxStream SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f00
              + NODE + MXF-GC MPEG PES ProgStreamDir SID + Identifiers for MXF mappings of MPEG PES with a ProgStreamDir SID value as defined in ISO/IEC 13818-1 (MPEG-2 Systems) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f01
              + LEAF + MXF-GC Frame-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, Frame-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomStripeWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f03
              + LEAF + MXF-GC CustomStripe-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomStripe-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomPESWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f04
              + LEAF + MXF-GC CustomPES-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomPES-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomFixedAudioSizeWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f05
              + LEAF + MXF-GC CustomFixedAudioSize-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomFixedAudioSize-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSpliceMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f06
              + LEAF + MXF-GC CustomSplice MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomSplice MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomClosedGOPWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f07
              + LEAF + MXF-GC CustomClosedGOP-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomClosedGOP-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomSlaveWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f08
              + LEAF + MXF-GC CustomSlave-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomSlave-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomUnconstrainedWrappedMPEGPESProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02077f7f
              + LEAF + MXF-GC CustomUnconstrained-wrapped MPEG-PES ProgStreamDir SID + Identifier for MXF-GC, CustomUnconstrained-wrapped MPEG-PES with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGPS +
                urn:smpte:ul:060e2b34.04010102.0d010301.02080000
              + NODE + MXF-GC MPEG PS + Identifiers for MXF-GC Mappings using MPEG Programme Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02083f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02084f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02085f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086c02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086d02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086e02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02086f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087002
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087102
              + LEAF + MXF-GC Clip-wrapped MPEG-PS EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087202
              + LEAF + MXF-GC Clip-wrapped MPEG-PS DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPS13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087302
              + LEAF + MXF-GC Clip-wrapped MPEG-PS 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087402
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087502
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087602
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087702
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087802
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087902
              + LEAF + MXF-GC Clip-wrapped MPEG-PS AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087a02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087b02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGPSProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02087f02
              + LEAF + MXF-GC Clip-wrapped MPEG-PS ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-PS with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCMPEGTS +
                urn:smpte:ul:060e2b34.04010102.0d010301.02090000
              + NODE + MXF-GC MPEG TS + Identifiers for MXF-GC Mappings using MPEG Transport Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSProgStreamMapSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ProgStreamMap SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ProgStreamMap SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPrivateStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PrivateStream1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PrivateStream1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPaddingStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PaddingStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PaddingStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSPrivateStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02093f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS PrivateStream2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with PrivateStream2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02094f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream16SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-16 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-16 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream17SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-17 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-17 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream18SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-18 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-18 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream19SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-19 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-19 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream20SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-20 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-20 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream21SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-21 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-21 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream22SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-22 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-22 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream23SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-23 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-23 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream24SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-24 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-24 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream25SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-25 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-25 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream26SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-26 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-26 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream27SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-27 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-27 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream28SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-28 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-28 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream29SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-29 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-29 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream30SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-30 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-30 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAudioStream31SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02095f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AudioStream-31 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AudioStream-31 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream0SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-0 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-0 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream1SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-1 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-1 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream2SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-2 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-2 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream3SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-3 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-3 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream4SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-4 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-4 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream5SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-5 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-5 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream6SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-6 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-6 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream7SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-7 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-7 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream8SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-8 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-8 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream9SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-9 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-9 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream10SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-10 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-10 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream11SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-11 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-11 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream12SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096c02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-12 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-12 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream13SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096d02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-13 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-13 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream14SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096e02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-14 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-14 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSVideoStream15SID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02096f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS VideoStream-15 SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with VideoStream-15 SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSECMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097002
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ECMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ECMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSEMMStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097102
              + LEAF + MXF-GC Clip-wrapped MPEG-TS EMMStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with EMMStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSDSMCCStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097202
              + LEAF + MXF-GC Clip-wrapped MPEG-TS DSMCCStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with DSMCCStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTS13522StreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097302
              + LEAF + MXF-GC Clip-wrapped MPEG-TS 13522Stream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with 13522Stream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222ASID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097402
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-A SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-A SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222BSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097502
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-B SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-B SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222CSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097602
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-C SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-C SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222DSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097702
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-D SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-D SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSITURec222ESID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097802
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ITURec222-E SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ITURec222-E SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSAncStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097902
              + LEAF + MXF-GC Clip-wrapped MPEG-TS AncStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with AncStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSSLPackStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097a02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS SLPackStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with SLPackStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSFlexMuxStreamSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097b02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS FlexMuxStream SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with FlexMuxStream SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedMPEGTSProgStreamDirSID +
                urn:smpte:ul:060e2b34.04010102.0d010301.02097f02
              + LEAF + MXF-GC Clip-wrapped MPEG-TS ProgStreamDir SID + Identifier for MXF-GC, Clip-wrapped MPEG-TS with ProgStreamDir SID value + SMPTE ST 381 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCALawAudioMappings +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0000
              + NODE + MXF-GC A-law Audio Mappings + Identifiers for MXF-GC Mappings using A-law Compressed Audio + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0100
              + LEAF + MXF-GC Frame-wrapped A-law Audio + Identifier for MXF-GC, Frame-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0200
              + LEAF + MXF-GC Clip-wrapped A-law Audio + Identifier for MXF-GC, Clip-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCustomWrappedALawAudio +
                urn:smpte:ul:060e2b34.04010103.0d010301.020a0300
              + LEAF + MXF-GC Custom-wrapped A-law Audio + Identifier for MXF-GC, Custom-wrapped A-law compressed audio + SMPTE ST 388 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCEncryptedDataMappings +
                urn:smpte:ul:060e2b34.04010107.0d010301.020b0000
              + NODE + MXF-GC Encrypted Data Mappings + Identifiers for MXF Encrypted Generic Container + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedEncryptedData +
                urn:smpte:ul:060e2b34.04010107.0d010301.020b0100
              + LEAF + MXF-GC Frame-wrapped Encrypted Data + Identifier for a MXF-GC, Frame wrapped generic container encrypted according to the DC28 specification + SMPTE ST 423 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedEncryptedData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020b0200
              + LEAF + MXF-GC Clip-wrapped Encrypted Data + Identifier for a MXF-GC, Clip-wrapped generic container encrypted according to SMPTE ST 429-6 + SMPTE ST 429-6 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCJPEG2000PictureMappings +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0000
              + NODE + MXF-GC JPEG-2000 Picture Mappings + Identifiers for MXF-GC Mappings using JPEG2000 compressed pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFUFrameWrappedUndefinedInterlacePictureElement +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0100
              + LEAF + MXF-GC FU Frame-wrapped Undefined Interlace Picture Element + Identifier for MXF-GC JPEG 2000 frame wrapped pictures (each frame comprising a single JPEG 2000 codestream) + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCCnClipWrappedPictureElement +
                urn:smpte:ul:060e2b34.04010107.0d010301.020c0200
              + LEAF + MXF-GC Cn Clip-wrapped Picture Element + Identifier for MXF-GC JPEG 2000 clip wrapped picture sequence (containing a sequence of 1 or more JPEG2000 codestreams) + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCI1InterlacedFrame1FieldKLV +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0300
              + LEAF + MXF-GC I1 Interlaced Frame 1 field/KLV + Identifier for a MXF-GC I1 Interlaced Frame 1 field/KLV JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCI2InterlacedFrame2FieldsKLV +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0400
              + LEAF + MXF-GC I2 Interlaced Frame 2 fields/KLV + Identifier for a MXF-GC I2 Interlaced Frame 2 fields/KLV JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCF1FieldWrappedPictureElement +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0500
              + LEAF + MXF-GC F1 Field-Wrapped Picture Element + Identifier for a MXF-GC F1 Field-Wrapped Picture Element JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCP1FrameWrappedPictureElement +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020c0600
              + LEAF + MXF-GC P1 Frame-Wrapped Picture Element + Identifier for a MXF-GC P1 Frame-Wrapped Picture Element JPEG 2000 mapping + SMPTE ST 422 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericVBIDataMappingUndefinedPayload +
                urn:smpte:ul:060e2b34.04010109.0d010301.020d0000
              + LEAF + MXF-GC Generic VBI Data Mapping Undefined Payload + Identifier for the MXF-GC frame wrapped Generic VBI data mapping with an undefined payload + SMPTE ST 436 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericANCDataMappingUndefinedPayload +
                urn:smpte:ul:060e2b34.04010109.0d010301.020e0000
              + LEAF + MXF-GC Generic ANC Data Mapping Undefined Payload + Identifier for the MXF-GC frame wrapped Generic Anc data mapping. Payload identification is defined within the Anc Packet data structure. + SMPTE ST 436 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f0000
              + NODE + MXF-GC AVC NAL Unit Stream + Identifier for a MXF-GC AVC NAL Unit Stream + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6000
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6001
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6002
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6003
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6005
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6006
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6007
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6008
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6009
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream0SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f607f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-0 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6100
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6101
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6102
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6103
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6105
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6106
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6107
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6108
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6109
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream1SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f617f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-1 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6200
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6201
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6202
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6203
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6205
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6206
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6207
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6208
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6209
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream2SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f627f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-2 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6300
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6301
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6302
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6303
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6305
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6306
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6307
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6308
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6309
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream3SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f637f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-3 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6400
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6401
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6402
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6403
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6405
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6406
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6407
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6408
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6409
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream4SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f647f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-4 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6500
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6501
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6502
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6503
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6505
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6506
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6507
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6508
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6509
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream5SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f657f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-5 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6600
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6601
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6602
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6603
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6605
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6606
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6607
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6608
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6609
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream6SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f667f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-6 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6700
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6701
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6702
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6703
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6705
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6706
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6707
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6708
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6709
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream7SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f677f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-7 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6800
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6801
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6802
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6803
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6805
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6806
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6807
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6808
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6809
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream8SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f687f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-8 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6900
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6901
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6902
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6903
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6905
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6906
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6907
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6908
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6909
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream9SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f697f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-9 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6a09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream10SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6a7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-10 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6b09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream11SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6b7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-11 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6c09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream12SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6c7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-12 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6d09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream13SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6d7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-13 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6e09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream14SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6e7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-14 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f00
              + NODE + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f01
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Frame-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f02
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Clip-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f03
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f05
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f06
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f07
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f08
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.020f6f09
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Field-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCNALUnitStreamWithVideoStream15SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.020f6f7f
              + LEAF + MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC NAL Unit Stream With VideoStream-15 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02100000
              + NODE + MXF-GC AVC Byte Stream + Identifier for a MXF-GC AVC Byte Stream + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106000
              + NODE + MXF-GC AVC Byte Stream With VideoStream-0 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106001
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106002
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106003
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106005
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106006
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106007
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106008
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106009
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream0SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210607f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-0 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-0 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106100
              + NODE + MXF-GC AVC Byte Stream With VideoStream-1 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106101
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106102
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106103
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106105
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106106
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106107
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106108
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106109
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream1SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210617f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-1 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-1 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106200
              + NODE + MXF-GC AVC Byte Stream With VideoStream-2 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106201
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106202
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106203
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106205
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106206
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106207
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106208
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106209
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream2SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210627f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-2 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-2 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106300
              + NODE + MXF-GC AVC Byte Stream With VideoStream-3 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106301
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106302
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106303
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106305
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106306
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106307
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106308
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106309
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream3SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210637f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-3 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-3 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106400
              + NODE + MXF-GC AVC Byte Stream With VideoStream-4 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106401
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106402
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106403
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106405
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106406
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106407
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106408
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106409
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream4SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210647f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-4 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-4 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106500
              + NODE + MXF-GC AVC Byte Stream With VideoStream-5 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106501
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106502
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106503
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106505
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106506
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106507
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106508
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106509
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream5SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210657f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-5 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-5 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106600
              + NODE + MXF-GC AVC Byte Stream With VideoStream-6 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106601
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106602
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106603
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106605
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106606
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106607
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106608
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106609
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream6SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210667f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-6 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-6 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106700
              + NODE + MXF-GC AVC Byte Stream With VideoStream-7 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106701
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106702
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106703
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106705
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106706
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106707
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106708
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106709
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream7SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210677f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-7 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-7 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106800
              + NODE + MXF-GC AVC Byte Stream With VideoStream-8 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106801
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106802
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106803
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106805
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106806
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106807
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106808
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106809
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream8SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210687f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-8 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-8 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106900
              + NODE + MXF-GC AVC Byte Stream With VideoStream-9 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106901
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106902
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106903
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106905
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106906
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106907
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106908
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106909
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream9SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.0210697f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-9 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-9 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-10 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106a09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream10SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106a7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-10 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-10 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-11 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106b09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream11SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106b7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-11 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-11 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-12 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106c09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream12SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106c7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-12 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-12 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-13 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106d09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream13SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106d7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-13 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-13 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-14 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106e09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream14SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106e7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-14 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-14 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SID +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f00
              + NODE + MXF-GC AVC Byte Stream With VideoStream-15 SID + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDFrameWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f01
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Frame-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Frame-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDClipWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f02
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Clip-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Clip-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomStripeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f03
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomStripe-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomStripe-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomFixedAudioSizeWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f05
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomFixedAudioSize-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomSpliceWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f06
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSplice-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSplice-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomClosedGOPWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f07
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomClosedGOP-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomClosedGOP-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomSlaveWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f08
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSlave-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomSlave-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDFieldWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02106f09
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID Field-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID Field-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCAVCByteStreamWithVideoStream15SIDCustomUnconstrainedWrapped +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02106f7f
              + LEAF + MXF-GC AVC Byte Stream With VideoStream-15 SID CustomUnconstrained-wrapped + Identifier for a MXF-GC AVC Byte Stream With VideoStream-15 SID CustomUnconstrained-wrapped + SMPTE ST 381-3 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110000
              + NODE + MXF-GC VC-3 Pictures + Essence Container Identifier for MXF-GC, VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110100
              + LEAF + MXF-GC Frame-wrapped VC-3 Pictures + Essence Container Identifier for MXF-GC, Frame-wrapped VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC3Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02110200
              + LEAF + MXF-GC Clip-wrapped VC-3 Pictures + Essence Container Identifier for MXF-GC, Clip-wrapped VC-3 Pictures + SMPTE ST 2019-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120000
              + NODE + MXF-GC VC-1 Pictures + Essence Container Identifier for MXF-GC, VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120100
              + LEAF + MXF-GC Frame-wrapped VC-1 Pictures + Essence Container Identifier for MXF-GC, Frame-wrapped VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC1Pictures +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02120200
              + LEAF + MXF-GC Clip-wrapped VC-1 Pictures + Essence Container Identifier for MXF-GC, Clip-wrapped VC-1 Pictures + SMPTE ST 2037 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericData +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130000
              + NODE + MXF-GC Generic Data + Essence Identifier Node for MXF-GC Generic Data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericTextStreams +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130100
              + NODE + MXF-GC Generic Text Streams + Essence Identifier Node for MXF-GC Generic Text Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDCinemaTimedTextStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.02130101
              + LEAF + MXF-GC D-Cinema Timed Text Stream + Identifier for a MXF-GC D-Cinema Timed Text Stream + SMPTE ST 429-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericDataStreams +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02130200
              + NODE + MXF-GC Generic Data Streams + Essence Identifier Node for MXF-GC Generic Data Streams + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDCinemaAuxDataEssence +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02130201
              + LEAF + MXF-GC D-Cinema Aux Data Essence + Identifier for a MXF-GC D-Cinema Aux Data Essence + SMPTE ST 429-14 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCTIFFEP +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140000
              + NODE + MXF-GC TIFF/EP + Essence Identifier Node for MXF-GC TIFF/EP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedTIFFEPProfile2Pictures +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140100
              + LEAF + MXF-GC Frame-wrapped TIFF/EP Profile 2 Pictures + Identifier for a MXF-GC Frame-wrapped TIFF/EP Profile 2 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedTIFFEPProfile2Pictures +
                urn:smpte:ul:060e2b34.0401010b.0d010301.02140200
              + LEAF + MXF-GC Clip-wrapped TIFF/EP Profile 2 Pictures + Identifier for a MXF-GC Clip-wrapped TIFF/EP Profile 2 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150000
              + NODE + MXF-GC VC-2 Pictures + Identifiers for MXF-GC mappings of VC-2 Pictures (as defined in SMPTE ST 2042-1) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150100
              + LEAF + MXF-GC Frame-wrapped VC-2 Pictures + Identifier for a MXF-GC Frame-wrapped VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedVC2Pictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02150200
              + LEAF + MXF-GC Clip-wrapped VC-2 Pictures + Identifier for a MXF-GC Clip-wrapped VC-2 Stream (as defined in SMPTE ST 2042-1) + SMPTE ST 2042-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160000
              + NODE + MXF-GC AAC ADIF + Identifies container for MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160100
              + LEAF + MXF-GC AAC ADIF Frame Wrapped + Identifies container for Frame Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160200
              + LEAF + MXF-GC AAC ADIF Clip Wrapped + Identifies container for Clip Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADIF_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02160300
              + LEAF + MXF-GC AAC ADIF Custom Wrapped + Identifies container for Custom Wrapped MPEG-2/4 ADIF + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170000
              + NODE + MXF-GC AAC ADTS + Identifies container for MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170100
              + LEAF + MXF-GC AAC ADTS Frame Wrapped + Identifies container for Frame Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170200
              + LEAF + MXF-GC AAC ADTS Clip Wrapped + Identifies container for Clip Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_ADTS_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02170300
              + LEAF + MXF-GC AAC ADTS Custom Wrapped + Identifies container for Custom Wrapped MPEG-2/4 ADTS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180000
              + NODE + MXF-GC AAC LATM-LOAS + Identifies container for MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Frame_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180100
              + LEAF + MXF-GC AAC LATM-LOAS Frame Wrapped + Identifies container for Frame Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Clip_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180200
              + LEAF + MXF-GC AAC LATM-LOAS Clip Wrapped + Identifies container for Clip Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXF_GC_AAC_LATM_LOAS_Custom_Wrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02180300
              + LEAF + MXF-GC AAC LATM-LOAS Custom Wrapped + Identifies container for Custom Wrapped MPEG-4 LATM/LOAS + SMPTE ST 381-4 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190000
              + NODE + MXF-GC ACES Pictures + Identifiers for MXF-GC mappings of ACES SMPTE ST 2065-4 Pictures + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190100
              + LEAF + MXF-GC Frame-wrapped ACES Pictures + Identifier for MXF-GC, Frame-wrapped ACES SMPTE ST 2065-4 images + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCClipWrappedACESPictures +
                urn:smpte:ul:060e2b34.0401010d.0d010301.02190200
              + LEAF + MXF-GC Clip-wrapped ACES Pictures + Identifier for MXF-GC, Clip-wrapped ACES SMPTE ST 2065-4 images + SMPTE ST 2065-5 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCDMCVTData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021a0000
              + NODE + MXF-GC DMCVT Data + Identifies MXF-GC DMCVT Data + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedDMCVTData +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021a0100
              + LEAF + MXF-GC Frame-Wrapped DMCVT Data + Identifies MXF-GC Frame-Wrapped DMCVT Data + SMPTE ST 2094-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5EssenceContainerLabel +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0000
              + NODE + MXF-GC VC-5 Essence Container Label (SMPTE ST 2073-10) + Image Wrapping Type VC-5 Essence Container Label defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5FrameWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0100
              + LEAF + MXF-GC VC-5 Essence Container Label (Frame-Wrapped) + Indicates a VC-5 frame-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5ClipWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0200
              + LEAF + MXF-GC VC-5 Essence Container Label (Clip-Wrapped) + Indicates a VC-5 clip-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCVC5CustomWrapped +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021b0300
              + LEAF + MXF-GC VC-5 Essence Container Label (Custom-Wrapped) + Indicates a VC-5 custom-wrapped VC-5 bitstream defined in SMPTE ST 2073-10 + SMPTE ST 2073-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCEssenceContainerProResPicture +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021c0000
              + NODE + MXF-GC Essence Container ProRes Picture + Identifier for MXF-GC Essence Container ProRes Picture + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCFrameWrappedEssenceContainerProResPicture +
                urn:smpte:ul:060e2b34.0401010d.0d010301.021c0100
              + LEAF + MXF-GC Frame-Wrapped Essence Container ProRes Picture + Identifier for MXF-GC Frame-Wrapped Essence Container ProRes Picture + SMPTE RDD 44 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericEssenceMappings +
                urn:smpte:ul:060e2b34.04010101.0d010301.027f0000
              + NODE + MXF-GC Generic Essence Mappings + Identifiers for any combination of essence and metadata elements not otherwise covered under the MXF Generic Container node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGCGenericEssenceMultipleMappings +
                urn:smpte:ul:060e2b34.04010103.0d010301.027f0100
              + LEAF + MXF-GC Generic Essence Multiple Mappings + Identifier for MXF-GC multiple wrappings not otherwise covered under the MXF Generic Container node + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamEssenceMappings +
                urn:smpte:ul:060e2b34.0401010a.0d010301.03000000
              + NODE + MXF Generic Stream Essence Mappings + Identifier for MXF Generic Stream Essence Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGSEBUT3264STLByteStream +
                urn:smpte:ul:060e2b34.0401010a.0d010301.03010000
              + LEAF + MXF-GS EBU-t3264 STL Byte Stream + Identifier for MXF-GS EBU-t3264 STL Byte Stream + SMPTE ST 2075 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDescriptiveMetadataSchemes +
                urn:smpte:ul:060e2b34.04010101.0d010400.00000000
              + NODE + MXF Descriptive Metadata Schemes + Identifiers for MXF Descriptive Metadata + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMSStructureVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.00000000
              + NODE + MXF-DMS Structure Version-1 + Identifiers for MXF-DMS Structure Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.01000000
              + NODE + MXF DMS-1 + Identifiers for MXF Descriptive Metadata Scheme 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1 +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010000
              + NODE + MXF DMS-1 Version-1 + Identifiers for MXF DMS-1 version 1 + Deprecated + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1Constrained +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010100
              + LEAF + MXF DMS-1 Version-1 constrained + The scheme is constrained to the defined version + SMPTE ST 380 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version1Extended +
                urn:smpte:ul:060e2b34.04010101.0d010401.01010200
              + LEAF + MXF DMS-1 Version-1 extended + The scheme has private, but backwards compatible, extensions to the defined version + SMPTE ST 380 + true +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1Version2 +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020000
              + NODE + MXF DMS-1 Version-2 + Identifies the MXF DMS-1 version Version-2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + DMS1FrameworkIdentifier +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020100
              + NODE + DMS-1 Framework Identifier + Identifies the DMS-1 Frameworks + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ProductionFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020101
              + LEAF + MXF DMS-1 Production Framework standard + Identifies the MXF DMS-1 Production Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ProductionFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020102
              + LEAF + MXF DMS-1 Production Framework extended + Identifies the MXF DMS-1 Production Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ClipFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020201
              + LEAF + MXF DMS-1 Clip Framework standard + Identifies the MXF DMS-1 Clip Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1ClipFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020202
              + LEAF + MXF DMS-1 Clip Framework extended + Identifies the MXF DMS-1 Clip Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1SceneFrameworkStandard +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020301
              + LEAF + MXF DMS-1 Scene Framework standard + Identifies the MXF DMS-1 Scene Framework constrained to the standard version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFDMS1SceneFrameworkExtended +
                urn:smpte:ul:060e2b34.04010104.0d010401.01020302
              + LEAF + MXF DMS-1 Scene Framework extended + Identifies the MXF DMS-1 Scene Framework constrained to the extended version + SMPTE ST 380 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicDMScheme +
                urn:smpte:ul:060e2b34.04010107.0d010401.02000000
              + NODE + MXF Cryptographic DM Scheme + Identifies the MXF Cryptographic DMS + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicSchemeVersion1 +
                urn:smpte:ul:060e2b34.04010107.0d010401.02010000
              + NODE + MXF Cryptographic Scheme Version-1 + Identifies version 1 of the MXF Cryptographic DMS + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFCryptographicFrameworkLabel +
                urn:smpte:ul:060e2b34.04010107.0d010401.02010100
              + LEAF + MXF Cryptographic Framework Label + Identifies the cryptographic framework for the DC28 MXF cryptographic DM scheme + SMPTE ST 423 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + DMS_AS_03 +
                urn:smpte:ul:060e2b34.04010101.0d010401.03000000
              + NODE + DMS AS-03 + Metadata for AS_03 Delivery Format + AMWA Application Specification AS-03 MXF Program Delivery + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedDMScheme +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04000000
              + NODE + MXF Text-Based DM Scheme + Identifies the MXF Text-Based DM Scheme + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedDMSchemeVersion1 +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04010000
              + NODE + MXF Text-Based DM Scheme Version-1 + Identifies the MXF Text-Based DM Scheme Version-1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFTextBasedFramework +
                urn:smpte:ul:060e2b34.0401010c.0d010401.04010100
              + LEAF + MXF Text-Based Framework + Identifies the MXF Text-Based Framework + SMPTE RP 2057 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEIDRDMScheme +
                urn:smpte:ul:060e2b34.0401010d.0d010401.05000000
              + NODE + MXF EIDR DM Scheme + Identifies the MXF EIDR DM Scheme + SMPTE RP 2089 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFEIDRDMSchemeVersion1 +
                urn:smpte:ul:060e2b34.0401010d.0d010401.05010000
              + LEAF + MXF EIDR DM Scheme Version 1 + Identifies the MXF EIDR DM Scheme Version 1 + SMPTE RP 2089 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamMetadataMappings +
                urn:smpte:ul:060e2b34.0401010a.0d010500.00000000
              + NODE + MXF Generic Stream Metadata Mappings + Identifies MXF Generic Stream Metadata Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFGenericStreamMetadataVersion1Mappings +
                urn:smpte:ul:060e2b34.0401010a.0d010501.00000000
              + NODE + MXF Generic Stream Metadata Version-1 Mappings + Identifies MXF Generic Stream Metadata Version-1 Mappings + SMPTE ST 410 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + MXFApplicationMetadataSchemes +
                urn:smpte:ul:060e2b34.0401010d.0d010600.00000000
              + NODE + MXF Application Metadata Schemes + Identifies MXF Application Metadata Schemes + SMPTE ST 377-1 Amendment 2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + ApplicationMetadataSchemesVersion1 +
                urn:smpte:ul:060e2b34.0401010d.0d010601.00000000
              + NODE + Application Metadata Schemes Version 1 + Identifies Application Metadata Schemes Version 1 + SMPTE ST 377-1 Amendment 2 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.04010101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as10 + AS_10 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0a000000
              + NODE + AS-10 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as10 + DMS_AS_10_Core +
                urn:smpte:ul:060e2b34.04010101.0d010701.0a010000
              + LEAF + DMS AS-10 Core + AS-10 Metadata Scheme + AMWA Application Specification AS-10 MXF for Production + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b010000
              + LEAF + DM_AS_11_Core + AS-11 core metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as11 + DM_AS_11_Segmentation +
                urn:smpte:ul:060e2b34.04010101.0d010701.0b020000
              + LEAF + DM_AS_11_Segmentation + AS-11 segmentation metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.04010101.0d010701.0c010000
              + LEAF + DMS_AS_12 + AS_12 metadata for advertising content identification + AMWA Application Specification AS-12 Commercial Delivery + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.04010101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + InterpretiveSoundEssence +
                urn:smpte:ul:060e2b34.04010101.0d010801.01000000
              + NODE + Sound Essence + SMPTE Label identifiers for Sound Essence interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioChannel +
                urn:smpte:ul:060e2b34.04010101.0d010801.01010000
              + NODE + Audio Channel + SMPTE Label identifiers for Audio Channel interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionStudioSignalDataChannel +
                urn:smpte:ul:060e2b34.04010101.0d010801.01010100
              + LEAF + Audio Description Studio Signal Data Channel + Identifies an Audio Channel carrying a data signal in the format defined by BBC R&D White Paper WHP 198, intended to be used to control the fade and pan of the Main Program audio when it is being mixed with a Visually Impaired Narrative Audio Channel + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + SoundfieldGroup +
                urn:smpte:ul:060e2b34.04010101.0d010801.01020000
              + NODE + Soundfield Group + SMPTE Label identifiers for Soundfield Groups interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionStudioSignal +
                urn:smpte:ul:060e2b34.04010101.0d010801.01020100
              + LEAF + Audio Description Studio Signal + Identifies an Soundfield Group carrying a Visually Impaired Narrative Audio Channel and an Audio Description Studio Signal Data Channel - this is the two-channel Audio Description Studio Signal defined by BBC R&D White Paper WHP 198 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + GroupOfSoundfieldGroups +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030000
              + NODE + Group of Soundfield Groups + SMPTE Label identifiers for Groups of Soundfield Groups interpretive data + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AlternativeProgram +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030100
              + LEAF + Alternative Program + Identifies an alternative, complete audio program + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescriptionProgramMix +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030200
              + LEAF + Audio Description Program Mix + Identifies a mix of the program audio with audio description audio + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + AudioDescription +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030300
              + LEAF + Audio Description + Identifies a verbal description of the visual scene + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + MusicAndEffects +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030400
              + LEAF + Music and Effects + Identifies a mix of the Main Program with no dialogue + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + UnusedAudio +
                urn:smpte:ul:060e2b34.04010101.0d010801.01030500
              + LEAF + Unused Audio + Identifies audio that is not used. The audio could be present for backward compatibility with devices and systems that require a set number of channels, beyond what is actually required to carry the content. + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + SoundChannelLabeling +
                urn:smpte:ul:060e2b34.04010101.0d010801.02000000
              + NODE + Labels for Sound Channel Labeling + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + ConstrainedMultichannelAudioLabelingFramework +
                urn:smpte:ul:060e2b34.04010101.0d010801.02010000
              + LEAF + Constrained Multichannel Audio Labeling Framework + Identifies a specific application of the MXF Multichannel Audio Framework + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + ConstrainedMultichannelAudioLabelingFramework_with_Default_Audio_Layout_A +
                urn:smpte:ul:060e2b34.04010101.0d010801.02020000
              + LEAF + ConstrainedMultichannelAudioLabelingFramework with Default Audio Layout A + Identifies a specific application of the MXF Multichannel Audio Framework with default audio layout 'A' + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Default_Audio_Layout_A_without_MCA_Labeling +
                urn:smpte:ul:060e2b34.04010101.0d010801.02030000
              + LEAF + Default Audio Layout A without MCA Labeling + Identifies default audio layout A without use of the MXF Multichannel Audio Framework + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Specification_Identification_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03000000
              + NODE + Specification Identification (Work In Progress) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_0_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03010000
              + LEAF + Blocks File Format 0 WIP + Blocks File Format 0 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_1_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03020000
              + LEAF + Blocks File Format 1 WIP + Blocks File Format 1 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_2_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03030000
              + LEAF + Blocks File Format 2 WIP + Blocks File Format 2 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_5_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03060000
              + LEAF + Blocks File Format 5 WIP + Blocks File Format 5 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_6_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03070000
              + LEAF + Blocks File Format 6 WIP + Blocks File Format 6 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_7_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03080000
              + LEAF + Blocks File Format 7 WIP + Blocks File Format 7 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_10_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.03090000
              + LEAF + Blocks File Format 10 WIP + Blocks File Format 10 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_9_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.030a0000
              + LEAF + Blocks File Format 9 WIP + Blocks File Format 9 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_11_WIP +
                urn:smpte:ul:060e2b34.04010101.0d010801.030b0000
              + LEAF + Blocks File Format 11 WIP + Blocks File Format 11 (Work in Progress) + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + MetadataPayloadSchemes +
                urn:smpte:ul:060e2b34.04010101.0d010801.04000000
              + NODE + Metadata Payload Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + DM_XML_Document +
                urn:smpte:ul:060e2b34.04010101.0d010801.04010000
              + LEAF + DM_XML_Document + Descriptive Metadata XML Document in Header Metadata + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Specification_Identification +
                urn:smpte:ul:060e2b34.04010101.0d010801.05000000
              + NODE + Specification Identification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_0 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05010000
              + LEAF + Blocks File Format 0 + Blocks File Format 0 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_2 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05030000
              + LEAF + Blocks File Format 2 + Blocks File Format 2 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/amwa/rules + Blocks_FF_7 +
                urn:smpte:ul:060e2b34.04010101.0d010801.05080000
              + LEAF + Blocks File Format 7 + Blocks File Format 7 + AMWA Rules-based Specification component + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + OperationalPatternApplication +
                urn:smpte:ul:060e2b34.04010105.0d011200.00000000
              + NODE + Operational Pattern Application + Identifies AAF Operational Patterns + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFOPStructureVersion +
                urn:smpte:ul:060e2b34.04010105.0d011201.00000000
              + NODE + AAF OP-Structure Version + Identifies AAF OP Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFEditProtocol +
                urn:smpte:ul:060e2b34.04010105.0d011201.01000000
              + LEAF + AAF Edit Protocol + Identifies the AAF Edit Protocol + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFUnconstrainedOP +
                urn:smpte:ul:060e2b34.04010109.0d011201.02000000
              + LEAF + AAF Unconstrained OP + Identifies an AAF file that is unconstrained by an OP (i.e. that one needs a general decoder) + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainers +
                urn:smpte:ul:060e2b34.04010106.0d011300.00000000
              + NODE + AAF Containers + Identifies AAF Containers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainersVersion1 +
                urn:smpte:ul:060e2b34.04010106.0d011301.00000000
              + NODE + AAF Containers Version-1 + Identifies AAF Containers, version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFContainersV1Physical +
                urn:smpte:ul:060e2b34.04010106.0d011301.01000000
              + NODE + AAF Containers V1-Physical + Identifies AAF Physical Containers, version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFRIFFContainer +
                urn:smpte:ul:060e2b34.04010106.0d011301.01010000
              + NODE + AAF RIFF Container + Identifies any essence elements stored according to the RIFF specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + RIFFWAVEContainer +
                urn:smpte:ul:060e2b34.04010106.0d011301.01010100
              + LEAF + RIFF WAVE Container + Identifier for audio essence elements stored according to the RIFF WAVE specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020000
              + NODE + AAF JFIF Container + Identifies any AAF essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFFrameWrappedJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020100
              + LEAF + AAF Frame-wrapped JFIF Container + Identifier for AAF frame wrapped essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFClipWrappedJFIFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01020200
              + LEAF + AAF Clip-wrapped JFIF Container + Identifier for AAF clip wrapped essence elements stored according to ISO10918-3 SPIFF with JFIF markers + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFNITFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01030000
              + NODE + AAF NITF Container + Identifies any AAF essence elements stored according to Mil STD 2500B or similar + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFClipWrappedNITFContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01030200
              + LEAF + AAF Clip-wrapped NITF Container + Identifier for AAF clip-wrapped essence elements stored according to Mil STD 2500B or similar + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFAIFFAIFCContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01040000
              + NODE + AAF AIFF-AIFC Container + Identifies any AAF essence elements stored according to the AIFC specification + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/1/aaf + AAFAIFFAIFCAudioContainer +
                urn:smpte:ul:060e2b34.04010107.0d011301.01040100
              + LEAF + AAF AIFF-AIFC Audio Container + Identifier for AAF AIFF or AIFC Audio essence elements stored according to the AIFC specification + false +
              + + Labels + http://www.ebu.ch/metadata/smpte/class13/label + EBU_UER +
                urn:smpte:ul:060e2b34.04010103.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Labels + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/label + ebucore +
                urn:smpte:ul:060e2b34.04010101.0d020100.00000000
              + LEAF + ebucore + The EBUCore is the EBU core set of metadata so-called the Dublin Core for media + EBU Tech 3293 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.04010103.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.04010105.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.04010101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_DescriptiveSchemes +
                urn:smpte:ul:060e2b34.04010101.0d040101.01000000
              + NODE + APP Descriptive Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_DescriptiveSchemesVersion1 +
                urn:smpte:ul:060e2b34.04010101.0d040101.01010000
              + NODE + APP Descriptive Schemes Version 1 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/4/archive + APP_PreservationDescriptiveScheme +
                urn:smpte:ul:060e2b34.04010101.0d040101.01010100
              + LEAF + APP Preservation Descriptive Scheme + APP Preservation Descriptive Scheme + BBC Research White Paper WHP 167 D3 Preservation File Format + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.04010106.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.04010107.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.0401010a.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.0401010a.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.0401010c.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.0401010c.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.0401010b.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.0401010c.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.04010101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12/as11 + AS_11_UKDPP +
                urn:smpte:ul:060e2b34.04010101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.04010101.0d0c0101.01000000
              + LEAF + DM_AS_11_UKDPP + AS-11 UK DPP metadata scheme + AMWA Application Specification AS-11 MXF Program Contribution + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.0401010c.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.04010101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.04010103.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.04010103.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.04010103.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.04010103.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.04010103.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.04010103.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.04010104.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.04010104.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.04010105.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/9 + IATrackFileCoding +
                urn:smpte:ul:060e2b34.04010105.0e090604.00000000
              + LEAF + IA Track File Coding + Identifies IA Track File Coding + SMPTE ST 429-18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/9 + EssenceContainerImmersiveAudioData +
                urn:smpte:ul:060e2b34.04010105.0e090605.00000000
              + LEAF + Essence Container Immersive Audio Data + Identifier for Immersive Audio Data Essence Container + SMPTE ST 429-18 + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.04010105.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.04010105.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.04010107.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.04010107.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.04010108.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.0401010a.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.0401010a.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.0401010a.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.0401010a.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.0401010c.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.0401010c.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.0401010c.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.0401010c.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.0401010c.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.0401010c.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.0401010c.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.0401010c.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.0401010d.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.0401010d.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.0401010d.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.0401010d.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.0401010d.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Labels + http://www.smpte-ra.org/reg/400/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.04010101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/src/test/resources/registers/snapshot/Types.xml b/src/test/resources/registers/snapshot/Types.xml new file mode 100644 index 0000000..eda2bd0 --- /dev/null +++ b/src/test/resources/registers/snapshot/Types.xml @@ -0,0 +1,10261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + Types + http://www.smpte-ra.org/reg/2003/2012 + TYPES +
                urn:smpte:ul:060e2b34.01040101.00000000.00000000
              + NODE + TYPES + Register of Basic Data Types and Composed Types + AAF + SMPTE ST 2003 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BasicTypes +
                urn:smpte:ul:060e2b34.01040101.01000000.00000000
              + NODE + Basic Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IntegerTypes +
                urn:smpte:ul:060e2b34.01040101.01010000.00000000
              + NODE + Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8 +
                urn:smpte:ul:060e2b34.01040101.01010100.00000000
              + LEAF + UInt8 + AAF + false + UnknownContext + Integer + 1 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt16 +
                urn:smpte:ul:060e2b34.01040101.01010200.00000000
              + LEAF + UInt16 + AAF + false + UnknownContext + Integer + 2 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32 +
                urn:smpte:ul:060e2b34.01040101.01010300.00000000
              + LEAF + UInt32 + AAF + false + UnknownContext + Integer + 4 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt64 +
                urn:smpte:ul:060e2b34.01040101.01010400.00000000
              + LEAF + UInt64 + AAF + false + UnknownContext + Integer + 8 + isNumeric +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int8 +
                urn:smpte:ul:060e2b34.01040101.01010500.00000000
              + LEAF + Int8 + AAF + false + UnknownContext + Integer + 1 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int16 +
                urn:smpte:ul:060e2b34.01040101.01010600.00000000
              + LEAF + Int16 + AAF + false + UnknownContext + Integer + 2 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int32 +
                urn:smpte:ul:060e2b34.01040101.01010700.00000000
              + LEAF + Int32 + AAF + false + UnknownContext + Integer + 4 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int64 +
                urn:smpte:ul:060e2b34.01040101.01010800.00000000
              + LEAF + Int64 + AAF + false + UnknownContext + Integer + 8 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.01012000.00000000
              + NODE + Renamed Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PositionType +
                urn:smpte:ul:060e2b34.01040101.01012001.00000000
              + LEAF + PositionType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LengthType +
                urn:smpte:ul:060e2b34.01040101.01012002.00000000
              + LEAF + LengthType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010800.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + JPEGTableIDType +
                urn:smpte:ul:060e2b34.01040101.01012003.00000000
              + LEAF + JPEGTableIDType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagType +
                urn:smpte:ul:060e2b34.01040101.01012004.00000000
              + LEAF + LocalTagType + MXF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S309M +
                urn:smpte:ul:060e2b34.01040101.01012005.00000000
              + LEAF + S309M + ASPA + big endian + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S12M +
                urn:smpte:ul:060e2b34.01040101.01012006.00000000
              + LEAF + S12M + ASPA + big endian + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MicroTime197001010000 +
                urn:smpte:ul:060e2b34.01040101.01012007.00000000
              + LEAF + MicroTime197001010000 + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Fix32Dec3 +
                urn:smpte:ul:060e2b34.01040101.01012008.00000000
              + LEAF + Fix32Dec3 + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CompactAdIDIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01012009.00000000
              + LEAF + Compact Ad-ID Identifier Type + Compact Ad-ID Identifier Type + AdID + SMPTE RP 2092-1 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01010300.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PhaseFrameType +
                urn:smpte:ul:060e2b34.01040101.01012300.00000000
              + LEAF + PhaseFrameType + AAF + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01010700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NumberTypes +
                urn:smpte:ul:060e2b34.01040101.01020000.00000000
              + NODE + Number Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Float +
                urn:smpte:ul:060e2b34.01040101.01020100.00000000
              + LEAF + float + ASPA + false + UnknownContext + Integer + 4 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Double +
                urn:smpte:ul:060e2b34.01040101.01020200.00000000
              + LEAF + Double + ASPA + false + UnknownContext + Float + 8 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + HalfFloat +
                urn:smpte:ul:060e2b34.01040101.01020300.00000000
              + LEAF + HalfFloat + ASPA + false + UnknownContext + Float + 2 + isNumeric isSigned +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InseparableBytestrings +
                urn:smpte:ul:060e2b34.01040101.01030000.00000000
              + NODE + Inseparable Bytestrings + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUID +
                urn:smpte:ul:060e2b34.01040101.01030100.00000000
              + LEAF + AUID + AAF + MXF was UL harmonized to AAF AUID + false + UnknownContext + Record + + + Data1 + Data1 + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + AAF + false + + + Data2 + Data2 + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF + false + + + Data3 + Data3 + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF + false + + + Data4 + Data4 + urn:smpte:ul:060e2b34.01040101.04010800.00000000 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageIDType +
                urn:smpte:ul:060e2b34.01040101.01030200.00000000
              + LEAF + PackageIDType + AAF~MobIDType + AAF was MobIDType harmonized to MXF PackageIDType + false + UnknownContext + Record + + + SMPTELabel + SMPTELabel + urn:smpte:ul:060e2b34.01040101.04010200.00000000 + AAF~SMPTELabel + false + + + Length + Length + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~length + false + + + InstanceHigh + InstanceHigh + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceHigh + false + + + InstanceMid + InstanceMid + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceMid + false + + + InstanceLow + InstanceLow + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~instanceLow + false + + + Material + Material + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + AAF~material + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UUID +
                urn:smpte:ul:060e2b34.01040101.01030300.00000000
              + LEAF + UUID + AAF[1.2:] + false + UnknownContext + FixedArray + 16 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BooleanTypes +
                urn:smpte:ul:060e2b34.01040101.01040000.00000000
              + NODE + Boolean Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Boolean +
                urn:smpte:ul:060e2b34.01040101.01040100.00000000
              + LEAF + Boolean + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + False + False + 0 + AAF + false + + + True + True + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CharacterTypes +
                urn:smpte:ul:060e2b34.01040101.01100000.00000000
              + NODE + Character Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Character +
                urn:smpte:ul:060e2b34.01040101.01100100.00000000
              + LEAF + Character + A single "UTF-16" code unit + AAF + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF16String +
                urn:smpte:ul:060e2b34.01040101.01100200.00000000
              + LEAF + UTF16String + AAF~String + MXF was UTF16 AAF was String harmonized to UTF16String + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Char +
                urn:smpte:ul:060e2b34.01040101.01100300.00000000
              + LEAF + Char + A single "US-ASCII" code unit + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO7 +
                urn:smpte:ul:060e2b34.01040101.01100400.00000000
              + LEAF + ISO7 + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100300.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF8Character +
                urn:smpte:ul:060e2b34.01040101.01100500.00000000
              + LEAF + UTF8Character + A single "UTF-8" code unit + false + UnknownContext + Character +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF8String +
                urn:smpte:ul:060e2b34.01040101.01100600.00000000
              + LEAF + UTF8String + false + UnknownContext + String + 0 + urn:smpte:ul:060e2b34.01040101.01100500.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedCharacterTypes +
                urn:smpte:ul:060e2b34.01040101.01200000.00000000
              + NODE + Renamed Character Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO3166_Country +
                urn:smpte:ul:060e2b34.01040101.01200100.00000000
              + LEAF + ISO3166_Country + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO3166_Region +
                urn:smpte:ul:060e2b34.01040101.01200200.00000000
              + LEAF + ISO3166_Region + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO639 +
                urn:smpte:ul:060e2b34.01040101.01200300.00000000
              + LEAF + ISO639 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ISO639_Ext +
                urn:smpte:ul:060e2b34.01040101.01200400.00000000
              + LEAF + ISO639_Ext + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RFC2152 +
                urn:smpte:ul:060e2b34.01040101.01200500.00000000
              + LEAF + RFC2152 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTCmilliseconds +
                urn:smpte:ul:060e2b34.01040101.01200600.00000000
              + LEAF + UTCmilliseconds + ASPA + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalDOINameType +
                urn:smpte:ul:060e2b34.01040101.01200700.00000000
              + LEAF + Canonical DOI Name Type + DOI name as specified in Section 4.1 of ISO/IEC 26324 + EIDR + SMPTE RP 2079 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalEIDRIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01200800.00000000
              + LEAF + Canonical EIDR Identifier Type + Canonical EIDR Identifier as specified in RP 2079 + EIDR + SMPTE RP 2079 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01200700.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CanonicalFullAdIDIdentifierType +
                urn:smpte:ul:060e2b34.01040101.01200900.00000000
              + LEAF + Canonical Full Ad-ID Identifier Type + Canonical Full Ad-ID Identifier Type + AdID + SMPTE RP 2092-1 + false + AbstractContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RenamedOtherTypes +
                urn:smpte:ul:060e2b34.01040101.01300000.00000000
              + NODE + Renamed Other Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UMID +
                urn:smpte:ul:060e2b34.01040101.01300100.00000000
              + LEAF + UMID + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01030200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedTypes +
                urn:smpte:ul:060e2b34.01040101.02000000.00000000
              + NODE + Enumerated Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.02010000.00000000
              + NODE + Enumerated Integer Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedUInt8Types +
                urn:smpte:ul:060e2b34.01040101.02010100.00000000
              + NODE + Enumerated UInt8 Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ProductReleaseType +
                urn:smpte:ul:060e2b34.01040101.02010101.00000000
              + LEAF + ProductReleaseType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VersionUnknown + VersionUnknown + 0 + AAF + false + + + VersionReleased + VersionReleased + 1 + AAF + false + + + VersionDebug + VersionDebug + 2 + AAF + false + + + VersionPatched + VersionPatched + 3 + AAF + false + + + VersionBeta + VersionBeta + 4 + AAF + false + + + VersionPrivateBuild + VersionPrivateBuild + 5 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TapeFormatType +
                urn:smpte:ul:060e2b34.01040101.02010102.00000000
              + LEAF + TapeFormatType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeFormatNull + TapeFormatNull + 0 + AAF + false + + + BetacamFormat + BetacamFormat + 1 + AAF + false + + + BetacamSPFormat + BetacamSPFormat + 2 + AAF + false + + + VHSFormat + VHSFormat + 3 + AAF + false + + + SVHSFormat + SVHSFormat + 4 + AAF + false + + + EightMillimeterFormat + EightMillimeterFormat + 5 + AAF~8mmFormat + false + + + Hi8Format + Hi8Format + 6 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VideoSignalType +
                urn:smpte:ul:060e2b34.01040101.02010103.00000000
              + LEAF + VideoSignalType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VideoSignalNull + VideoSignalNull + 0 + AAF + false + + + NTSCSignal + NTSCSignal + 1 + AAF + false + + + PALSignal + PALSignal + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TapeCaseType +
                urn:smpte:ul:060e2b34.01040101.02010104.00000000
              + LEAF + TapeCaseType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeCaseNull + TapeCaseNull + 0 + AAF + false + + + ThreeFourthInchVideoTape + ThreeFourthInchVideoTape + 1 + AAF + false + + + VHSVideoTape + VHSVideoTape + 2 + AAF + false + + + EightMillimeterVideoTape + EightMillimeterVideoTape + 3 + AAF~8mmVideoTape + false + + + BetacamVideoTape + BetacamVideoTape + 4 + AAF + false + + + CompactCassette + CompactCassette + 5 + AAF + false + + + DATCartridge + DATCartridge + 6 + AAF + false + + + NagraAudioTape + NagraAudioTape + 7 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorSitingType +
                urn:smpte:ul:060e2b34.01040101.02010105.00000000
              + LEAF + ColorSitingType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + CoSiting + CoSiting + 0 + AAF + false + + + HorizontalMidpoint + HorizontalMidpoint + 1 + AAF + false + + + ThreeTap + ThreeTap + 2 + AAF + false + + + Quincunx + Quincunx + 3 + AAF[1.12:] + false + + + Rec601 + Rec601 + 4 + AAF[1.12:] + false + + + LineAlternating + LineAlternating + 5 + AAF[1.12:] + false + + + VerticalMidpoint + VerticalMidpoint + 6 + AAF[1.12:] + false + + + UnknownSiting + UnknownSiting + 255 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EditHintType +
                urn:smpte:ul:060e2b34.01040101.02010106.00000000
              + LEAF + EditHintType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + NoEditHint + NoEditHint + 0 + AAF + false + + + Proportional + Proportional + 1 + AAF + false + + + RelativeLeft + RelativeLeft + 2 + AAF + false + + + RelativeRight + RelativeRight + 3 + AAF + false + + + RelativeFixed + RelativeFixed + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FadeType +
                urn:smpte:ul:060e2b34.01040101.02010107.00000000
              + LEAF + FadeType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FadeNone + FadeNone + 0 + AAF + false + + + FadeLinearAmp + FadeLinearAmp + 1 + AAF + false + + + FadeLinearPower + FadeLinearPower + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LayoutType +
                urn:smpte:ul:060e2b34.01040101.02010108.00000000
              + LEAF + LayoutType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FullFrame + FullFrame + 0 + AAF + false + + + SeparateFields + SeparateFields + 1 + AAF + false + + + OneField + OneField + 2 + AAF + false + + + MixedFields + MixedFields + 3 + AAF + false + + + SegmentedFrame + SegmentedFrame + 4 + AAF[1.02:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TCSource +
                urn:smpte:ul:060e2b34.01040101.02010109.00000000
              + LEAF + TCSource + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TimecodeLTC + TimecodeLTC + 0 + AAF + false + + + TimecodeVITC + TimecodeVITC + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PulldownDirectionType +
                urn:smpte:ul:060e2b34.01040101.0201010a.00000000
              + LEAF + PulldownDirectionType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TapeToFilmSpeed + TapeToFilmSpeed + 0 + AAF + false + + + FilmToTapeSpeed + FilmToTapeSpeed + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PulldownKindType +
                urn:smpte:ul:060e2b34.01040101.0201010b.00000000
              + LEAF + PulldownKindType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TwoThreePD + TwoThreePD + 0 + AAF + false + + + PALPD + PALPD + 1 + AAF + false + + + OneToOneNTSC + OneToOneNTSC + 2 + AAF + false + + + OneToOnePAL + OneToOnePAL + 3 + AAF[1.02:] + false + + + VideoTapNTSC + VideoTapNTSC + 4 + AAF[1.12:] + false + + + OneToOneHDSixty + OneToOneHDSixty + 5 + AAF[1.12:] + false + + + TwentyFourToSixtyPD + TwentyFourToSixtyPD + 6 + AAF[1.12:] + false + + + TwoToOnePD + TwoToOnePD + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EdgeType +
                urn:smpte:ul:060e2b34.01040101.0201010c.00000000
              + LEAF + EdgeType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + EtNull + EtNull + 0 + AAF + false + + + EtKeycode + EtKeycode + 1 + AAF + false + + + EtEdgenum4 + EtEdgenum4 + 2 + AAF + false + + + EtEdgenum5 + EtEdgenum5 + 3 + AAF + false + + + EtHeaderSize + EtHeaderSize + 8 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FilmType +
                urn:smpte:ul:060e2b34.01040101.0201010d.00000000
              + LEAF + FilmType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + FtNull + FtNull + 0 + AAF + false + + + Ft35MM + Ft35MM + 1 + AAF + false + + + Ft16MM + Ft16MM + 2 + AAF + false + + + Ft8MM + Ft8MM + 3 + AAF + false + + + Ft65MM + Ft65MM + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBAComponentKind +
                urn:smpte:ul:060e2b34.01040101.0201010e.00000000
              + LEAF + RGBAComponentKind + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + CompNone + CompNone + 48 + AAF + false + + + CompAlpha + CompAlpha + 65 + AAF + false + + + CompBlue + CompBlue + 66 + AAF + false + + + CompFill + CompFill + 70 + AAF + false + + + CompGreen + CompGreen + 71 + AAF + false + + + CompPalette + CompPalette + 80 + AAF + false + + + CompRed + CompRed + 82 + AAF + false + + + CompNull + CompNull + 0 + AAF[1.02:] + false + + + CompRedLSBs + CompRedLSBs + 114 + AAF[1.02:] + false + + + CompGreenLSBs + CompGreenLSBs + 103 + AAF[1.02:] + false + + + CompBlueLSBs + CompBlueLSBs + 98 + AAF[1.02:] + false + + + CompAlphaLSBs + CompAlphaLSBs + 97 + AAF[1.02:] + false + + + CompColorDifferenceU + CompColorDifferenceU + 85 + AAF[1.02:] + false + + + CompColorDifferenceV + CompColorDifferenceV + 86 + AAF[1.02:] + false + + + CompComposite + CompComposite + 87 + AAF[1.02:] + false + + + CompNonCoSitedLuma + CompNonCoSitedLuma + 88 + AAF[1.02:] + false + + + CompLuma + CompLuma + 89 + AAF[1.02:] + false + + + CompDepth + CompDepth + 90 + AAF[1.02:] + false + + + CompColorDifferenceULSBs + CompColorDifferenceULSBs + 117 + AAF[1.02:] + false + + + CompColorDifferenceVLSBs + CompColorDifferenceVLSBs + 118 + AAF[1.02:] + false + + + CompCompositeLSBs + CompCompositeLSBs + 119 + AAF[1.02:] + false + + + CompNonCoSitedLumaLSBs + CompNonCoSitedLumaLSBs + 120 + AAF[1.02:] + false + + + CompLumaLSBs + CompLumaLSBs + 121 + AAF[1.02:] + false + + + CompDepthLSBs + CompDepthLSBs + 122 + AAF[1.02:] + false + + + CompColorX + CompColorX + 216 + AAF[1.02:] + false + + + CompColorY + CompColorY + 217 + AAF[1.02:] + false + + + CompColorZ + CompColorZ + 218 + AAF[1.02:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ReferenceType +
                urn:smpte:ul:060e2b34.01040101.0201010f.00000000
              + LEAF + ReferenceType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + RefLimitMinimum + RefLimitMinimum + 0 + AAF + false + + + RefLimitMaximum + RefLimitMaximum + 1 + AAF + false + + + RefMinimum + RefMinimum + 2 + AAF + false + + + RefMaximum + RefMaximum + 3 + AAF + false + + + RefEnumvalue + RefEnumvalue + 4 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AlphaTransparencyType +
                urn:smpte:ul:060e2b34.01040101.02010120.00000000
              + LEAF + AlphaTransparencyType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + MinValueTransparent + MinValueTransparent + 0 + AAF + false + + + MaxValueTransparent + MaxValueTransparent + 1 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FieldNumber +
                urn:smpte:ul:060e2b34.01040101.02010121.00000000
              + LEAF + FieldNumber + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + UnspecifiedField + UnspecifiedField + 0 + AAF + false + + + FieldOne + FieldOne + 1 + AAF + false + + + FieldTwo + FieldTwo + 2 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ElectroSpatialFormulation +
                urn:smpte:ul:060e2b34.01040101.02010122.00000000
              + LEAF + ElectroSpatialFormulation + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ElectroSpatialFormulation_Default + ElectroSpatialFormulation_Default + 0 + AAF[1.1:] + false + + + ElectroSpatialFormulation_TwoChannelMode + ElectroSpatialFormulation_TwoChannelMode + 1 + AAF[1.1:] + false + + + ElectroSpatialFormulation_SingleChannelMode + ElectroSpatialFormulation_SingleChannelMode + 2 + AAF[1.1:] + false + + + ElectroSpatialFormulation_PrimarySecondaryMode + ElectroSpatialFormulation_PrimarySecondaryMode + 3 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereophonicMode + ElectroSpatialFormulation_StereophonicMode + 4 + AAF[1.1:] + false + + + ElectroSpatialFormulation_SingleChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_SingleChannelDoubleSamplingFrequencyMode + 7 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereoLeftChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_StereoLeftChannelDoubleSamplingFrequencyMode + 8 + AAF[1.1:] + false + + + ElectroSpatialFormulation_StereoRightChannelDoubleSamplingFrequencyMode + ElectroSpatialFormulation_StereoRightChannelDoubleSamplingFrequencyMode + 9 + AAF[1.1:] + false + + + ElectroSpatialFormulation_MultiChannelMode + ElectroSpatialFormulation_MultiChannelMode + 15 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EmphasisType +
                urn:smpte:ul:060e2b34.01040101.02010123.00000000
              + LEAF + EmphasisType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Emphasis_Unknown + Emphasis_Unknown + 0 + AAF[1.12:] + false + + + Emphasis_Reserved0 + Emphasis_Reserved0 + 1 + AAF[1.12:] + false + + + Emphasis_Reserved1 + Emphasis_Reserved1 + 2 + AAF[1.12:] + false + + + Emphasis_Reserved2 + Emphasis_Reserved2 + 3 + AAF[1.12:] + false + + + Emphasis_None + Emphasis_None + 4 + AAF[1.12:] + false + + + Emphasis_Reserved3 + Emphasis_Reserved3 + 5 + AAF[1.12:] + false + + + Emphasis_15and50 + Emphasis_15and50 + 6 + AAF[1.12:] + false + + + Emphasis_ITU + Emphasis_ITU + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AuxBitsModeType +
                urn:smpte:ul:060e2b34.01040101.02010124.00000000
              + LEAF + AuxBitsModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AuxBitsMode_NotDefined + AuxBitsMode_NotDefined + 0 + AAF[1.12:] + false + + + AuxBitsMode_MainAudioSampleData + AuxBitsMode_MainAudioSampleData + 1 + AAF[1.12:] + false + + + AuxBitsMode_SingleCoordinationSignal + AuxBitsMode_SingleCoordinationSignal + 2 + AAF[1.12:] + false + + + AuxBitsMode_UserDefined + AuxBitsMode_UserDefined + 3 + AAF[1.12:] + false + + + AuxBitsMode_Reserved0 + AuxBitsMode_Reserved0 + 4 + AAF[1.12:] + false + + + AuxBitsMode_Reserved1 + AuxBitsMode_Reserved1 + 5 + AAF[1.12:] + false + + + AuxBitsMode_Reserved2 + AuxBitsMode_Reserved2 + 6 + AAF[1.12:] + false + + + AuxBitsMode_Reserved3 + AuxBitsMode_Reserved3 + 7 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ChannelStatusModeType +
                urn:smpte:ul:060e2b34.01040101.02010125.00000000
              + LEAF + ChannelStatusModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ChannelStatusMode_None + ChannelStatusMode_None + 0 + AAF[1.12:] + false + + + ChannelStatusMode_Minimum + ChannelStatusMode_Minimum + 1 + AAF[1.12:] + false + + + ChannelStatusMode_Standard + ChannelStatusMode_Standard + 2 + AAF[1.12:] + false + + + ChannelStatusMode_Fixed + ChannelStatusMode_Fixed + 3 + AAF[1.12:] + false + + + ChannelStatusMode_Stream + ChannelStatusMode_Stream + 4 + AAF[1.12:] + false + + + ChannelStatusMode_Essence + ChannelStatusMode_Essence + 5 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UserDataModeType +
                urn:smpte:ul:060e2b34.01040101.02010126.00000000
              + LEAF + UserDataModeType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + UserDataMode_NotDefined + UserDataMode_NotDefined + 0 + AAF[1.12:] + false + + + UserDataMode_192BitBlockStructure + UserDataMode_192BitBlockStructure + 1 + AAF[1.12:] + false + + + UserDataMode_AES18 + UserDataMode_AES18 + 2 + AAF[1.12:] + false + + + UserDataMode_UserDefined + UserDataMode_UserDefined + 3 + AAF[1.12:] + false + + + UserDataMode_IEC + UserDataMode_IEC + 4 + AAF[1.12:] + false + + + UserDataMode_Metadata + UserDataMode_Metadata + 5 + AAF[1.12:] + false + + + UserDataMode_Reserved0 + UserDataMode_Reserved0 + 6 + AAF[1.12:] + false + + + UserDataMode_Reserved1 + UserDataMode_Reserved1 + 7 + AAF[1.12:] + false + + + UserDataMode_Reserved2 + UserDataMode_Reserved2 + 8 + AAF[1.12:] + false + + + UserDataMode_Reserved3 + UserDataMode_Reserved3 + 9 + AAF[1.12:] + false + + + UserDataMode_Reserved4 + UserDataMode_Reserved4 + 10 + AAF[1.12:] + false + + + UserDataMode_Reserved5 + UserDataMode_Reserved5 + 11 + AAF[1.12:] + false + + + UserDataMode_Reserved6 + UserDataMode_Reserved6 + 12 + AAF[1.12:] + false + + + UserDataMode_Reserved7 + UserDataMode_Reserved7 + 13 + AAF[1.12:] + false + + + UserDataMode_Reserved8 + UserDataMode_Reserved8 + 14 + AAF[1.12:] + false + + + UserDataMode_Reserved9 + UserDataMode_Reserved9 + 15 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SignalStandardType +
                urn:smpte:ul:060e2b34.01040101.02010127.00000000
              + LEAF + SignalStandardType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + SignalStandard_None + SignalStandard_None + 0 + AAF[1.1:] + false + + + SignalStandard_ITU601 + SignalStandard_ITU601 + 1 + AAF[1.1:] + false + + + SignalStandard_ITU1358 + SignalStandard_ITU1358 + 2 + AAF[1.1:] + false + + + SignalStandard_SMPTE347M + SignalStandard_SMPTE347M + 3 + AAF[1.1:] + false + + + SignalStandard_SMPTE274M + SignalStandard_SMPTE274M + 4 + AAF[1.1:] + false + + + SignalStandard_SMPTE296M + SignalStandard_SMPTE296M + 5 + AAF[1.1:] + false + + + SignalStandard_SMPTE349M + SignalStandard_SMPTE349M + 6 + AAF[1.1:] + false + + + SignalStandard_SMPTE428_1 + SignalStandard_SMPTE428_1 + 7 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ScanningDirectionType +
                urn:smpte:ul:060e2b34.01040101.02010128.00000000
              + LEAF + ScanningDirectionType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ScanningDirection_LeftToRightTopToBottom + ScanningDirection_LeftToRightTopToBottom + 0 + AAF[1.1:] + false + + + ScanningDirection_RightToLeftTopToBottom + ScanningDirection_RightToLeftTopToBottom + 1 + AAF[1.1:] + false + + + ScanningDirection_LeftToRightBottomToTop + ScanningDirection_LeftToRightBottomToTop + 2 + AAF[1.1:] + false + + + ScanningDirection_RightToLeftBottomToTop + ScanningDirection_RightToLeftBottomToTop + 3 + AAF[1.1:] + false + + + ScanningDirection_TopToBottomLeftToRight + ScanningDirection_TopToBottomLeftToRight + 4 + AAF[1.1:] + false + + + ScanningDirection_TopToBottomRightToLeft + ScanningDirection_TopToBottomRightToLeft + 5 + AAF[1.1:] + false + + + ScanningDirection_BottomToTopLeftToRight + ScanningDirection_BottomToTopLeftToRight + 6 + AAF[1.1:] + false + + + ScanningDirection_BottomToTopRightToLeft + ScanningDirection_BottomToTopRightToLeft + 7 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ToleranceModeType +
                urn:smpte:ul:060e2b34.01040101.02010129.00000000
              + LEAF + ToleranceModeType + ASPA AAF[1.2:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ToleranceMode_Estimated + Estimated + 0 + ASPA AAF[1.2:] + false + + + ToleranceMode_Assumed + Assumed + 1 + ASPA AAF[1.2:] + false + + + ToleranceMode_Precise + Precise + 2 + ASPA AAF[1.2:] + false + + + ToleranceMode_Window + Window + 3 + ASPA AAF[1.2:] + false + + + ToleranceMode_Interpolated + Interpolated + 4 + ASPA AAF[1.2:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContentScanningType +
                urn:smpte:ul:060e2b34.01040101.0201012a.00000000
              + LEAF + ContentScanningType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ContentScanning_NotKnown + ContentScanning_NotKnown + 0 + AAF[1.12:] + false + + + ContentScanning_Progressive + ContentScanning_Progressive + 1 + AAF[1.12:] + false + + + ContentScanning_Interlace + ContentScanning_Interlace + 2 + AAF[1.12:] + false + + + ContentScanning_Mixed + ContentScanning_Mixed + 3 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TitleAlignmentType +
                urn:smpte:ul:060e2b34.01040101.0201012b.00000000
              + LEAF + TitleAlignmentType + AAF[1.14:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + TitleAlignment_Left + TitleAlignment_Left + 0 + AAF[1.14:] + false + + + TitleAlignment_Center + TitleAlignment_Center + 1 + AAF[1.14:] + false + + + TitleAlignment_Right + TitleAlignment_Right + 2 + AAF[1.14:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AVCContentScanningType +
                urn:smpte:ul:060e2b34.01040101.0201012c.00000000
              + LEAF + AVCContentScanningType + AAF[1.12:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AVCContentScanning_NotKnown + AVCContentScanning_NotKnown + 0 + AAF[1.12:] + false + + + AVCContentScanning_ProgressiveFramePicture + AVCContentScanning_ProgressiveFramePicture + 1 + AAF[1.12:] + false + + + AVCContentScanning_InterlaceFieldPicture + AVCContentScanning_InterlaceFieldPicture + 2 + AAF[1.12:] + false + + + AVCContentScanning_InterlaceFramePicture + AVCContentScanning_InterlaceFramePicture + 3 + AAF[1.12:] + false + + + AVCContentScanning_Interlace_FrameFieldPicture + AVCContentScanning_Interlace_FrameFieldPicture + 4 + AAF[1.12:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MPEG4VisualCodedContentType +
                urn:smpte:ul:060e2b34.01040101.0201012d.00000000
              + LEAF + MPEG4VisualCodedContentType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + MPEG4VisualCodedContent_Unknown + MPEG4VisualCodedContent_Unknown + 0 + false + + + MPEG4VisualCodedContent_Progressive + MPEG4VisualCodedContent_Progressive + 1 + false + + + MPEG4VisualCodedContent_Interlaced + MPEG4VisualCodedContent_Interlaced + 2 + false + + + MPEG4VisualCodedContent_Mixed + MPEG4VisualCodedContent_Mixed + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VC2WaveletType +
                urn:smpte:ul:060e2b34.01040101.0201012e.00000000
              + LEAF + VC2 Wavelet Type + MXF + SMPTE ST 2042-4 + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + VC2Wavelet_DeslauriersDubuc_9_7 + Deslauriers-Dubuc (9,7) + 0 + false + + + VC2Wavelet_LeGall_5_3 + LeGall (5,3) + 1 + false + + + VC2Wavelet_DeslauriersDubuc_13_7 + Deslauriers-Dubuc (13,7) + 2 + false + + + VC2Wavelet_HaarNoShift + Haar with no shift + 3 + false + + + VC2Wavelet_HaarSingleShiftPerLevel + Haar with single shift per level + 4 + false + + + VC2Wavelet_FidelityFilter + Fidelity filter + 5 + false + + + VC2Wavelet_Daubechies_9_7_IntegerApproximation + Daubechies (9,7) integer approximation + 6 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorCorrectionFilterWheelSettingType +
                urn:smpte:ul:060e2b34.01040101.0201012f.00000000
              + LEAF + ColorCorrectionFilterWheelSettingType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ColorCorrectionFilterWheelSetting_CrossEffectFilter + ColorCorrectionFilterWheelSetting_CrossEffectFilter + 0 + false + + + ColorCorrectionFilterWheelSetting_CCFilter3200K + ColorCorrectionFilterWheelSetting_CCFilter3200K + 1 + false + + + ColorCorrectionFilterWheelSetting_CCFilter4300K + ColorCorrectionFilterWheelSetting_CCFilter4300K + 2 + false + + + ColorCorrectionFilterWheelSetting_CCFilter6300K + ColorCorrectionFilterWheelSetting_CCFilter6300K + 3 + false + + + ColorCorrectionFilterWheelSetting_CCFilter5600K + ColorCorrectionFilterWheelSetting_CCFilter5600K + 4 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ImageSensorReadoutModeType +
                urn:smpte:ul:060e2b34.01040101.02010130.00000000
              + LEAF + ImageSensorReadoutModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ImageSensorReadoutMode_InterlacedField + ImageSensorReadoutMode_InterlacedField + 0 + false + + + ImageSensorReadoutMode_InterlacedFrame + ImageSensorReadoutMode_InterlacedFrame + 1 + false + + + ImageSensorReadoutMode_ProgressiveFrame + ImageSensorReadoutMode_ProgressiveFrame + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoWhiteBalanceModeType +
                urn:smpte:ul:060e2b34.01040101.02010131.00000000
              + LEAF + AutoWhiteBalanceModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AutoWhiteBalanceMode_PresetWhiteBalanceSetup + AutoWhiteBalanceMode_PresetWhiteBalanceSetup + 0 + false + + + AutoWhiteBalanceMode_AutomaticWhiteBalanceSetup + AutoWhiteBalanceMode_AutomaticWhiteBalanceSetup + 1 + false + + + AutoWhiteBalanceMode_HoldWhiteBalanceSetup + AutoWhiteBalanceMode_HoldWhiteBalanceSetup + 2 + false + + + AutoWhiteBalanceMode_OnePushWhiteBalanceSetup + AutoWhiteBalanceMode_OnePushWhiteBalanceSetup + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoFocusSensingAreaSettingType +
                urn:smpte:ul:060e2b34.01040101.02010132.00000000
              + LEAF + AutoFocusSensingAreaSettingType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AutoFocusSensingAreaSetting_ManualFocusMode + AutoFocusSensingAreaSetting_ManualFocusMode + 0 + false + + + AutoFocusSensingAreaSetting_CenterSensitiveAutoFocusMode + AutoFocusSensingAreaSetting_CenterSensitiveAutoFocusMode + 1 + false + + + AutoFocusSensingAreaSetting_FullScreenSensingAutoFocusMode + AutoFocusSensingAreaSetting_FullScreenSensingAutoFocusMode + 2 + false + + + AutoFocusSensingAreaSetting_MultiSpotSensingAutoFocusMode + AutoFocusSensingAreaSetting_MultiSpotSensingAutoFocusMode + 3 + false + + + AutoFocusSensingAreaSetting_SingleSpotSensingAutoFocusMode + AutoFocusSensingAreaSetting_SingleSpotSensingAutoFocusMode + 4 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedUInt16Types +
                urn:smpte:ul:060e2b34.01040101.02010200.00000000
              + NODE + Enumerated UInt16 Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFByteOrderType +
                urn:smpte:ul:060e2b34.01040101.02010201.00000000
              + LEAF + TIFFByteOrderType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFByteOrder_BigEndian + TIFFByteOrder_BigEndian + 7777 + false + + + TIFFByteOrder_LittleEndian + TIFFByteOrder_LittleEndian + 7373 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFCompressionKindType +
                urn:smpte:ul:060e2b34.01040101.02010202.00000000
              + LEAF + TIFFCompressionKindType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFCompressionKind_NoCompression + TIFFCompressionKind_NoCompression + 1 + false + + + TIFFCompressionKind_LosslessHuffmanJPEG + TIFFCompressionKind_LosslessHuffmanJPEG + 7 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TIFFPhotometricInterpretationKindType +
                urn:smpte:ul:060e2b34.01040101.02010203.00000000
              + LEAF + TIFFPhotometricInterpretationKindType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TIFFPhotometricInterpretationKind_ColorFilterArray + TIFFPhotometricInterpretationKind_ColorFilterArray + 32803 + false + + + TIFFPhotometricInterpretationKind_LinearRaw + TIFFPhotometricInterpretationKind_LinearRaw + 34892 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedInseparableBytestrings +
                urn:smpte:ul:060e2b34.01040101.02020000.00000000
              + NODE + Enumerated Inseparable Bytestrings + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtendibleEnumerations +
                urn:smpte:ul:060e2b34.01040101.02020100.00000000
              + NODE + Extendible Enumerations + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationCategoryType +
                urn:smpte:ul:060e2b34.01040101.02020101.00000000
              + LEAF + OperationCategoryType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010100 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TransferCharacteristicType +
                urn:smpte:ul:060e2b34.01040101.02020102.00000000
              + LEAF + Transfer Characteristic Type + AAF + SMPTE ST 377-1 + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.04010101.01010000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01020000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01030000 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.04010101.01040000 + AAF + true + + + urn:smpte:ul:060e2b34.04010106.04010101.01050000 + AAF + false + + + urn:smpte:ul:060e2b34.04010106.04010101.01060000 + AAF + false + + + urn:smpte:ul:060e2b34.04010108.04010101.01070000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.01080000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010e.04010101.01090000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010a0000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010b0000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010c0000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.010d0000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginCategoryType +
                urn:smpte:ul:060e2b34.01040101.02020103.00000000
              + LEAF + PluginCategoryType + AAF + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010200 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010300 + AAF + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010400 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UsageType +
                urn:smpte:ul:060e2b34.01040101.02020104.00000000
              + LEAF + UsageType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010500 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010600 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010700 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010800 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.0d010102.01010900 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorPrimariesType +
                urn:smpte:ul:060e2b34.01040101.02020105.00000000
              + LEAF + ColorPrimariesType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010106.04010101.03010000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.03020000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.03030000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03040000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03050000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03060000 + AAF[1.3:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03070000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.03080000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodingEquationsType +
                urn:smpte:ul:060e2b34.01040101.02020106.00000000
              + LEAF + CodingEquationsType + AAF[1.1:] + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.04010101.04010101.02010000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010101.04010101.02020000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.04010106.04010101.02030000 + AAF[1.1:] + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02040000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02050000 + false + + + urn:smpte:ul:060e2b34.0401010d.04010101.02060000 + AAF[1.1:] + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AutoExposureModeType +
                urn:smpte:ul:060e2b34.01040101.02020107.00000000
              + LEAF + AutoExposureModeType + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.0401010b.05100101.01010000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01020000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01030000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01040000 + false + + + urn:smpte:ul:060e2b34.0401010b.05100101.01050000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ViewingEnvironmentType +
                urn:smpte:ul:060e2b34.01040101.02020108.00000000
              + LEAF + Viewing Environment Type + AAF + SMPTE ST 2067-50 + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + + + urn:smpte:ul:060e2b34.0401010d.04100101.01010000 + false + + + urn:smpte:ul:060e2b34.0401010d.04100101.01020000 + false + + + urn:smpte:ul:060e2b34.0401010d.04100101.01030000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EnumeratedISO7 +
                urn:smpte:ul:060e2b34.01040101.02020200.00000000
              + NODE + EnumeratedISO7 + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContractTypeCode +
                urn:smpte:ul:060e2b34.01040101.02020201.00000000
              + LEAF + ContractTypeCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContractLineCode +
                urn:smpte:ul:060e2b34.01040101.02020202.00000000
              + LEAF + ContractLineCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PublishingMediumCode +
                urn:smpte:ul:060e2b34.01040101.02020203.00000000
              + LEAF + PublishingMediumCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + JobFunctionCode +
                urn:smpte:ul:060e2b34.01040101.02020204.00000000
              + LEAF + JobFunctionCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ObjectTypeCode +
                urn:smpte:ul:060e2b34.01040101.02020205.00000000
              + LEAF + ObjectTypeCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GammaCode +
                urn:smpte:ul:060e2b34.01040101.02020206.00000000
              + LEAF + GammaCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SamplingStructureCode +
                urn:smpte:ul:060e2b34.01040101.02020207.00000000
              + LEAF + SamplingStructureCode + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01100400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RecordTypes +
                urn:smpte:ul:060e2b34.01040101.03000000.00000000
              + NODE + Record Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleRecordTypes +
                urn:smpte:ul:060e2b34.01040101.03010000.00000000
              + NODE + Simple Record Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Rational +
                urn:smpte:ul:060e2b34.01040101.03010100.00000000
              + LEAF + Rational + AAF + false + UnknownContext + Record + + + Numerator + Numerator + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + AAF + false + + + Denominator + Denominator + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + AAF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ProductVersionType +
                urn:smpte:ul:060e2b34.01040101.03010200.00000000
              + LEAF + ProductVersionType + AAF~ProductVersion + false + UnknownContext + Record + + + Major + Major + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~major + false + + + Minor + Minor + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~minor + false + + + Tertiary + Tertiary + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~tertiary + false + + + PatchLevel + PatchLevel + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + AAF~patchLevel + false + + + BuildType + BuildType + urn:smpte:ul:060e2b34.01040101.02010101.00000000 + AAF~type + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VersionType +
                urn:smpte:ul:060e2b34.01040101.03010300.00000000
              + LEAF + VersionType + AAF + false + UnknownContext + Record + + + VersionMajor + VersionMajor + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + AAF~major + false + + + VersionMinor + VersionMinor + urn:smpte:ul:060e2b34.01040101.01010500.00000000 + AAF~minor + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBAComponent +
                urn:smpte:ul:060e2b34.01040101.03010400.00000000
              + LEAF + RGBAComponent + AAF + false + UnknownContext + Record + + + Code + Code + urn:smpte:ul:060e2b34.01040101.0201010e.00000000 + AAF + false + + + ComponentSize + ComponentSize + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~Size + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DateStruct +
                urn:smpte:ul:060e2b34.01040101.03010500.00000000
              + LEAF + DateStruct + AAF + false + UnknownContext + Record + + + Year + Year + urn:smpte:ul:060e2b34.01040101.01010600.00000000 + AAF~year + false + + + Month + Month + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~month + false + + + Day + Day + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~day + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TimeStruct +
                urn:smpte:ul:060e2b34.01040101.03010600.00000000
              + LEAF + TimeStruct + AAF + false + UnknownContext + Record + + + Hour + Hour + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~hour + false + + + Minute + Minute + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~minute + false + + + Second + Second + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~second + false + + + Fraction + Fraction + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + AAF~fraction + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TimeStamp +
                urn:smpte:ul:060e2b34.01040101.03010700.00000000
              + LEAF + TimeStamp + AAF + false + UnknownContext + Record + + + Date + Date + urn:smpte:ul:060e2b34.01040101.03010500.00000000 + AAF~date + false + + + Time + Time + urn:smpte:ul:060e2b34.01040101.03010600.00000000 + AAF~time + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagEntry +
                urn:smpte:ul:060e2b34.01040101.03010800.00000000
              + LEAF + LocalTagEntry + MXF + false + UnknownContext + Record + + + LocalTag + LocalTag + urn:smpte:ul:060e2b34.01040101.01012004.00000000 + MXF + false + + + UID + UID + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + MXF + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicCoordinate +
                urn:smpte:ul:060e2b34.01040101.03010900.00000000
              + LEAF + GeographicCoordinate + ASPA + false + UnknownContext + Record + + + Latitude + Latitude + urn:smpte:ul:060e2b34.01040101.01012008.00000000 + ASPA + false + + + Longitude + Longitude + urn:smpte:ul:060e2b34.01040101.01012008.00000000 + ASPA + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + J2KComponentSizing +
                urn:smpte:ul:060e2b34.01040101.03010a00.00000000
              + LEAF + J2K Component Sizing + false + UnknownContext + Record + + + Ssiz + Ssiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + + XRSiz + XRSiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + + YRSiz + YRSiz + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ASMLEKeyIDMapping +
                urn:smpte:ul:060e2b34.01040101.03010b00.00000000
              + LEAF + ASMLEKeyIDMapping + false + UnknownContext + Record + + + ASMLEKeyID + ASM LE Key ID + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + false + + + ASMKey + ASM Key + urn:smpte:ul:060e2b34.01040101.04011100.00000000 + false + + + ASMExpireTime + ASM Expire Time + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + false + + + ASMAttributeData + ASM Attribute Data + urn:smpte:ul:060e2b34.01040101.01010400.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ColorPrimary +
                urn:smpte:ul:060e2b34.01040101.03010c00.00000000
              + LEAF + Color Primary + SMPTE ST 2067-21 + false + UnknownContext + Record + + + X + X Color Coordinate + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + false + + + Y + Y Color Coordinate + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Multiples +
                urn:smpte:ul:060e2b34.01040101.04000000.00000000
              + NODE + Multiples + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleArrays +
                urn:smpte:ul:060e2b34.01040101.04010000.00000000
              + NODE + Simple Arrays + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array +
                urn:smpte:ul:060e2b34.01040101.04010100.00000000
              + LEAF + UInt8Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array12 +
                urn:smpte:ul:060e2b34.01040101.04010200.00000000
              + LEAF + UInt8Array12 + AAF + false + UnknownContext + FixedArray + 12 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int32Array +
                urn:smpte:ul:060e2b34.01040101.04010300.00000000
              + LEAF + Int32Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010700.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Int64Array +
                urn:smpte:ul:060e2b34.01040101.04010400.00000000
              + LEAF + Int64Array + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010800.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UTF16StringArray +
                urn:smpte:ul:060e2b34.01040101.04010500.00000000
              + LEAF + UTF16StringArray + AAF~StringArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01100100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUIDArray +
                urn:smpte:ul:060e2b34.01040101.04010600.00000000
              + LEAF + AUIDArray + AAF ASPA + MXF was ULArray harmonized to AAF AUIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PositionArray +
                urn:smpte:ul:060e2b34.01040101.04010700.00000000
              + LEAF + PositionArray + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array8 +
                urn:smpte:ul:060e2b34.01040101.04010800.00000000
              + LEAF + UInt8Array8 + AAF + false + UnknownContext + FixedArray + 8 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32Array +
                urn:smpte:ul:060e2b34.01040101.04010900.00000000
              + LEAF + UInt32Array + AAF[1.1:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ChannelStatusModeArray +
                urn:smpte:ul:060e2b34.01040101.04010a00.00000000
              + LEAF + ChannelStatusModeArray + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.02010125.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UserDataModeArray +
                urn:smpte:ul:060e2b34.01040101.04010b00.00000000
              + LEAF + UserDataModeArray + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.02010126.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array6 +
                urn:smpte:ul:060e2b34.01040101.04010c00.00000000
              + LEAF + UInt8Array6 + false + UnknownContext + FixedArray + 6 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array3 +
                urn:smpte:ul:060e2b34.01040101.04010d00.00000000
              + LEAF + UInt8Array3 + false + UnknownContext + FixedArray + 3 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S352M +
                urn:smpte:ul:060e2b34.01040101.04010e00.00000000
              + LEAF + S352M + false + UnknownContext + FixedArray + 4 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S330M_Spatial +
                urn:smpte:ul:060e2b34.01040101.04010f00.00000000
              + LEAF + S330M_Spatial + false + UnknownContext + FixedArray + 12 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtUMID +
                urn:smpte:ul:060e2b34.01040101.04011000.00000000
              + LEAF + ExtUMID + false + UnknownContext + FixedArray + 32 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt8Array16 +
                urn:smpte:ul:060e2b34.01040101.04011100.00000000
              + LEAF + UInt8Array16 + false + UnknownContext + FixedArray + 16 + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt16Array +
                urn:smpte:ul:060e2b34.01040101.04011200.00000000
              + LEAF + UInt16Array + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + HalfFloatArray +
                urn:smpte:ul:060e2b34.01040101.04011300.00000000
              + LEAF + HalfFloatArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01020300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + VC2WaveletArray +
                urn:smpte:ul:060e2b34.01040101.04011400.00000000
              + LEAF + VC2 Wavelet Array + MXF + SMPTE ST 2042-4 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.0201012e.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UUIDArray +
                urn:smpte:ul:060e2b34.01040101.04011500.00000000
              + LEAF + UUIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01030300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RecordArrays +
                urn:smpte:ul:060e2b34.01040101.04020000.00000000
              + NODE + Record Arrays + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RGBALayout +
                urn:smpte:ul:060e2b34.01040101.04020100.00000000
              + LEAF + RGBALayout + AAF + false + UnknownContext + FixedArray + 8 + urn:smpte:ul:060e2b34.01040101.03010400.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RationalArray +
                urn:smpte:ul:060e2b34.01040101.04020200.00000000
              + LEAF + RationalArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicCoordinateArray +
                urn:smpte:ul:060e2b34.01040101.04020300.00000000
              + LEAF + GeographicCoordinateArray + ASPA + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010900.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S309MArray +
                urn:smpte:ul:060e2b34.01040101.04020400.00000000
              + LEAF + S309MArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01012005.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UMIDArray +
                urn:smpte:ul:060e2b34.01040101.04020500.00000000
              + LEAF + UMIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01300100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtUMIDArray +
                urn:smpte:ul:060e2b34.01040101.04020600.00000000
              + LEAF + ExtUMIDArray + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04011000.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IndexEntryArray +
                urn:smpte:ul:060e2b34.01040101.04020700.00000000
              + LEAF + IndexEntryArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04100600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DeltaEntryArray +
                urn:smpte:ul:060e2b34.01040101.04020800.00000000
              + LEAF + DeltaEntryArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.04100a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + J2KComponentSizingArray +
                urn:smpte:ul:060e2b34.01040101.04020900.00000000
              + LEAF + J2KComponentSizingArray + MXF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.03010a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ThreeColorPrimaries +
                urn:smpte:ul:060e2b34.01040101.04020a00.00000000
              + LEAF + Three-Color Primaries + SMPTE ST 2067-21 + false + UnknownContext + FixedArray + 3 + urn:smpte:ul:060e2b34.01040101.03010c00.00000000 + isOrdered isCountImplicit isSizeImplicit +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SimpleSets +
                urn:smpte:ul:060e2b34.01040101.04030000.00000000
              + NODE + Simple Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + AUIDSet +
                urn:smpte:ul:060e2b34.01040101.04030100.00000000
              + LEAF + AUIDSet + AAF[1.12:] + MXF was ULBatch harmonized to AAF AUIDSet + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.01030100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + UInt32Set +
                urn:smpte:ul:060e2b34.01040101.04030200.00000000
              + LEAF + UInt32Set + AAF[1.12:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.01010300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocalTagEntryBatch +
                urn:smpte:ul:060e2b34.01040101.04030300.00000000
              + LEAF + LocalTagEntryBatch + MXF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.03010800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ASMLEKeyIDMappingSet +
                urn:smpte:ul:060e2b34.01040101.04030400.00000000
              + LEAF + ASMLEKeyIDMappingSet + MXF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.03010b00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BytestreamTypes +
                urn:smpte:ul:060e2b34.01040101.04100000.00000000
              + NODE + Bytestream Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataValue +
                urn:smpte:ul:060e2b34.01040101.04100100.00000000
              + LEAF + DataValue + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Stream +
                urn:smpte:ul:060e2b34.01040101.04100200.00000000
              + LEAF + Stream + AAF + false + UnknownContext + Stream +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Indirect +
                urn:smpte:ul:060e2b34.01040101.04100300.00000000
              + LEAF + Indirect + AAF + false + UnknownContext + Indirect +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + Opaque +
                urn:smpte:ul:060e2b34.01040101.04100400.00000000
              + LEAF + Opaque + AAF + false + UnknownContext + Opaque +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IndexEntry +
                urn:smpte:ul:060e2b34.01040101.04100600.00000000
              + LEAF + IndexEntry + MXF + SMPTE ST 377-1 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S312M +
                urn:smpte:ul:060e2b34.01040101.04100700.00000000
              + LEAF + S312M + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + S327M +
                urn:smpte:ul:060e2b34.01040101.04100800.00000000
              + LEAF + S327M + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + BiM +
                urn:smpte:ul:060e2b34.01040101.04100900.00000000
              + LEAF + BiM + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DeltaEntry +
                urn:smpte:ul:060e2b34.01040101.04100a00.00000000
              + LEAF + DeltaEntry + MXF + SMPTE ST 377-1 + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.04100100.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ReferenceTypes +
                urn:smpte:ul:060e2b34.01040101.05000000.00000000
              + NODE + Reference Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferences +
                urn:smpte:ul:060e2b34.01040101.05010000.00000000
              + NODE + Weak References + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010100.00000000
              + LEAF + ClassDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02010000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.07000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010200.00000000
              + LEAF + ContainerDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05080000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010300.00000000
              + LEAF + DataDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05050000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DefinitionObjectWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010400.00000000
              + LEAF + DefinitionObjectWeakReference + AAF[1.2:] + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010500.00000000
              + LEAF + InterpolationDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012100 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05090000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010600.00000000
              + LEAF + PackageWeakReference + AAF~WeakReferenceMob + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02010000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05010000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010700.00000000
              + LEAF + OperationDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05030000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010800.00000000
              + LEAF + ParameterDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05040000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010900.00000000
              + LEAF + TypeDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.08000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010a00.00000000
              + LEAF + PluginDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05060000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010b00.00000000
              + LEAF + CodecDefinitionWeakReference + AAF + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.02020000 + false + + + urn:smpte:ul:060e2b34.01010102.06010104.05070000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010c00.00000000
              + LEAF + PropertyDefinitionWeakReference + AAF[1.1:] + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 + + + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.07000000 + false + + + urn:smpte:ul:060e2b34.01010102.06010107.02000000 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionExtendibleEnumerationWeakReference +
                urn:smpte:ul:060e2b34.01040101.05010d00.00000000
              + LEAF + TypeDefinitionExtendibleEnumerationWeakReference + SMPTE ST 377-2 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02200000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferences +
                urn:smpte:ul:060e2b34.01040101.05020000.00000000
              + NODE + Strong References + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContentStorageStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020100.00000000
              + LEAF + ContentStorageStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DictionaryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020200.00000000
              + LEAF + DictionaryStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020300.00000000
              + LEAF + EssenceDescriptorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NetworkLocatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020400.00000000
              + LEAF + NetworkLocatorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020500.00000000
              + LEAF + OperationGroupStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010a00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SegmentStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020600.00000000
              + LEAF + SegmentStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceClipStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020700.00000000
              + LEAF + SourceClipStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceReferenceStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020800.00000000
              + LEAF + SourceReferenceStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020900.00000000
              + LEAF + ClassDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02010000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020a00.00000000
              + LEAF + CodecDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ComponentStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020b00.00000000
              + LEAF + ComponentStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020c00.00000000
              + LEAF + ContainerDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ControlPointStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020d00.00000000
              + LEAF + ControlPointStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011900 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020e00.00000000
              + LEAF + DataDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011b00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.05020f00.00000000
              + LEAF + EssenceDataStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IdentificationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021000.00000000
              + LEAF + IdentificationStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021100.00000000
              + LEAF + InterpolationDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021200.00000000
              + LEAF + LocatorStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021300.00000000
              + LEAF + PackageStrongReference + AAF~StrongReferenceMob + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TrackStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021400.00000000
              + LEAF + TrackStrongReference + AAF~StrongReferenceMobSlot + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021500.00000000
              + LEAF + OperationDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021600.00000000
              + LEAF + ParameterStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021700.00000000
              + LEAF + ParameterDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011d00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021800.00000000
              + LEAF + PluginDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01011e00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021900.00000000
              + LEAF + PropertyDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021a00.00000000
              + LEAF + TaggedValueStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01013f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021b00.00000000
              + LEAF + TypeDefinitionStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02030000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021c00.00000000
              + LEAF + KLVDataStrongReference + AAF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FileDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021d00.00000000
              + LEAF + FileDescriptorStrongReference + AAF[1.12:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012500 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RIFFChunkStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021e00.00000000
              + LEAF + RIFFChunkStrongReference + AAF[1.12:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveFrameworkStrongReference +
                urn:smpte:ul:060e2b34.01040101.05021f00.00000000
              + LEAF + DescriptiveFrameworkStrongReference + AAF[1.1:] ASPA[:0.8] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022000.00000000
              + LEAF + KLVDataDefinitionStrongReference + AAF[1.1:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014d00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022100.00000000
              + LEAF + TaggedValueDefinitionStrongReference + AAF[1.1:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014c00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022200.00000000
              + LEAF + DescriptiveObjectStrongReference + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010400.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CueWordsStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022300.00000000
              + LEAF + CueWordsStrongReference + DMS-1 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.01170800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicAreaStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022400.00000000
              + LEAF + GeographicAreaStrongReference + ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GeographicPolygonStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022500.00000000
              + LEAF + GeographicPolygonStrongReference + ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01010100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SubDescriptorStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022600.00000000
              + LEAF + SubDescriptorStrongReference + AAF[1.2:] AAF[:1.13] ASPA + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDictionaryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022700.00000000
              + LEAF + MetaDictionaryStrongReference + AAF[1.2:] + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02250000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PrefaceStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022800.00000000
              + LEAF + PrefaceStrongReference + AAF[1.2:]~StrongReferenceHeader + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01012f00 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NameValueStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022900.00000000
              + LEAF + NameValueStrongReference + DMS-1 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011f0100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TextBasedObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022a00.00000000
              + LEAF + TextBasedObjectStrongReference + DMS-Text + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010401.04030100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EntryStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022b00.00000000
              + LEAF + EntryStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RegisterAdministrationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022c00.00000000
              + LEAF + RegisterAdministrationStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010800 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EntryAdministrationStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022d00.00000000
              + LEAF + EntryAdministrationStrongReference + RIF + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0c010101.01010400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageMarkerStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022e00.00000000
              + LEAF + PackageMarkerStrongReference + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.05022f00.00000000
              + LEAF + ApplicationPluginObjectStrongReference + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtensionSchemeStrongReference +
                urn:smpte:ul:060e2b34.01040101.05023000.00000000
              + LEAF + ExtensionSchemeStrongReference + SMPTE ST 377-2 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02260000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDefinitionStrongReference +
                urn:smpte:ul:060e2b34.01040101.05023100.00000000
              + LEAF + MetaDefinitionStrongReference + SMPTE ST 377-2 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05030000.00000000
              + NODE + Weak Reference Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030d00.00000000
              + LEAF + DataDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030e00.00000000
              + LEAF + ParameterDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05030f00.00000000
              + LEAF + PluginDefinitionWeakReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010a00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05031000.00000000
              + LEAF + PropertyDefinitionWeakReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010c00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionExtendibleEnumerationWeakReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05031100.00000000
              + LEAF + TypeDefinitionExtendibleEnumerationWeakReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05010d00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + WeakReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05040000.00000000
              + NODE + Weak Reference Vectors + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040100.00000000
              + LEAF + OperationDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010700.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040200.00000000
              + LEAF + TypeDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010900.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionWeakReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05040300.00000000
              + LEAF + DataDefinitionWeakReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05010300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05050000.00000000
              + NODE + Strong Reference Sets + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050100.00000000
              + LEAF + ClassDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + CodecDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050200.00000000
              + LEAF + CodecDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020a00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ContainerDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050300.00000000
              + LEAF + ContainerDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020c00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DataDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050400.00000000
              + LEAF + DataDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020e00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + EssenceDataStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050500.00000000
              + LEAF + EssenceDataStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05020f00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + InterpolationDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050600.00000000
              + LEAF + InterpolationDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PackageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050700.00000000
              + LEAF + PackageStrongReferenceSet + AAF~StrongReferenceSetMob + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OperationDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050800.00000000
              + LEAF + OperationDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021500.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050900.00000000
              + LEAF + ParameterDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021700.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PluginDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050a00.00000000
              + LEAF + PluginDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021800.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + PropertyDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050b00.00000000
              + LEAF + PropertyDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TypeDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050c00.00000000
              + LEAF + TypeDefinitionStrongReferenceSet + AAF + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05021b00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050d00.00000000
              + LEAF + KLVDataDefinitionStrongReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022000.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050e00.00000000
              + LEAF + TaggedValueDefinitionStrongReferenceSet + AAF[1.1:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05050f00.00000000
              + LEAF + DescriptiveObjectStrongReferenceSet + AAF[1.12:] + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + NameValueStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051000.00000000
              + LEAF + NameValueStrongReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022900.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051100.00000000
              + LEAF + ApplicationPluginObjectStrongReferenceSet + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05022f00.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ExtensionSchemeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051200.00000000
              + LEAF + ExtensionSchemeStrongReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05023000.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + MetaDefinitionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05051300.00000000
              + LEAF + MetaDefinitionStrongReferenceSet + SMPTE ST 377-2 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05023100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + StrongReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05060000.00000000
              + NODE + Strong Reference Vectors + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ComponentStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060100.00000000
              + LEAF + ComponentStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020b00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ControlPointStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060200.00000000
              + LEAF + ControlPointStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020d00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + IdentificationStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060300.00000000
              + LEAF + IdentificationStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021000.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocatorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060400.00000000
              + LEAF + LocatorStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TrackStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060500.00000000
              + LEAF + TrackStrongReferenceVector + AAF~StrongReferenceVectorMobSlot + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021400.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SegmentStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060600.00000000
              + LEAF + SegmentStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SourceReferenceStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060700.00000000
              + LEAF + SourceReferenceStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05020800.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + TaggedValueStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060800.00000000
              + LEAF + TaggedValueStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021a00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + KLVDataStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060900.00000000
              + LEAF + KLVDataStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021c00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParameterStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060a00.00000000
              + LEAF + ParameterStrongReferenceVector + AAF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + FileDescriptorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060b00.00000000
              + LEAF + FileDescriptorStrongReferenceVector + AAF[1.12:] ASPA[:0.8] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021d00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RIFFChunkStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060c00.00000000
              + LEAF + RIFFChunkStrongReferenceVector + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05021e00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveObjectStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060d00.00000000
              + LEAF + DescriptiveObjectStrongReferenceVector + AAF[1.12:] + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + SubDescriptorStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060e00.00000000
              + LEAF + SubDescriptorStrongReferenceVector + AAF[1.2:] AAF[:1.13] ASPA + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022600.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + RegisterEntryStrongReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05060f00.00000000
              + LEAF + RegisterEntryStrongReferenceVector + RIF + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05022b00.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferenceSets +
                urn:smpte:ul:060e2b34.01040101.05070000.00000000
              + NODE + Global Reference Sets + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070100.00000000
              + LEAF + ParticipantGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090100.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070200.00000000
              + LEAF + OrganizationGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090200.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReferenceSet +
                urn:smpte:ul:060e2b34.01040101.05070300.00000000
              + LEAF + LocationGlobalReferenceSet + DMS-1 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.05090300.00000000 + isIdentified +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferenceVectors +
                urn:smpte:ul:060e2b34.01040101.05080000.00000000
              + NODE + Global Reference Vectors + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080100.00000000
              + LEAF + ParticipantGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090100.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080200.00000000
              + LEAF + OrganizationGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090200.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReferenceVector +
                urn:smpte:ul:060e2b34.01040101.05080300.00000000
              + LEAF + LocationGlobalReferenceVector + DMS-1 + false + UnknownContext + VariableArray + urn:smpte:ul:060e2b34.01040101.05090300.00000000 + isOrdered +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + GlobalReferences +
                urn:smpte:ul:060e2b34.01040101.05090000.00000000
              + NODE + Global References + DMS-1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ParticipantGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090100.00000000
              + LEAF + ParticipantGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.01180100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + OrganizationGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090200.00000000
              + LEAF + OrganizationGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011a0300 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + LocationGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090300.00000000
              + LEAF + LocationGlobalReference + DMS-1 + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010401.011a0400 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ApplicationPluginObjectGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090400.00000000
              + LEAF + ApplicationPluginObjectGlobalReference + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01016100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + DescriptiveMarkerGlobalReference +
                urn:smpte:ul:060e2b34.01040101.05090500.00000000
              + LEAF + DescriptiveMarkerGlobalReference + false + UnknownContext + WeakReference + urn:smpte:ul:060e2b34.027f0101.0d010101.01014100 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012 + ClassTypes +
                urn:smpte:ul:060e2b34.01040101.07000000.00000000
              + NODE + Class Types + AAF + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13 + OrganizationallyRegisteredforPublicUse +
                urn:smpte:ul:060e2b34.01040101.0d000000.00000000
              + NODE + Organizationally Registered for Public Use + Organizationally Registered for Public Use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1 + AAFAssociation +
                urn:smpte:ul:060e2b34.01040101.0d010000.00000000
              + NODE + AAF Association + Metadata registered by the AAF Association for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa + AMWAApplicationSpecifications +
                urn:smpte:ul:060e2b34.01040101.0d010700.00000000
              + NODE + AMWA Application Specifications + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa + ApplicationSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d010701.00000000
              + NODE + Application Specifications Version 1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b000000
              + NODE + AS-11 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + DM_AS_11_Core +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010000
              + NODE + AS-11 Core + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11_Captions_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010100
              + LEAF + Captions Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Captions_Hard_of_Hearing + Hard of Hearing + 0 + false + + + Captions_Translation + Translation + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + AS_11_Audio_Track_Layout_Enum +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010200
              + LEAF + Audio Track Layout Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Layout_EBU_R_48_1a + EBU R 48: 1a + 0 + false + + + Layout_EBU_R_48_1b + EBU R 48: 1b + 1 + false + + + Layout_EBU_R_48_1c + EBU R 48: 1c + 2 + false + + + Layout_EBU_R_48_2a + EBU R 48: 2a + 3 + false + + + Layout_EBU_R_48_2b + EBU R 48: 2b + 4 + false + + + Layout_EBU_R_48_2c + EBU R 48: 2c + 5 + false + + + Layout_EBU_R_48_3a + EBU R 48: 3a + 6 + false + + + Layout_EBU_R_48_3b + EBU R 48: 3b + 7 + false + + + Layout_EBU_R_48_4a + EBU R 48: 4a + 8 + false + + + Layout_EBU_R_48_4b + EBU R 48: 4b + 9 + false + + + Layout_EBU_R_48_4c + EBU R 48: 4c + 10 + false + + + Layout_EBU_R_48_5a + EBU R 48: 5a + 11 + false + + + Layout_EBU_R_48_5b + EBU R 48: 5b + 12 + false + + + Layout_EBU_R_48_6a + EBU R 48: 6a + 13 + false + + + Layout_EBU_R_48_6b + EBU R 48: 6b + 14 + false + + + Layout_EBU_R_48_7a + EBU R 48: 7a + 15 + false + + + Layout_EBU_R_48_7b + EBU R 48: 7b + 16 + false + + + Layout_EBU_R_48_8a + EBU R 48: 8a + 17 + false + + + Layout_EBU_R_48_8b + EBU R 48: 8b + 18 + false + + + Layout_EBU_R_48_8c + EBU R 48: 8c + 19 + false + + + Layout_EBU_R_48_9a + EBU R 48: 9a + 20 + false + + + Layout_EBU_R_48_9b + EBU R 48: 9b + 21 + false + + + Layout_EBU_R_48_10a + EBU R 48: 10a + 22 + false + + + Layout_EBU_R_48_11a + EBU R 48: 11a + 23 + false + + + Layout_EBU_R_48_11b + EBU R 48: 11b + 24 + false + + + Layout_EBU_R_48_11c + EBU R 48: 11c + 25 + false + + + Layout_EBU_R_123_2a + EBU R 123: 2a + 26 + false + + + Layout_EBU_R_123_4a + EBU R 123: 4a + 27 + false + + + Layout_EBU_R_123_4b + EBU R 123: 4b + 28 + false + + + Layout_EBU_R_123_4c + EBU R 123: 4c + 29 + false + + + Layout_EBU_R_123_8a + EBU R 123: 8a + 30 + false + + + Layout_EBU_R_123_8b + EBU R 123: 8b + 31 + false + + + Layout_EBU_R_123_8c + EBU R 123: 8c + 32 + false + + + Layout_EBU_R_123_8d + EBU R 123: 8d + 33 + false + + + Layout_EBU_R_123_8e + EBU R 123: 8e + 34 + false + + + Layout_EBU_R_123_8f + EBU R 123: 8f + 35 + false + + + Layout_EBU_R_123_8g + EBU R 123: 8g + 36 + false + + + Layout_EBU_R_123_8h + EBU R 123: 8h + 37 + false + + + Layout_EBU_R_123_8i + EBU R 123: 8i + 38 + false + + + Layout_EBU_R_123_12a + EBU R 123: 12a + 39 + false + + + Layout_EBU_R_123_12b + EBU R 123: 12b + 40 + false + + + Layout_EBU_R_123_12c + EBU R 123: 12c + 41 + false + + + Layout_EBU_R_123_12d + EBU R 123: 12d + 42 + false + + + Layout_EBU_R_123_12e + EBU R 123: 12e + 43 + false + + + Layout_EBU_R_123_12f + EBU R 123: 12f + 44 + false + + + Layout_EBU_R_123_12g + EBU R 123: 12g + 45 + false + + + Layout_EBU_R_123_12h + EBU R 123: 12h + 46 + false + + + Layout_EBU_R_123_16a + EBU R 123: 16a + 47 + false + + + Layout_EBU_R_123_16b + EBU R 123: 16b + 48 + false + + + Layout_EBU_R_123_16c + EBU R 123: 16c + 49 + false + + + Layout_EBU_R_123_16d + EBU R 123: 16d + 50 + false + + + Layout_EBU_R_123_16e + EBU R 123: 16e + 51 + false + + + Layout_EBU_R_123_16f + EBU R 123: 16f + 52 + false + + + Layout_Undefined + Undefined + 255 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 + ISO_639_2_Language_Code +
                urn:smpte:ul:060e2b34.01040101.0d010701.0b010300
              + LEAF + ISO-639-2 Language Code + A three-letter (alpha-3) ISO 639-2 code to represent a language + Be aware that ISO 639-2 defines: both bibliographic and terminologic language codes; that language codes are case insensitive + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Rename + urn:smpte:ul:060e2b34.01040101.01100200.00000000 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + AS_12 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c000000
              + NODE + AS-12 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + DMS_AS_12 +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c010000
              + NODE + DMS_AS_12 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 + AS_12_DescriptiveObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d010701.0c010100
              + LEAF + AS_12_DescriptiveObjectStrongReference + AMWA Application Specification AS-12 Commercial Delivery + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d010701.0c010200 +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/rules + AMWARulesBasedSpecifications +
                urn:smpte:ul:060e2b34.01040101.0d010800.00000000
              + NODE + AMWA Rules Based Specifications + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/rules + RulesBasedSpecificationsVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d010801.00000000
              + NODE + Rules Based Specifications Version 1 + false +
              + + Types + http://www.ebu.ch/metadata/smpte/class13/type + EBU_UER +
                urn:smpte:ul:060e2b34.01040101.0d020000.00000000
              + NODE + EBU/UER + Metadata registered by the EBU for public use + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + EBU_Schemes +
                urn:smpte:ul:060e2b34.01040101.0d020100.00000000
              + NODE + EBU Schemes + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + EBUCore +
                urn:smpte:ul:060e2b34.01040101.0d020101.00000000
              + NODE + EBUCore + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + StrongReferences +
                urn:smpte:ul:060e2b34.01040101.0d020101.01000000
              + NODE + StrongReferences + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coreMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01010000
              + LEAF + coreMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020102.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataSchemaInformationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01020000
              + LEAF + metadataSchemaInformationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020103.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + versionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01030000
              + LEAF + versionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationHistoryStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01040000
              + LEAF + publicationHistoryStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + planningStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01050000
              + LEAF + planningStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01060000
              + LEAF + typeGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01070000
              + LEAF + formatGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + statusGroupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01080000
              + LEAF + statusGroupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012d.03000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + spatialStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01090000
              + LEAF + spatialStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020114.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + temporalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010a0000
              + LEAF + temporalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020117.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coordinatesStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010b0000
              + LEAF + coordinatesStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020116.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coverageStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010c0000
              + LEAF + coverageStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020113.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationMediumStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010d0000
              + LEAF + publicationMediumStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationChannelStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010e0000
              + LEAF + publicationChannelStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationServiceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.010f0000
              + LEAF + publicationServiceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020120.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + departmentStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01100000
              + LEAF + departmentStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020124.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + addressStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01110000
              + LEAF + addressStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020126.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rationalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01120000
              + LEAF + rationalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + mediumStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01130000
              + LEAF + mediumStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + packageInfoStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01140000
              + LEAF + packageInfoStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + codecStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01150000
              + LEAF + codecStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dimensionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01160000
              + LEAF + dimensionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + hashStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01170000
              + LEAF + hashStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020146.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01180000
              + LEAF + partMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020144.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + loudnessMetadataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01190000
              + LEAF + loudnessMetadataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioMXFLookupStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011a0000
              + LEAF + audioMXFLookupStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020156.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locatorStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011b0000
              + LEAF + locatorStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020147.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + containerFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011c0000
              + LEAF + containerFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020148.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011d0000
              + LEAF + audioBlockMatrixStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020157.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + identifierStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011e0000
              + LEAF + identifierStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020104.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + titleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.011f0000
              + LEAF + titleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020105.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + alternativeTitleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01200000
              + LEAF + alternativeTitleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020106.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + entityStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01210000
              + LEAF + entityStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020121.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01220000
              + LEAF + subjectStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020108.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + descriptionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01230000
              + LEAF + descriptionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020109.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01240000
              + LEAF + dateStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01250000
              + LEAF + typeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + languageStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01260000
              + LEAF + languageStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020112.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rightsStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01270000
              + LEAF + rightsStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020119.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ratingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01280000
              + LEAF + ratingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + customRelationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01290000
              + LEAF + customRelationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012b.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicRelationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012a0000
              + LEAF + basicRelationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012b.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012b0000
              + LEAF + formatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020130.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012c0000
              + LEAF + partStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020143.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + textualAnnotationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012d0000
              + LEAF + textualAnnotationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012e0000
              + LEAF + dateTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + objectTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.012f0000
              + LEAF + objectTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02010f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + genreStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01300000
              + LEAF + genreStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020110.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + targetAudienceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01310000
              + LEAF + targetAudienceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020111.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + regionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01320000
              + LEAF + regionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020127.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01330000
              + LEAF + locationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020115.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + periodOfTimeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01340000
              + LEAF + periodOfTimeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020118.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + contactStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01350000
              + LEAF + contactStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020122.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationEventStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01360000
              + LEAF + publicationEventStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02011c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + organizationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01370000
              + LEAF + organizationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020123.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + roleStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01380000
              + LEAF + roleStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020129.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicLinkStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01390000
              + LEAF + basicLinkStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + compoundNameStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013a0000
              + LEAF + compoundNameStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020128.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + detailsStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013b0000
              + LEAF + detailsStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020125.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + countryTypeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013c0000
              + LEAF + countryTypeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02012a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013e0000
              + LEAF + audioFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020133.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.013f0000
              + LEAF + videoFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020131.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + imageFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01400000
              + LEAF + imageFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020132.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dataFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01410000
              + LEAF + dataFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020135.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + signingFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01420000
              + LEAF + signingFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020139.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeStringStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01430000
              + LEAF + technicalAttributeStringStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.01000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt8StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01440000
              + LEAF + technicalAttributeInt8StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.02000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt16StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01450000
              + LEAF + technicalAttributeInt16StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.03000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt32StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01460000
              + LEAF + technicalAttributeInt32StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.04000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt64StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01470000
              + LEAF + technicalAttributeInt64StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.05000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt8StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01480000
              + LEAF + technicalAttributeUInt8StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.06000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt16StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01490000
              + LEAF + technicalAttributeUInt16StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.07000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt32StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014a0000
              + LEAF + technicalAttributeUInt32StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.08000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt64StrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014b0000
              + LEAF + technicalAttributeUInt64StrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.09000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeFloatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014c0000
              + LEAF + technicalAttributeFloatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0a000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeRationalStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014d0000
              + LEAF + technicalAttributeRationalStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0b000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeAnyURIStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014e0000
              + LEAF + technicalAttributeAnyURIStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0c000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeBooleanStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.014f0000
              + LEAF + technicalAttributeBooleanStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02013a.0d000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatExtendedStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01500000
              + LEAF + audioFormatExtendedStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020149.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + aspectRatioStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01510000
              + LEAF + aspectRatioStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020140.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + heightStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01520000
              + LEAF + heightStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020141.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + widthStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01530000
              + LEAF + widthStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020142.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + trackStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01540000
              + LEAF + trackStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020134.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + captioningStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01550000
              + LEAF + captioningStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020136.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subtitlingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01560000
              + LEAF + subtitlingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020137.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ancillaryDataStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01570000
              + LEAF + ancillaryDataStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020138.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioProgrammeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01580000
              + LEAF + audioProgrammeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01590000
              + LEAF + audioContentStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015a0000
              + LEAF + audioObjectStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioPackFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015b0000
              + LEAF + audioPackFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioChannelFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015c0000
              + LEAF + audioChannelFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020150.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015d0000
              + LEAF + audioBlockFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020151.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioStreamFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015e0000
              + LEAF + audioStreamFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020153.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.015f0000
              + LEAF + audioTrackFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020154.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackUIDStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01600000
              + LEAF + audioTrackUIDStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020155.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + IDRefStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01610000
              + LEAF + IDRefStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02014b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixCoefficientStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01620000
              + LEAF + audioBlockMatrixCoefficientStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020152.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01630000
              + LEAF + timeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020158.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoNoiseFilterStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01640000
              + LEAF + videoNoiseFilterStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01650000
              + LEAF + metadataFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020159.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timecodeFormatStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01660000
              + LEAF + timecodeFormatStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audienceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01670000
              + LEAF + audienceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + eventStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01680000
              + LEAF + eventStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016c.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + awardStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01690000
              + LEAF + awardStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016d.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + affiliationStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016a0000
              + LEAF + affiliationStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016b0000
              + LEAF + filterStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015e.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016c0000
              + LEAF + referenceScreenStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020160.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentDialogueStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016d0000
              + LEAF + audioContentDialogueStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020163.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectInteractionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016e0000
              + LEAF + audioObjectInteractionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020164.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockDivergenceStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.016f0000
              + LEAF + audioBlockObjectDivergenceStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020168.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneExclusionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01700000
              + LEAF + audioBlockZoneExclusionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020169.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockPositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01710000
              + LEAF + audioBlockPositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020167.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockJumpPositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01720000
              + LEAF + audioBlockJumpPositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016b.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterSettingStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01730000
              + LEAF + filterSettingStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02015f.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenCentrePositionStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01740000
              + LEAF + referenceScreenCentrePositionStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020161.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + referenceScreenWidthStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01750000
              + LEAF + referenceScreenWidthStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020162.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + gainInteractionRangeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01760000
              + LEAF + gainInteractionRangeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020165.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + positionInteractionRangeStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01770000
              + LEAF + positionInteractionRangeStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d020166.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneStrongReference +
                urn:smpte:ul:060e2b34.01040101.0d020101.01780000
              + LEAF + audioBlockZoneStrongReference + EBU Tech 3293 + false + UnknownContext + StrongReference + urn:smpte:ul:060e2b34.027f0101.0d02016a.00000000 +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + WeakReferences +
                urn:smpte:ul:060e2b34.01040101.0d020101.02000000
              + NODE + WeakReferences + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + StrongReferenceSets +
                urn:smpte:ul:060e2b34.01040101.0d020101.03000000
              + NODE + StrongReferenceSets + EBU Tech 3293 + false +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + identifierStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03010000
              + LEAF + identifierStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.011e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + titleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03020000
              + LEAF + titleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.011f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + alternativeTitleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03030000
              + LEAF + alternativeTitleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01200000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + entityStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03040000
              + LEAF + entityStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01210000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03050000
              + LEAF + subjectStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01220000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + descriptionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03060000
              + LEAF + descriptionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01230000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03070000
              + LEAF + dateStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01240000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + typeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03080000
              + LEAF + typeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01250000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + languageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03090000
              + LEAF + languageStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01260000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + coverageStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030a0000
              + LEAF + coverageStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.010c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + rightsStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030b0000
              + LEAF + rightsStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01270000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ratingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030c0000
              + LEAF + ratingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01280000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + customRelationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030d0000
              + LEAF + customRelationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01290000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicRelationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030e0000
              + LEAF + basicRelationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + formatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.030f0000
              + LEAF + formatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + partStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03100000
              + LEAF + partStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + textualAnnotationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03110000
              + LEAF + textualAnnotationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dateTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03120000
              + LEAF + dateTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + objectTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03130000
              + LEAF + objectTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.012f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + genreStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03140000
              + LEAF + genreStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01300000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + targetAudienceStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03150000
              + LEAF + targetAudienceStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01310000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + regionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03160000
              + LEAF + regionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01320000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + locationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03170000
              + LEAF + locationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01330000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + periodOfTimeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03180000
              + LEAF + periodOfTimeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01340000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + contactStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03190000
              + LEAF + contactStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01350000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + publicationEventStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031a0000
              + LEAF + publicationEventStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01360000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + organizationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031b0000
              + LEAF + organizationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01370000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + roleStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031c0000
              + LEAF + roleStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01380000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + basicLinkStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031d0000
              + LEAF + basicLinkStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01390000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + compoundNameStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031e0000
              + LEAF + compoundNameStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + detailsStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.031f0000
              + LEAF + detailsStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + countryTypeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03200000
              + LEAF + countryTypeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03220000
              + LEAF + audioFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + videoFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03230000
              + LEAF + videoFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.013f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + imageFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03240000
              + LEAF + imageFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01400000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + dataFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03250000
              + LEAF + dataFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01410000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + signingFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03260000
              + LEAF + signingFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01420000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeStringStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03270000
              + LEAF + technicalAttributeStringStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01430000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt8StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03280000
              + LEAF + technicalAttributeInt8StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01440000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt16StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03290000
              + LEAF + technicalAttributeInt16StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01450000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt32StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032a0000
              + LEAF + technicalAttributeInt32StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01460000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeInt64StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032b0000
              + LEAF + technicalAttributeInt64StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01470000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt8StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032c0000
              + LEAF + technicalAttributeUInt8StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01480000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt16StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032d0000
              + LEAF + technicalAttributeUInt16StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01490000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt32StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032e0000
              + LEAF + technicalAttributeUInt32StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeUInt64StrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.032f0000
              + LEAF + technicalAttributeUInt64StrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeFloatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03300000
              + LEAF + technicalAttributeFloatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeRationalStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03310000
              + LEAF + technicalAttributeRationalStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeAnyURIStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03320000
              + LEAF + technicalAttributeAnyURIStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + technicalAttributeBooleanStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03330000
              + LEAF + technicalAttributeBooleanStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.014f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioFormatExtendedStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03340000
              + LEAF + audioFormatExtendedStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01500000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + aspectRatioStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03350000
              + LEAF + aspectRatioStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01510000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + heightStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03360000
              + LEAF + heightStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01520000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + widthStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03370000
              + LEAF + widthStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01530000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + trackStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03380000
              + LEAF + trackStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01540000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + captioningStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03390000
              + LEAF + captioningStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01550000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + subtitlingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033a0000
              + LEAF + subtitlingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01560000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + ancillaryDataStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033b0000
              + LEAF + ancillaryDataStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01570000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioProgrammeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033c0000
              + LEAF + audioProgrammeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01580000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioContentStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033d0000
              + LEAF + audioContentStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01590000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033e0000
              + LEAF + audioObjectStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioPackFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.033f0000
              + LEAF + audioPackFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioChannelFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03400000
              + LEAF + audioChannelFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015c0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03410000
              + LEAF + audioBlockFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015d0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioStreamFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03420000
              + LEAF + audioStreamFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03430000
              + LEAF + audioTrackFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.015f0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioTrackUIDStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03440000
              + LEAF + audioTrackUIDStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01600000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + IDRefStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03450000
              + LEAF + IDRefStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01610000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockMatrixCoefficientStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03460000
              + LEAF + audioBlockMatrixCoefficientStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01620000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03470000
              + LEAF + timeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01630000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + metadataFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03480000
              + LEAF + metadataFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01650000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + timecodeFormatStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03490000
              + LEAF + timecodeFormatStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01660000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audienceStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034a0000
              + LEAF + audienceStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01670000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + eventStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034b0000
              + LEAF + eventStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01680000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + awardStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034c0000
              + LEAF + awardStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01690000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + affiliationStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034d0000
              + LEAF + affiliationStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016a0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + mediumStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034e0000
              + LEAF + mediumStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01130000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.034f0000
              + LEAF + filterStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016b0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioObjectInteractionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03500000
              + LEAF + audioObjectInteractionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.016e0000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockPositionStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03510000
              + LEAF + audioBlockPositionStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01710000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + filterSettingStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03520000
              + LEAF + filterSettingStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01730000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + gainInteractionRangeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03530000
              + LEAF + gainInteractionRangeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01760000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + positionInteractionRangeStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03540000
              + LEAF + positionInteractionRangeStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01770000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + audioBlockZoneStrongReferenceSet +
                urn:smpte:ul:060e2b34.01040101.0d020101.03550000
              + LEAF + audioBlockZoneStrongReferenceSet + EBU Tech 3293 + false + UnknownContext + Set + 0 + urn:smpte:ul:060e2b34.01040101.0d020101.01780000 + isIdentified +
              + + Types + http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type + WeakReferenceSets +
                urn:smpte:ul:060e2b34.01040101.0d020101.04000000
              + NODE + WeakReferenceSets + EBU Tech 3293 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/3 + Pro_MPEGForum +
                urn:smpte:ul:060e2b34.01040101.0d030000.00000000
              + NODE + Pro-MPEG Forum + Metadata registered by the Pro-MPEG Forum for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4 + BBC +
                urn:smpte:ul:060e2b34.01040101.0d040000.00000000
              + NODE + BBC + Metadata registered by the British Broadcasting Corporation for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + ArchivePreservationProject +
                urn:smpte:ul:060e2b34.01040101.0d040100.00000000
              + NODE + Archive Preservation Project + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + ArchivePreservationProjectVersion1 +
                urn:smpte:ul:060e2b34.01040101.0d040101.00000000
              + NODE + Archive Preservation Project Version 1 + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedTypes +
                urn:smpte:ul:060e2b34.01040101.0d040101.01000000
              + NODE + APP Enumerated Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedIntegerTypes +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010000
              + NODE + APP Enumerated Integer Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_EnumeratedUInt16Types +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010100
              + NODE + APP Enumerated UInt16 Types + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/4/archive + APP_TimecodeTypeEnum +
                urn:smpte:ul:060e2b34.01040101.0d040101.01010101
              + LEAF + APP Timecode Type Enum + BBC Research White Paper WHP 233 Archive Preservation File Format: DigiBeta System + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010200.00000000 + + + TC_VITC + TC VITC + 1 + false + + + TC_LTC + TC LTC + 2 + false + + + TC_Both + TC Both + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/5 + IRT +
                urn:smpte:ul:060e2b34.01040101.0d050000.00000000
              + NODE + IRT + Metadata registered by the Institut für Rundfunktechnik GmbH for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/6 + ARIB +
                urn:smpte:ul:060e2b34.01040101.0d060000.00000000
              + NODE + ARIB + Metadata registered by the Association of Radio Industries and Businesses (Japan) for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/7 + AMIA +
                urn:smpte:ul:060e2b34.01040101.0d070000.00000000
              + NODE + AMIA + Metadata registered by the Association of Moving Image Archivists for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/8 + PBS +
                urn:smpte:ul:060e2b34.01040101.0d080000.00000000
              + NODE + PBS + Metadata registered by the Public Broadcasting Service for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/9 + ASC +
                urn:smpte:ul:060e2b34.01040101.0d090000.00000000
              + NODE + ASC + Metadata registered by the American Society of Cinematographers for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/10 + AES +
                urn:smpte:ul:060e2b34.01040101.0d0a0000.00000000
              + NODE + AES + Metadata registered by the Audio Engineering Society for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/11 + DutchGuild +
                urn:smpte:ul:060e2b34.01040101.0d0b0000.00000000
              + NODE + Dutch Guild + Metadata registered by the Dutch Guild for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12 + DPP +
                urn:smpte:ul:060e2b34.01040101.0d0c0000.00000000
              + NODE + DPP + Metadata registered by the UK Digital Production Partnership for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12 + DPP_Schemes +
                urn:smpte:ul:060e2b34.01040101.0d0c0100.00000000
              + NODE + DPP Schemes + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + DM_AS_11_UKDPP +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.00000000
              + NODE + AS-11 UKDPP + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_PSE_Pass_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.01000000
              + LEAF + PSE Pass Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + PSE_Yes + Yes + 0 + false + + + PSE_No + No + 1 + false + + + PSE_Not_tested + Not tested + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Signing_Present_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.02000000
              + LEAF + Signing Present Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Signing_Yes + Yes + 0 + false + + + Signing_No + No + 1 + false + + + Signing_Signer_only + Signer only + 2 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_3D_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.03000000
              + LEAF + 3D Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + ThreeD_Side_by_side + Side by side + 0 + false + + + ThreeD_Dual + Dual + 1 + false + + + ThreeD_Left_eye_only + Left eye only + 2 + false + + + ThreeD_Right_eye_only + Right eye only + 3 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Audio_Loudness_Standard_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.04000000
              + LEAF + Audio Loudness Standard Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Loudness_None + None + 0 + false + + + Loudness_EBU_R_128 + EBU R 128 + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Audio_Description_Type_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.05000000
              + LEAF + Audio Description Type Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + AD_Control_data_Narration + Control data / Narration + 0 + false + + + AD_Mix + AD Mix + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/12/as11 + UKDPP_Sign_Language_Enum +
                urn:smpte:ul:060e2b34.01040101.0d0c0101.06000000
              + LEAF + Sign Language Enum + AMWA Application Specification AS-11 MXF Program Contribution + false + UnknownContext + Enumeration + urn:smpte:ul:060e2b34.01040101.01010100.00000000 + + + Sign_Language_BSL_British_Sign_Language + BSL (British Sign Language) + 0 + false + + + Sign_Language_BSL_Makaton + BSL (Makaton) + 1 + false + + +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/13/13 + Ad_ID +
                urn:smpte:ul:060e2b34.01040101.0d0d0000.00000000
              + NODE + Ad-ID + Metadata registered by Ad-ID, LLC for public use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14 + OrganizationallyRegisteredasPrivate +
                urn:smpte:ul:060e2b34.01040101.0e000000.00000000
              + NODE + Organizationally Registered as Private + Organizationally Registered as Private + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/1 + MISBSystems +
                urn:smpte:ul:060e2b34.01040101.0e010000.00000000
              + NODE + MISB Systems + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for Systems + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/2 + ASPA +
                urn:smpte:ul:060e2b34.01040101.0e020000.00000000
              + NODE + ASPA + Unclassified metadata registered by MISB (Motion Imagery Standards Board) for ASPA + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/3 + MISBClassified +
                urn:smpte:ul:060e2b34.01040101.0e030000.00000000
              + NODE + MISB Classified + Classified metadata registered by MISB (Motion Imagery Standards Board) for Systems and ASPA + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/4 + AvidTechnologyInc +
                urn:smpte:ul:060e2b34.01040101.0e040000.00000000
              + NODE + Avid Technology, Inc. + Metadata registered by Avid Technology, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/5 + CNN +
                urn:smpte:ul:060e2b34.01040101.0e050000.00000000
              + NODE + CNN + Metadata registered by CNN for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/6 + SonyCorporation +
                urn:smpte:ul:060e2b34.01040101.0e060000.00000000
              + NODE + Sony Corporation + Metadata registered by Sony Corporation for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/7 + IdeasUnlimitedTV +
                urn:smpte:ul:060e2b34.01040101.0e070000.00000000
              + NODE + IdeasUnlimited.TV + Metadata registered by IdeasUnlimited.TV for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/8 + IPVLtd +
                urn:smpte:ul:060e2b34.01040101.0e080000.00000000
              + NODE + IPV Ltd + Metadata registered by IPV Ltd for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/9 + DolbyLaboratories_Inc +
                urn:smpte:ul:060e2b34.01040101.0e090000.00000000
              + NODE + Dolby Laboratories Inc. + Metadata registered by Dolby Laboratories Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/10 + Snell_and_Wilcox +
                urn:smpte:ul:060e2b34.01040101.0e0a0000.00000000
              + NODE + Snell & Wilcox + Metadata registered by Snell & Wilcox for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/11 + OmneonVideoNetworks +
                urn:smpte:ul:060e2b34.01040101.0e0b0000.00000000
              + NODE + Omneon Video Networks + Metadata registered by Omneon Video Networks for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/12 + AscentMediaGroupInc +
                urn:smpte:ul:060e2b34.01040101.0e0c0000.00000000
              + NODE + Ascent Media Group, Inc. + Metadata registered by Ascent Media Group, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/13 + QuantelLtd +
                urn:smpte:ul:060e2b34.01040101.0e0d0000.00000000
              + NODE + Quantel Ltd + Metadata registered by Quantel Ltd for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/14 + Panasonic +
                urn:smpte:ul:060e2b34.01040101.0e0e0000.00000000
              + NODE + Panasonic + Metadata registered by Panasonic for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/15 + GrassValleyInc +
                urn:smpte:ul:060e2b34.01040101.0e0f0000.00000000
              + NODE + Grass Valley, Inc. + Metadata registered by Grass Valley, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/16 + DoremiLabsInc +
                urn:smpte:ul:060e2b34.01040101.0e100000.00000000
              + NODE + Doremi Labs, Inc. + Metadata registered by Doremi Labs, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/17 + EVSBroadcastEquipment +
                urn:smpte:ul:060e2b34.01040101.0e110000.00000000
              + NODE + EVS Broadcast Equipment + Metadata registered by EVS Broadcast Equipment for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/18 + TurnerBroadcastingSystemInc +
                urn:smpte:ul:060e2b34.01040101.0e120000.00000000
              + NODE + Turner Broadcasting System, Inc. + Metadata registered by Turner Broadcasting System, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/19 + NLTechnologyLLC +
                urn:smpte:ul:060e2b34.01040101.0e130000.00000000
              + NODE + NL Technology, LLC + Metadata registered by NL Technology, LLC for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/20 + HarrisCorporation +
                urn:smpte:ul:060e2b34.01040101.0e140000.00000000
              + NODE + Harris Corporation + Metadata registered by Harris Corporation for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/21 + CanonInc +
                urn:smpte:ul:060e2b34.01040101.0e150000.00000000
              + NODE + Canon, Inc. + Metadata registered by Canon, Inc for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/22 + D_BOXTechnologies +
                urn:smpte:ul:060e2b34.01040101.0e160000.00000000
              + NODE + D-BOX Technologies + Metadata registered by D-BOX Technologies for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/23 + ARRI +
                urn:smpte:ul:060e2b34.01040101.0e170000.00000000
              + NODE + ARRI + Metadata registered by Arnold & Richter Cine Technik GmbH for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/24 + JVC +
                urn:smpte:ul:060e2b34.01040101.0e180000.00000000
              + NODE + JVC + Metadata registered by Victor Company of Japan, Limited (JVC) for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/25 + ThreealityTechnica +
                urn:smpte:ul:060e2b34.01040101.0e190000.00000000
              + NODE + 3ality Technica + Metadata registered by 3ality Technica for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/26 + NHK +
                urn:smpte:ul:060e2b34.01040101.0e1a0000.00000000
              + NODE + NHK + Metadata registered by Nippon Hoso Kyokai (NHK) for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/27 + HBO +
                urn:smpte:ul:060e2b34.01040101.0e1b0000.00000000
              + NODE + HBO + Metadata registered by Home Box Office, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/29 + DTS +
                urn:smpte:ul:060e2b34.01040101.0e1d0000.00000000
              + NODE + DTS, Inc. + Metadata registered by DTS, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/30 + FLIR +
                urn:smpte:ul:060e2b34.01040101.0e1e0000.00000000
              + NODE + FLIR Systems, Inc. + Metadata registered by FLIR Systems, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/31 + Barco +
                urn:smpte:ul:060e2b34.01040101.0e1f0000.00000000
              + NODE + Barco + Metadata registered by Barco, Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/14/32 + Apple_Inc +
                urn:smpte:ul:060e2b34.01040101.0e200000.00000000
              + NODE + Apple Inc. + Metadata registered by Apple Inc. for private use + false +
              + + Types + http://www.smpte-ra.org/reg/2003/2012/15 + Experimental +
                urn:smpte:ul:060e2b34.01040101.0f000000.00000000
              + NODE + Experimental + For use in multimedia research or other limited access, experimental environments + false +
              +
              +
              diff --git a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml similarity index 99% rename from regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml rename to src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml index 76419df..cd6b49b 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml +++ b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-element.xml @@ -1,5 +1,5 @@ - + urn:uuid:6294402a-0a18-5f18-7f73-7f60096a9fbc http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/element diff --git a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml similarity index 99% rename from regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml rename to src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml index fae7eb8..4e9e955 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml +++ b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-group.xml @@ -1,5 +1,5 @@ - + urn:uuid:472f6af2-a546-5f6c-7f20-2f06cb487ec3 http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/group diff --git a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml similarity index 99% rename from regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml rename to src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml index 58d0715..f395222 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml +++ b/src/test/resources/regxml-dicts/www-ebu-ch-metadata-schemas-ebucore-smpte-class13-type.xml @@ -1,5 +1,5 @@ - + urn:uuid:b942822e-b4ec-5f1c-7fb4-56421bb1ec24 http://www.ebu.ch/metadata/schemas/ebucore/smpte/class13/type diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml similarity index 97% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml index 45f8868..6290b3d 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:7102668d-bea0-5f18-7fe7-2bbea796a7ae http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml similarity index 84% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml index 761b2a8..8eb4e7f 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-1-amwa-as12.xml @@ -1,5 +1,5 @@ - + urn:uuid:bcb13510-a6d6-5fad-7fdb-70ceb9eec540 http://www.smpte-ra.org/reg/2003/2012/13/1/amwa/as12 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml similarity index 95% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml index 2b69a86..21ff7fe 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-12-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:5b0e02d6-86cc-5f56-7f0f-0edb3cb926b3 http://www.smpte-ra.org/reg/2003/2012/13/12/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml similarity index 85% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml index 17f6c03..d91ce8e 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012-13-4-archive.xml @@ -1,5 +1,5 @@ - + urn:uuid:3d7da71b-8134-5f09-7fcf-b94e42e61018 http://www.smpte-ra.org/reg/2003/2012/13/4/archive diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml similarity index 98% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml index a440e8e..a03ab84 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-2003-2012.xml @@ -1,5 +1,5 @@ - + urn:uuid:eb4c6bf8-c197-5ffe-7f01-2123ea606f17 http://www.smpte-ra.org/reg/2003/2012 @@ -127,6 +127,18 @@ 4 true + +urn:smpte:ul:060e2b34.01040101.01020200.00000000 +Double +Double +8 + + +urn:smpte:ul:060e2b34.01040101.01020300.00000000 +HalfFloat +HalfFloat +2 + urn:smpte:ul:060e2b34.01040101.01030100.00000000 AUID @@ -1019,7 +1031,7 @@ urn:smpte:ul:060e2b34.01040101.02020102.00000000 TransferCharacteristicType -TransferCharacteristicType +Transfer Characteristic Type urn:smpte:ul:060e2b34.01040101.02020103.00000000 @@ -1046,6 +1058,11 @@ AutoExposureModeType AutoExposureModeType + +urn:smpte:ul:060e2b34.01040101.02020108.00000000 +ViewingEnvironmentType +Viewing Environment Type + urn:smpte:ul:060e2b34.01040101.02020201.00000000 ContractTypeCode @@ -1362,6 +1379,12 @@ urn:smpte:ul:060e2b34.01040101.01010200.00000000 +urn:smpte:ul:060e2b34.01040101.04011300.00000000 +HalfFloatArray +HalfFloatArray +urn:smpte:ul:060e2b34.01040101.01020300.00000000 + + urn:smpte:ul:060e2b34.01040101.04011400.00000000 VC2WaveletArray VC2 Wavelet Array diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml similarity index 97% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml index 2b7be82..fdf1166 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-aaf.xml @@ -1,5 +1,5 @@ - + urn:uuid:facc8b86-8a02-5fae-7fe6-40ca8c2923ad http://www.smpte-ra.org/reg/335/2012/13/1/aaf diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml similarity index 97% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml index d8c89ad..6f1df04 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as10.xml @@ -1,5 +1,5 @@ - + urn:uuid:b05b6cfc-4f29-5f75-7f3f-5d4b85f7f50b http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as10 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml similarity index 98% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml index 0d96b33..1f0bd2d 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:1172125c-89ec-5f40-7f1f-265d6a04cab3 http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml similarity index 93% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml index 20e4ba9..862dfd4 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-as12.xml @@ -1,5 +1,5 @@ - + urn:uuid:3ebae008-c1b4-5f8c-7ff6-371ba526bb9c http://www.smpte-ra.org/reg/335/2012/13/1/amwa/as12 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml similarity index 89% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml index 173c08c..9789a46 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-1-amwa-rules.xml @@ -1,5 +1,5 @@ - + urn:uuid:297dd9a2-22b4-5f8f-7f41-aef8ebe31d0d http://www.smpte-ra.org/reg/335/2012/13/1/amwa/rules diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml similarity index 99% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml index 38251a7..b916656 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-12-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:6465ce5e-bca7-5faf-7f1e-9a5990861c8b http://www.smpte-ra.org/reg/335/2012/13/12/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml similarity index 97% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml index 0900108..0a25d98 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-13.xml @@ -1,5 +1,5 @@ - + urn:uuid:95b4bc3d-5624-5fd8-7f82-a2ef057e7b8b http://www.smpte-ra.org/reg/335/2012/13/13 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml similarity index 99% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml index b6495a3..d5faa5d 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-13-4-archive.xml @@ -1,5 +1,5 @@ - + urn:uuid:27b78e4c-8645-5f1d-7fd6-3a4c4a85e9e3 http://www.smpte-ra.org/reg/335/2012/13/4/archive diff --git a/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-14-9.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-14-9.xml new file mode 100644 index 0000000..e83829c --- /dev/null +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012-14-9.xml @@ -0,0 +1,62 @@ + + +urn:uuid:6924fe2d-4f82-5f5c-7fc8-eb8a9017a91c +http://www.smpte-ra.org/reg/335/2012/14/9 + + +urn:smpte:ul:060e2b34.01010105.0e090506.00000000 +ImmersiveAudioVersion +Immersive Audio Coder version used to create the source Bitstream +Immersive Audio Version +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + + +urn:smpte:ul:060e2b34.01010105.0e090507.00000000 +MaxChannelCount +Maximum number of audio channels in the bitstream +Max Channel Count +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + + +urn:smpte:ul:060e2b34.01010105.0e090508.00000000 +MaxObjectCount +Maximum number of audio objects in the bitstream +Max Object Count +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + + +urn:smpte:ul:060e2b34.01010105.0e090509.00000000 +ImmersiveAudioID +UUID of the Immersive Audio project +Immersive Audio ID +urn:smpte:ul:060e2b34.01040101.01030300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + + +urn:smpte:ul:060e2b34.01010105.0e09050a.00000000 +FirstFrame +Specifies an edit unit for alignment with the FFOA of the picture track +First Frame +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + + + diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml similarity index 86% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml index 12cd90b..fc724f2 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-335-2012.xml @@ -1,9 +1,724 @@ - + urn:uuid:e9ad45b5-abdb-5f16-7ffc-ff560e475a87 http://www.smpte-ra.org/reg/335/2012 +urn:smpte:ul:060e2b34.0101010e.05310101.00000000 +ApplicationIdentifier +Identifying an application and its defining document in the SMPTE ST 2094 suite +Application Identifier +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +false +false +13825 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310102.00000000 +ApplicationVersionNumber +The Application Version of the identified SMPTE ST 2094 application +Application Version Number +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +false +false +13826 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310103.00000000 +BackwardsVersion +The lowest Application Version for which this metadata set is valid +Backwards Version +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13827 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310104.00000000 +TimeIntervalStart +Start point of the portion of image essence for which the metadata set is specified, as an index +Time Interval Start +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +13828 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310105.00000000 +TimeIntervalDuration +Duration of the portion of image essence for which the metadata set is specified, as a count of index positions +Time Interval Duration +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +13829 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310106.00000000 +UpperLeftCorner +Coordinate of the top-left pixel of the Processing Window +Upper Left Corner +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13830 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310107.00000000 +LowerRightCorner +Coordinate of the bottom-right pixel of the Processing Window +Lower Right Corner +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13831 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310108.00000000 +WindowNumber +Identifier of the Processing Window +Window Number +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13832 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310109.00000000 +TargetedSystemDisplayPrimaries +xy chromaticity coordinates of the three primaries of the targeted system display +Targeted System Display Primaries +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13833 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010a.00000000 +TargetedSystemDisplayWhitePointChromaticity +xy chromaticity coordinate of the targeted system display's white point +Targeted System Display White Point Chromaticity +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13834 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010b.00000000 +TargetedSystemDisplayMaximumLuminance +Maximum luminance of the targeted system's display +Targeted System Display Maximum Luminance +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13835 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010c.00000000 +TargetedSystemDisplayMinimumLuminance +Minimum luminance of the targeted system's display +Targeted System Display Minimum Luminance +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13836 +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010d.00000000 +MinimumPqencodedMaxrgb +The lowest PQ-encoded maxRGB value of the reduced pixel set +Minimum PQ-encoded maxRGB +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13837 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010e.00000000 +AveragePqencodedMaxrgb +The average of the PQ-encoded maxRGB values of the reduced pixel set +Average PQ-encoded maxRGB +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13838 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531010f.00000000 +MaximumPqencodedMaxrgb +The highest PQ-encoded maxRGB value of the reduced pixel set +Maximum PQ-encoded maxRGB +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13839 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310110.00000000 +MinimumPqencodedMaxrgbOffset +Offset to be added to Minimum PQ-encoded maxRGB +Minimum PQ-encoded maxRGB Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13840 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310111.00000000 +AveragePqencodedMaxrgbOffset +Offset to be added to Average PQ-encoded maxRGB +Average PQ-encoded maxRGB Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13841 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310112.00000000 +MaximumPqencodedMaxrgbOffset +Offset to be added to Maximum PQ-encoded maxRGB +Maximum PQ-encoded maxRGB Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13842 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310113.00000000 +ToneMappingOffset +Tone Mapping Offset +Tone Mapping Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13843 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310114.00000000 +ToneMappingGain +Tone Mapping Gain +Tone Mapping Gain +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13844 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310115.00000000 +ToneMappingGamma +Tone Mapping Gamma +Tone Mapping Gamma +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13845 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310116.00000000 +ChromaCompensationWeight +Amount of chroma adjustment +Chroma Compensation Weight +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13846 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310117.00000000 +SaturationGain +Amount of saturation adjustment +Saturation Gain +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13847 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310118.00000000 +ToneDetailFactor +Contribution of the detail management function +Tone Detail Factor +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13848 +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310119.00000000 +LuminanceLowerBound +Encoding of a lower bound of luminance +Luminance Lower Bound +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +13849 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011a.00000000 +LuminanceUpperBound +Encoding of an upper bound of luminance +Luminance Upper Bound +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +13850 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011b.00000000 +LuminanceRangeSelector +True indicates inner luminance range +Luminance Range Selector +urn:smpte:ul:060e2b34.01040101.01040100.00000000 +true +false +13851 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011c.00000000 +ChromaticityDiskCenter +Center of the Chromaticity Disk +Chromaticity Disk Center +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13852 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011d.00000000 +ChromaticityDiskRadius +Radius of the Chromaticity Disk +Chromaticity Disk Radius +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13853 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011e.00000000 +ChromaticityAreaSelector +True indicates the area of the Chromaticity Disk +Chromaticity Area Selector +urn:smpte:ul:060e2b34.01040101.01040100.00000000 +true +false +13854 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531011f.00000000 +SaturationGainFunction +Sampled function, mapping a luminance based input value to a saturation scaling factor +Saturation Gain Function +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +false +false +13855 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310120.00000000 +ToneMappingInputSignalWeights +Weights of R, G, B, and Y components +Tone Mapping Input Signal Weights +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +false +false +13856 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310121.00000000 +ToneMappingInputSignalBlackLevelOffset +Used to calculate the gain of the signal as a first step in the Tone Mapping process +Tone Mapping Input Signal Black Level Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13857 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310122.00000000 +ToneMappingInputSignalWhiteLevelOffset +Used to calculate the gain of the signal as a second step in the Tone Mapping process +Tone Mapping Input Signal White Level Offset +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13858 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310123.00000000 +ShadowGainControl +Control for the steepness of the curve in its shadow (darker) region +Shadow Gain Control +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13859 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310124.00000000 +HighlightGainControl +Control for the steepness of the curve in its highlight (brighter) region +Highlight Gain Control +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13860 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310125.00000000 +MidToneWidthAdjustmentFactor +Control for the width of the mid-tone region of the curve +Mid-Tone Width Adjustment Factor +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13861 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310126.00000000 +ToneMappingOutputFineTuningFunction +Sampled function, for tone mapping +Tone Mapping Output Fine Tuning Function +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +false +false +13862 +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310127.00000000 +TargetedSystemDisplaySignalFormat +Enumerator of the signal format of the targeted system display +Targeted System Display Signal Format +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13863 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310128.00000000 +MetadataColorCodingWorkspace +Enumerator of the color components and quantization range +Metadata Color Coding Workspace +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13864 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310129.00000000 +PreMatrixToneMapping1 +Sampled function for first input color component, in units of 1/16 383 +Pre-Matrix Tone Mapping 1 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13865 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012a.00000000 +PreMatrixToneMapping2 +Sampled function for second input color component, in units of 1/16 383 +Pre-Matrix Tone Mapping 2 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13866 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012b.00000000 +PreMatrixToneMapping3 +Sampled function for third input color component, in units of 1/16 383 +Pre-Matrix Tone Mapping 3 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13867 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012c.00000000 +ColorRemappingMatrix +A 3x3 matrix between tone mapping stages +Color Remapping Matrix +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13868 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012d.00000000 +PostMatrixToneMapping1 +Sampled function for first post matrix color component, in units of 1/16 383 +Post-Matrix Tone Mapping 1 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13869 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012e.00000000 +PostMatrixToneMapping2 +Sampled function for second post matrix color component, in units of 1/16 383 +Post-Matrix Tone Mapping 2 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13870 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531012f.00000000 +PostMatrixToneMapping3 +Sampled function for third post matrix color component, in units of 1/16 383 +Post-Matrix Tone Mapping 3 +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13871 +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310130.00000000 +CenterOfEllipse +Center position of the ellipses +Center Of Ellipse +urn:smpte:ul:060e2b34.01040101.04011200.00000000 +true +false +13872 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310131.00000000 +RotationAngle +Clockwise rotation angle with respect to the positive direction of the x-axis of the ellipses +Rotation Angle +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13873 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310132.00000000 +SemiMajorAxisInternalEllipse +Semi-major axis value of the internal ellipse +Semi-Major Axis Internal Ellipse +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +13874 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310133.00000000 +SemiMajorAxisExternalEllipse +Semi-major axis value of the external ellipse +Semi-Major Axis External Ellipse +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +13875 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310134.00000000 +SemiMinorAxisExternalEllipse +Semi-minor axis value of the external ellipse +Semi-Minor Axis External Ellipse +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +true +false +13876 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310135.00000000 +OverlapProcessOption +Enumerator that indicates one of the two methods of combining rendered pixels +Overlap Process Option +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13877 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310136.00000000 +TargetedSystemDisplayActualPeakLuminance +Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. +Targeted System Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.04010100.00000000 +true +false +13878 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310137.00000000 +RowsInTargetedSystemDisplayActualPeakLuminance +Number of rows (M) in the Targeted System Display Actual Peak Luminance array +Rows In Targeted System Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13879 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310138.00000000 +MasteringDisplayActualPeakLuminance +Two-input sampled function representing the normalized actual peak luminance of the mastering display, in units of 1/15. The four most significant bits in each UInt8 are zero. +Mastering Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.04010100.00000000 +true +false +13880 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310139.00000000 +RowsInMasteringDisplayActualPeakLuminance +Number of rows (M) in the Mastering Display Actual Peak Luminance array +Rows In Mastering Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +13881 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013a.00000000 +MaxSCL +Maximum of each component of linearized RGB values +Maximum Scene Color Component Levels +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +false +false +13882 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013b.00000000 +AverageMaxRGB +Average of linearized maxRGB values +Average MaxRGB +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13883 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013c.00000000 +DistributionMaxRGBPercentages +First vector of DistributionMaxRGB with Integer percentage values +Distribution MaxRGB Percentages +urn:smpte:ul:060e2b34.01040101.04010100.00000000 +false +false +13884 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013d.00000000 +DistributionMaxRGBPercentiles +Second vector of DistributionMaxRGB with Linearized maxRGB value at given percentile +Distribution MaxRGB Percentiles +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +false +false +13885 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013e.00000000 +FractionBrightPixels +Fraction of pixels that contains the brightest pixel +Fraction Bright Pixels +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +false +false +13886 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.0531013f.00000000 +KneePoint +Separation point (K_S,K_F) between the linear part and the curved part of the tone mapping function, ordered K_S,K_F +Knee Point +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13887 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310140.00000000 +BezierCurveAnchors +Intermediate anchor parameters, ordered P1 to PN-1 +Bezier Curve Anchors +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +13888 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + +urn:smpte:ul:060e2b34.0101010e.05310141.00000000 +ColorSaturationWeight +Adjusts the color saturation gain +Color Saturation Weight +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +13889 +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 + + urn:smpte:ul:060e2b34.01010101.01011502.00000000 InstanceID Unique ID of an instance @@ -68,6 +783,18 @@ Unique ID of an instance Instance ID urn:smpte:ul:060e2b34.01040101.01030300.00000000 +true +false +15370 +urn:smpte:ul:060e2b34.027f0101.0d010101.02240000 +urn:smpte:ul:060e2b34.01010101.01011502.00000000 + + +urn:smpte:ul:060e2b34.01010101.01011502.00000000 +InstanceID +Unique ID of an instance +Instance ID +urn:smpte:ul:060e2b34.01040101.01030300.00000000 false false 15370 @@ -80,7 +807,7 @@ Unique ID of an instance Instance ID urn:smpte:ul:060e2b34.01040101.01030300.00000000 -false +true false 15370 urn:smpte:ul:060e2b34.027f0101.0d010101.03000000 @@ -1772,7 +2499,7 @@ urn:smpte:ul:060e2b34.01040101.05060e00.00000000 true false -12034 +0 urn:smpte:ul:060e2b34.027f0101.0d010101.01012400 @@ -4395,6 +5122,17 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.01015e00 +urn:smpte:ul:060e2b34.0101010e.04020403.01050000 +MPEGAudioChannelAssignment +UL enumerating the channel assignment in use +MPEG Audio Channel Assignment +urn:smpte:ul:060e2b34.01040101.01030100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01015e00 + + urn:smpte:ul:060e2b34.0101010c.04010604.01000000 VC1InitializationMetadata Encodes the metadata defined in SMPTE 421 annex J for Simple and Main Profile bitstreams. @@ -4593,6 +5331,39 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.01016400 +urn:smpte:ul:060e2b34.0101010e.06010102.04000000 +DisplayType +Indicates the type of display device intended for use with the enclosed XML resource +Display Type +urn:smpte:ul:060e2b34.01040101.01100200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01016400 + + +urn:smpte:ul:060e2b34.0101010e.06010102.05000000 +IntrinsicPictureResolution +Indicates the resolution of the primary picture on which Sub-Picture Ancillary Resources are to be rendered +Intrinsic Picture Resolution +urn:smpte:ul:060e2b34.01040101.01100200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01016400 + + +urn:smpte:ul:060e2b34.0101010e.06010102.06000000 +ZpositionInUse +When non-zero, indicates that one or more subtitle instances in the enclosed XML resource make use of stereoscopic positioning features +Z-Position In Use +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01016400 + + urn:smpte:ul:060e2b34.0101010c.01011513.00000000 AncillaryResourceID A UUID value that identifies the ancillary resource. @@ -4609,7 +5380,7 @@ Class identifier of the immediate superclass defined in an MXF specification that this object extends. Base Class urn:smpte:ul:060e2b34.01040101.01030100.00000000 -false +true false 0 urn:smpte:ul:060e2b34.027f0101.0d010101.01016600 @@ -5111,6 +5882,347 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.01017400 +urn:smpte:ul:060e2b34.0101010e.05310201.00000000 +DMCVTApplicationIdentifier +Identifying an application and its defining document in the SMPTE ST 2094 suite +DMCVT Application Identifier +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310202.00000000 +DMCVTApplicationVersionNumber +The Application Version of the identified SMPTE ST 2094 application +DMCVT Application Version Number +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310203.00000000 +DMCVTBackwardsVersion +The lowest Application Version for which this metadata set is valid +DMCVT Backwards Version +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310209.00000000 +DMCVTTargetedSystemDisplayPrimaries +xy chromaticity coordinates of the three primaries of the targeted system display +DMCVT Targeted System Display Primaries +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.0531020a.00000000 +DMCVTTargetedSystemDisplayWhitePointChromaticity +xy chromaticity coordinate of the targeted system display's white point +DMCVT Targeted System Display White Point Chromaticity +urn:smpte:ul:060e2b34.01040101.04020200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.0531020b.00000000 +DMCVTTargetedSystemDisplayMaximumLuminance +Maximum luminance of the targeted system's display +DMCVT Targeted System Display Maximum Luminance +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.0531020c.00000000 +DMCVTTargetedSystemDisplayMinimumLuminance +Minimum luminance of the targeted system's display +DMCVT Targeted System Display Minimum Luminance +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310227.00000000 +DMCVTTargetedSystemDisplaySignalFormat +Enumerator of the signal format of the targeted system display +DMCVT Targeted System Display Signal Format +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310236.00000000 +DMCVTTargetedSystemDisplayActualPeakLuminance +Two-input sampled function representing the normalized actual peak luminance of the targeted system display, in units of 1/15. The four most significant bits in each UInt8 are zero. +DMCVT Targeted System Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.04010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.05310237.00000000 +DMCVTRowsInTargetedSystemDisplayActualPeakLuminance +Number of rows (M) in the DMCVT Targeted System Display Actual Peak Luminance array +DMCVT Rows In Targeted System Display Actual Peak Luminance +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 + + +urn:smpte:ul:060e2b34.0101010e.04010608.02000000 +VC5BayerComponentPattern +Bayer component order and bit depth of each component (See SMPTE ST 377-1) +VC-5 Bayer Component Pattern +urn:smpte:ul:060e2b34.01040101.04020100.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017600 + + +urn:smpte:ul:060e2b34.0101010e.04010608.03000000 +VC5BayerComponentBlackLevel +Value of each Bayer component that corresponds to black +VC-5 Bayer Component Black Level +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017600 + + +urn:smpte:ul:060e2b34.0101010e.04010608.04000000 +VC5BayerComponentWhiteLevel +Value of each Bayer component that corresponds to the white clipping point +VC-5 Bayer Component White Level +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017600 + + +urn:smpte:ul:060e2b34.0101010e.04010608.01000000 +VC5AlphaSampling +VC-5 AlphaSampling codec state parameter defined in SMPTE ST 2073-4 +VC-5 Alpha Sampling +urn:smpte:ul:060e2b34.01040101.01010200.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017700 + + +urn:smpte:ul:060e2b34.0101010e.04020403.01040000 +AACSamplingFrequency +Low order 4 bits of Sampling Frequency Index. Upper 4 bits are zeros +AAC Sampling Frequency +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017800 + + +urn:smpte:ul:060e2b34.0101010e.04020403.01030000 +AACChannelConfiguration +Low order 4 bits of Channel Configuration. Upper 4 bits are zeros +AAC Channel Configuration +urn:smpte:ul:060e2b34.01040101.01010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017800 + + +urn:smpte:ul:060e2b34.0101010e.0401060a.01000000 +ACESAuthoringInformation +Human readable information on the system used to author the ACES image essence contained in the track file +ACES Authoring Information +urn:smpte:ul:060e2b34.01040101.01100200.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 + + +urn:smpte:ul:060e2b34.0101010e.0401060a.02000000 +ACESMasteringDisplayPrimaries +Display Primaries metadata as specified in ST 2086 +ACES Mastering Display Primaries +urn:smpte:ul:060e2b34.01040101.04020a00.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 + + +urn:smpte:ul:060e2b34.0101010e.0401060a.03000000 +ACESMasteringDisplayWhitePointChromaticity +Chromaticity of White Point metadata as specified in ST 2086 +ACES Mastering Display White Point Chromaticity +urn:smpte:ul:060e2b34.01040101.03010c00.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 + + +urn:smpte:ul:060e2b34.0101010e.0401060a.04000000 +ACESMasteringDisplayMaximumLuminance +Maximum Display Mastering Luminance metadata as specified in ST 2086 +ACES Mastering Display Maximum Luminance +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 + + +urn:smpte:ul:060e2b34.0101010e.0401060a.05000000 +ACESMasteringDisplayMinimumLuminance +Minimum Display Mastering Luminance metadata as specified in ST 2086 +ACES Mastering Display Minimum Luminance +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 + + +urn:smpte:ul:060e2b34.0101010e.04010609.01000000 +TargetFrameAncillaryResourceID +UUID value that identifies the ancillary resource +Target Frame Ancillary ResourceID +urn:smpte:ul:060e2b34.01040101.01030300.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.02000000 +MediaType +Specifies the Media Type as defined by IETF +Media Type +urn:smpte:ul:060e2b34.01040101.01100200.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.03000000 +TargetFrameIndex +Specifies the offset of the corresponding frame in the image essence +Target Frame Index +urn:smpte:ul:060e2b34.01040101.01010400.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.04000000 +TargetFrameTransferCharacteristic +Specifies the non-linear relationship between linear scene light levels and amplitude-compressed video signal levels +Target Frame Transfer Characteristic +urn:smpte:ul:060e2b34.01040101.02020102.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.05000000 +TargetFrameColorPrimaries +The set of color primaries used +Target Frame Color Primaries +urn:smpte:ul:060e2b34.01040101.02020105.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.06000000 +TargetFrameComponentMaxRef +Maximum value for RGB components, e.g. 60160 or 65535 (16 bits) +Target Frame Component Max Ref +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.07000000 +TargetFrameComponentMinRef +Minimum value for RGB components, e.g. 0 or 4096 (16 bits) +Target Frame Component Min Ref +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.08000000 +TargetFrameEssenceStreamID +Essence (or its container) stream ID +Target Frame Essence StreamID +urn:smpte:ul:060e2b34.01040101.01010300.00000000 +false +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.09000000 +ACESPictureSubDescriptorInstanceID +Specifies the Instance ID of an ACES Picture Essence SubDescriptor +ACES Picture SubDescriptor Instance ID +urn:smpte:ul:060e2b34.01040101.01030300.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + +urn:smpte:ul:060e2b34.0101010e.04010609.0a000000 +TargetFrameViewingEnvironment +Specifies a Viewing Environment for a Target Frame +Target Frame Viewing Environment +urn:smpte:ul:060e2b34.01040101.02020108.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 + + urn:smpte:ul:060e2b34.01010102.06010107.01000000 ParentClass Specifies a reference to the class definition of the parent @@ -5171,7 +6283,7 @@ Specifies a local identifier used by the container format to identity a property Local ID urn:smpte:ul:060e2b34.01040101.01010200.00000000 -false +true false 13 urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 @@ -5188,6 +6300,17 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 +urn:smpte:ul:060e2b34.0101010d.06010107.22000000 +MemberOf +Specified the class in which this property may be present +Member Of +urn:smpte:ul:060e2b34.01040101.05010100.00000000 +true +false +43 +urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 + + urn:smpte:ul:060e2b34.01010102.03010203.01000000 Size Specifies the number of bytes in the integer @@ -5369,7 +6492,7 @@ Specifies, as a single string value, a list of names zero delineated between each name in an extendible enumeration Extendible Element Name List urn:smpte:ul:060e2b34.01040101.04010500.00000000 -false +true false 31 urn:smpte:ul:060e2b34.027f0101.0d010101.02200000 @@ -5380,7 +6503,7 @@ Specifies as a single string value a list of values to match the SMPTE labels or AUIDs in the Type Definition Extendible Element Names Type Definition Extendible Element Values urn:smpte:ul:060e2b34.01040101.04010600.00000000 -false +true false 32 urn:smpte:ul:060e2b34.027f0101.0d010101.02200000 @@ -5496,12 +6619,34 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.02260000 +urn:smpte:ul:060e2b34.0101010d.06010107.20000000 +OriginalProperty +Specifies the original definition of the reused Property +Original Property +urn:smpte:ul:060e2b34.01040101.05010c00.00000000 +false +false +41 +urn:smpte:ul:060e2b34.027f0101.0d010101.02270000 + + +urn:smpte:ul:060e2b34.0101010d.06010107.21000000 +ElementOf +References the ExtendibleEnumerations in which this element is known to be used +Element Of +urn:smpte:ul:060e2b34.01040101.05031100.00000000 +true +false +42 +urn:smpte:ul:060e2b34.027f0101.0d010101.02280000 + + urn:smpte:ul:060e2b34.0101010a.06010107.16000000 RootMetaDictionary Specifies a reference to a collection of class, type and property definitions Root Meta Dictionary urn:smpte:ul:060e2b34.01040101.05022700.00000000 -false +true false 1 urn:smpte:ul:060e2b34.027f0101.0d010101.03000000 @@ -5540,6 +6685,17 @@ urn:smpte:ul:060e2b34.027f0101.0d010101.03000000 +urn:smpte:ul:060e2b34.0101010d.06010107.1a000000 +RootExtensions +References the Extension Schemes that are used in the file +Root Extensions +urn:smpte:ul:060e2b34.01040101.05051200.00000000 +true +false +35 +urn:smpte:ul:060e2b34.027f0101.0d010101.03000000 + + urn:smpte:ul:060e2b34.01010105.05300406.00000000 IndexEditRate Specifies the indexing rate in hertz @@ -5699,7 +6855,7 @@ Weak Reference to the DM Segment that (directly or indirectly) strongly references this Description instance Linked Descriptive Framework Plug-In ID urn:smpte:ul:060e2b34.01040101.05090500.00000000 -false +true false 0 urn:smpte:ul:060e2b34.027f0101.0d010401.00000000 @@ -7970,5 +9126,16 @@ 0 urn:smpte:ul:060e2b34.027f0101.0d010401.05010000 + +urn:smpte:ul:060e2b34.0101010e.04020301.0f000000 +IABSampleRate +Indicates the sample rate of the audio essence contained in the bistream +IAB Sample Rate +urn:smpte:ul:060e2b34.01040101.03010100.00000000 +true +false +0 +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 + diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml similarity index 95% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml index e3e3728..376884a 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-aaf.xml @@ -1,5 +1,5 @@ - + urn:uuid:21177fc2-e9cd-5fb5-7f18-50a997da0981 http://www.smpte-ra.org/reg/395/2014/13/1/aaf @@ -931,6 +931,54 @@ true +urn:smpte:ul:060e2b34.027f0101.0d010101.01017500 +DMCVTTargetSubDescriptor +Identifies a DMCVT Target SubDescriptor +DMCVT Target SubDescriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.01017600 +VC5BayerPictureEssenceSubDescriptor +Key Value for VC-5 Bayer Picture Essence Sub-Descriptor +VC-5 Bayer Picture Essence Sub-Descriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.01017700 +VC5CDCIPictureEssenceSubDescriptor +Key Value for the VC-5 CDCI Picture Essence Sub-Descriptor +VC-5 CDCI Picture Essence Sub-Descriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.01017800 +AACSubDescriptor +Advanced Audio Coding SubDescriptor +AAC SubDescriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.01017900 +ACESPictureSubDescriptor +ACES Picture SubDescriptor +ACES Picture SubDescriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.01017a00 +TargetFrameSubDescriptor +Target Frame SubDescriptor +Target Frame SubDescriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + urn:smpte:ul:060e2b34.027f0101.0d010101.01017d00 OPDefinition Operational Pattern Definition @@ -1118,6 +1166,20 @@ true +urn:smpte:ul:060e2b34.027f0101.0d010101.02270000 +PropertyAliasDefinition +Property Alias Definition +urn:smpte:ul:060e2b34.027f0101.0d010101.02020000 +true + + +urn:smpte:ul:060e2b34.027f0101.0d010101.02280000 +ExtendibleEnumerationElement +Extendible Enumeration Element +urn:smpte:ul:060e2b34.027f0101.0d010101.01011a00 +true + + urn:smpte:ul:060e2b34.027f0101.0d010101.03000000 Root Root diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml similarity index 84% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml index 846ffa9..19d586b 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as-common.xml @@ -1,5 +1,5 @@ - + urn:uuid:cd2b0b47-3e39-5fd0-7fe3-e4a2f08cc8ae http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as_common diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml similarity index 84% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml index 7ef2664..23dd5a6 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as10.xml @@ -1,5 +1,5 @@ - + urn:uuid:908d2dfc-e4de-5f98-7f39-27277eeb2619 http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as10 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml similarity index 89% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml index 2332f88..535f14f 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:37245a8b-8b43-5fe1-7f35-d6709b09c19c http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml similarity index 89% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml index 6cb234a..5791015 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-1-amwa-as12.xml @@ -1,5 +1,5 @@ - + urn:uuid:9193e802-4aa0-5f02-7f75-4a7967b957a8 http://www.smpte-ra.org/reg/395/2014/13/1/amwa/as12 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml similarity index 84% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml index 42f0d61..7cced0e 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-12-as11.xml @@ -1,5 +1,5 @@ - + urn:uuid:43a49d7a-7180-5f69-7f95-81bb7b7ca340 http://www.smpte-ra.org/reg/395/2014/13/12/as11 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml similarity index 85% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml index c9b8a8f..15faa3f 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-13.xml @@ -1,5 +1,5 @@ - + urn:uuid:b9c907f0-5b9a-5fec-7fac-64d202d5e814 http://www.smpte-ra.org/reg/395/2014/13/13 diff --git a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml similarity index 94% rename from regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml rename to src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml index 5660660..9a6fdec 100644 --- a/regxmllib/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-13-4-archive.xml @@ -1,5 +1,5 @@ - + urn:uuid:c3674f23-c2ae-5f05-7fb9-fb2583b05ca9 http://www.smpte-ra.org/reg/395/2014/13/4/archive diff --git a/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-14-9.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-14-9.xml new file mode 100644 index 0000000..5c2454b --- /dev/null +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014-14-9.xml @@ -0,0 +1,23 @@ + + +urn:uuid:3c343e7c-f7b1-5fa0-7fc9-96aaa45cb485 +http://www.smpte-ra.org/reg/395/2014/14/9 + + +urn:smpte:ul:060e2b34.027f0105.0e090603.00000000 +IADataDescriptor +Immersive Audio Data Descriptor +Immersive Audio Data Descriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01014300 +true + + +urn:smpte:ul:060e2b34.027f0105.0e090606.00000000 +IAEssenceSubDescriptor +IA Essence SubDescriptor +IA Essence SubDescriptor +urn:smpte:ul:060e2b34.027f0101.0d010101.01015900 +true + + + diff --git a/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml new file mode 100644 index 0000000..b814424 --- /dev/null +++ b/src/test/resources/regxml-dicts/www-smpte-ra-org-reg-395-2014.xml @@ -0,0 +1,67 @@ + + +urn:uuid:3c1f888d-e658-5f03-7fe0-c96d7c354c75 +http://www.smpte-ra.org/reg/395/2014 + + +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 +DMCVTGenericSet1 +Identifies a DMCVT Generic Set 1 +DMCVT Generic Set 1 +false + + +urn:smpte:ul:060e2b34.027f0101.05310201.00000000 +DMCVTApp1Set +Identifies a DMCVT Application 1 Set +DMCVT App1 Set +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 +true + + +urn:smpte:ul:060e2b34.027f0101.05310202.00000000 +DMCVTApp2Set +Identifies a DMCVT Application 2 Set +DMCVT App2 Set +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 +true + + +urn:smpte:ul:060e2b34.027f0101.05310203.00000000 +DMCVTApp3Set +Identifies a DMCVT Application 3 Set +DMCVT App3 Set +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 +true + + +urn:smpte:ul:060e2b34.027f0101.05310204.00000000 +DMCVTApp4Set +Identifies a DMCVT Application 4 Set +DMCVT App4 Set +urn:smpte:ul:060e2b34.027f0101.05310101.00000000 +true + + +urn:smpte:ul:060e2b34.027f0101.0c020101.01010000 +LensUnitAcquisitionMetadata +Lens Unit Acquisition Metadata +Lens Unit Acquisition Metadata +true + + +urn:smpte:ul:060e2b34.027f0101.0c020101.02010000 +CameraUnitAcquisitionMetadata +Camera Unit Acquisition Metadata +Camera Unit Acquisition Metadata +true + + +urn:smpte:ul:060e2b34.027f0101.0c020101.7f010000 +UserDefinedAcquisitionMetadata +UserDefinedAcquisitionMetadata +UserDefinedAcquisitionMetadata +true + + + diff --git a/regxmllib/src/test/resources/reference-files/audio1.xml b/src/test/resources/regxml-files/audio1.xml similarity index 95% rename from regxmllib/src/test/resources/reference-files/audio1.xml rename to src/test/resources/regxml-files/audio1.xml index 29f5d6a..8f82739 100644 --- a/regxmllib/src/test/resources/reference-files/audio1.xml +++ b/src/test/resources/regxml-files/audio1.xml @@ -1,229 +1,229 @@ - - urn:uuid:afa42131-e099-47fa-493a-f4e0740a3654 - 1.3 - 1 - - - urn:uuid:27b17ea9-ffed-4e14-d71a-087a7cbee3df - - - urn:uuid:f7a594a5-3b25-4feb-53d7-616dbe008a9c - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 - - - urn:uuid:2cc258ef-0887-4379-b8c3-7917e4033a63 - 2 - 369164800 - 48000/1 - 0 - Sound - - - urn:uuid:1fa72736-aa97-479e-9104-4d4f21d043af - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - 2002 - - - urn:uuid:c3b24534-0f9d-40e8-3b55-0d8cc260712e - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - 0 - 2002 - urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 - 0 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:467056f3-7a0f-4c62-2d4a-d97a5504973f - 1 - 0 - - - urn:uuid:16489b5f-7986-46a6-550b-2c7ae1af7d08 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 2002 - - - urn:uuid:c4a7dcd6-93f3-4ce1-3493-870170debec3 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 2002 - 24 - 0 - False - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - 48000/1 - 0 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - - - urn:uuid:f6cbb0fd-16a6-4b4e-e4b8-66b62cb00c3d - urn:smpte:ul:060e2b34.04010101.0d010301.02060200 - 2 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - 48000/1 - 2002 - 48000/1 - True - 2 - 24 - urn:smpte:ul:060e2b34.04010101.04020201.7f000000 - 6 - 288000 - urn:smpte:ul:060e2b34.0401010d.04020210.04010000 - - - urn:uuid:536cee0e-c38b-44d6-b64f-78908abcd645 - urn:smpte:ul:060e2b34.0401010d.03020220.01000000 - urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 - sgST - Standard Stereo - - - urn:uuid:d7688e0a-24b0-4ac0-c074-8e9a6d7b7fdf - urn:smpte:ul:060e2b34.0401010d.03020101.00000000 - urn:uuid:49cd52c9-9a55-47d7-3010-05fae1b56134 - chL - Left - 1 - urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 - - - urn:uuid:e6c9f2ae-b4cf-4fc1-3d59-3e915ebb687d - urn:smpte:ul:060e2b34.0401010d.03020102.00000000 - urn:uuid:57a9c27b-02ab-4f2f-a156-3d9e53b4d648 - chR - Right - 2 - urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 - - - - - 2015-05-05T09:01:04.816Z - 2015-05-05T09:01:04.804Z - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:48a1a91f-2132-4cb5-94de-287700949a3a - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.60a7ae3a.f268481b.4862bf2d.4f8d46cb - - - urn:uuid:eb862fa2-e4fa-4987-1c20-81b1894dc34d - 2 - 0 - 48000/1 - 0 - - - urn:uuid:75f5166a-a64e-4e20-819e-c2d0c2a498d0 - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - - - urn:uuid:2b61221e-1f20-41d3-c242-59878f7d7bfa - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - 0 - 2002 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 - 2 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - 2002 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - Sound - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:62ec894b-613e-4ecd-a724-5a7c7c02f8b5 - 1 - 0 - - - urn:uuid:115015a1-87a4-42e7-fa7a-2eb742b9af83 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 2002 - - - urn:uuid:baccb2b4-3066-46e4-63dc-17d898c576ec - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 2002 - 24 - 0 - False - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - 48000/1 - 0 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - 2015-05-05T09:01:04.816Z - 2015-05-05T09:01:04.804Z - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - - - urn:uuid:7b783464-96bf-4baa-0f9b-a8cb90739ee7 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 - 2 - 1 - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - - - urn:smpte:ul:060e2b34.04010101.0d010201.01010100 - - urn:smpte:ul:060e2b34.04010101.0d010301.02060200 - - - - - urn:uuid:32f53cbd-dc41-420c-0f51-b22eb4dd56cb - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - OpenCube - MXFTk Advanced - urn:uuid:3a4fe380-0d01-11e4-869f-3cd92b5c1dfc - 2.7.3.20150429 - - 2 - 7 - 3 - 0 - VersionReleased - - - 2 - 7 - 3 - 0 - VersionReleased - - Linux 2.6.32-279.el6.x86_64 x86_64 - 2015-05-05T09:01:04.816Z - - - 2015-05-05T09:01:04.816Z - urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 - + + urn:uuid:afa42131-e099-47fa-493a-f4e0740a3654 + 1.3 + 1 + + + urn:uuid:27b17ea9-ffed-4e14-d71a-087a7cbee3df + + + urn:uuid:f7a594a5-3b25-4feb-53d7-616dbe008a9c + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 + + + urn:uuid:2cc258ef-0887-4379-b8c3-7917e4033a63 + 2 + 369164800 + 48000/1 + 0 + Sound + + + urn:uuid:1fa72736-aa97-479e-9104-4d4f21d043af + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 2002 + + + urn:uuid:c3b24534-0f9d-40e8-3b55-0d8cc260712e + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 0 + 2002 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:467056f3-7a0f-4c62-2d4a-d97a5504973f + 1 + 0 + + + urn:uuid:16489b5f-7986-46a6-550b-2c7ae1af7d08 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2002 + + + urn:uuid:c4a7dcd6-93f3-4ce1-3493-870170debec3 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2002 + 24 + 0 + False + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + 48000/1 + 0 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + + + urn:uuid:f6cbb0fd-16a6-4b4e-e4b8-66b62cb00c3d + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + 2 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + 48000/1 + 2002 + 48000/1 + True + 2 + 24 + urn:smpte:ul:060e2b34.04010101.04020201.7f000000 + 6 + 288000 + urn:smpte:ul:060e2b34.0401010d.04020210.04010000 + + + urn:uuid:536cee0e-c38b-44d6-b64f-78908abcd645 + urn:smpte:ul:060e2b34.0401010d.03020220.01000000 + urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 + sgST + Standard Stereo + + + urn:uuid:d7688e0a-24b0-4ac0-c074-8e9a6d7b7fdf + urn:smpte:ul:060e2b34.0401010d.03020101.00000000 + urn:uuid:49cd52c9-9a55-47d7-3010-05fae1b56134 + chL + Left + 1 + urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 + + + urn:uuid:e6c9f2ae-b4cf-4fc1-3d59-3e915ebb687d + urn:smpte:ul:060e2b34.0401010d.03020102.00000000 + urn:uuid:57a9c27b-02ab-4f2f-a156-3d9e53b4d648 + chR + Right + 2 + urn:uuid:ba6730d5-f1bd-4dfe-bf17-f8af0fa84d70 + + + + + 2015-05-05T09:01:04.816Z + 2015-05-05T09:01:04.804Z + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:48a1a91f-2132-4cb5-94de-287700949a3a + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.60a7ae3a.f268481b.4862bf2d.4f8d46cb + + + urn:uuid:eb862fa2-e4fa-4987-1c20-81b1894dc34d + 2 + 0 + 48000/1 + 0 + + + urn:uuid:75f5166a-a64e-4e20-819e-c2d0c2a498d0 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + + + urn:uuid:2b61221e-1f20-41d3-c242-59878f7d7bfa + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 0 + 2002 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 + 2 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + 2002 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + Sound + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:62ec894b-613e-4ecd-a724-5a7c7c02f8b5 + 1 + 0 + + + urn:uuid:115015a1-87a4-42e7-fa7a-2eb742b9af83 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2002 + + + urn:uuid:baccb2b4-3066-46e4-63dc-17d898c576ec + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2002 + 24 + 0 + False + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + 48000/1 + 0 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + 2015-05-05T09:01:04.816Z + 2015-05-05T09:01:04.804Z + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + + + urn:uuid:7b783464-96bf-4baa-0f9b-a8cb90739ee7 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 + 2 + 1 + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + + + urn:smpte:ul:060e2b34.04010101.0d010201.01010100 + + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + + + + + urn:uuid:32f53cbd-dc41-420c-0f51-b22eb4dd56cb + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + OpenCube + MXFTk Advanced + urn:uuid:3a4fe380-0d01-11e4-869f-3cd92b5c1dfc + 2.7.3.20150429 + + 2 + 7 + 3 + 0 + VersionReleased + + + 2 + 7 + 3 + 0 + VersionReleased + + Linux 2.6.32-279.el6.x86_64 x86_64 + 2015-05-05T09:01:04.816Z + + + 2015-05-05T09:01:04.816Z + urn:uuid:ec362afd-ce4d-4559-b7d4-3aac269805e2 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.2d74e41a.176141d2.783ad3e5.ce3e3eb0 + diff --git a/regxmllib/src/test/resources/reference-files/audio2.xml b/src/test/resources/regxml-files/audio2.xml similarity index 94% rename from regxmllib/src/test/resources/reference-files/audio2.xml rename to src/test/resources/regxml-files/audio2.xml index 7358c38..a398311 100644 --- a/regxmllib/src/test/resources/reference-files/audio2.xml +++ b/src/test/resources/regxml-files/audio2.xml @@ -1,214 +1,214 @@ - - urn:uuid:d2cfa078-e24d-4d42-825a-6eef5077085d - 2015-05-19T08:52:08.920Z - 1.3 - - - Rohde and Schwarz DVS GmbH - Clipster - 5.10.0.0 - - 5 - 10 - 0 - 0 - VersionReleased - - - 1 - 2 - 0 - 19 - VersionBeta - - Windows Server 2003 Service Pack 2 (64-bit) - 2015-05-19T08:52:08.920Z - urn:uuid:29bcbbc9-0d33-5653-ace4-685a327d3c50 - urn:uuid:40a25420-5843-47e2-be6c-a43df9b8b603 - urn:uuid:8e0ab2d2-a2fc-4a38-97dc-a0d7a56f6181 - - - - urn:smpte:ul:060e2b34.04010101.0d010301.02060200 - - - - - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.8be435ee.73e74fc1.82535d44.53714ef4 - 2015-05-19T08:52:08.920Z - 2015-05-19T08:52:08.920Z - - - Timecode track - 0 - 0 - 24/1 - 1 - - - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - 24 - False - 0 - 1 - urn:uuid:498bf72e-5f83-4925-aa21-d560fcda5d28 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - - - urn:uuid:e512b9ab-4a4c-4490-ae53-2f2db9e05090 - - - urn:uuid:79ac34f3-4de0-4cda-b026-c19b741e9288 - - - MP sound track - 0 - 0 - 48000/1 - 2 - - - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - 2000 - - - 2000 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 - 2 - 0 - urn:uuid:1c308937-9fe5-443f-8cfa-a7f54441dff1 - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - - - urn:uuid:766a1c4a-0fb5-4cb7-97a7-7331e2ab059f - - - urn:uuid:32a37b51-f724-4d18-a280-13e3190c4619 - - - urn:uuid:28688b88-0cfa-4a35-bdc0-45133aacded2 - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 - 2015-05-19T08:52:08.920Z - 2015-05-19T08:52:08.920Z - - - Timecode track - 0 - 0 - 24/1 - 1 - - - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - 24 - False - 0 - 1 - urn:uuid:7df609ad-c79f-489e-aabc-4a8a54a06818 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - - - urn:uuid:62380bec-4481-4c9a-a1cd-4e29c74d0e3c - - - urn:uuid:29aeff57-d36e-4e4c-8513-81b74e30907d - - - FP Sound track - 369164800 - 0 - 48000/1 - 2 - - - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - 2000 - - - 2000 - urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 - 0 - 0 - urn:uuid:68df6d2b-f5d1-4cb2-8a85-6cda2a9561a1 - urn:smpte:ul:060e2b34.04010101.01030202.02000000 - - - urn:uuid:0bc6d771-188f-44d9-9bf6-db6da92bbae4 - - - urn:uuid:b2e5ede5-8044-4cd2-acf5-ba3238021548 - - - urn:uuid:0d844838-8835-44a2-b818-e6680df11059 - - - 48000/1 - 48000/1 - 2 - 24 - True - 0 - 6 - 288000 - urn:smpte:ul:060e2b34.04010101.0d010301.02060200 - - - urn:smpte:ul:060e2b34.0401010d.03020101.00000000 - urn:uuid:b7784080-98d8-429a-826b-9c8296967b29 - chL - Left - urn:uuid:32ad3213-6cad-445d-ab17-39652619644f - - - urn:smpte:ul:060e2b34.0401010d.03020102.00000000 - urn:uuid:2fdad693-1c50-4ba3-99c6-0029092d8049 - chR - Right - urn:uuid:e5740106-a093-462b-8b59-47a32a843f9f - urn:uuid:d78a37cb-910e-4f50-b3ec-aa13557dc3eb - - - urn:smpte:ul:060e2b34.0401010d.03020220.01000000 - urn:uuid:e5740106-a093-462b-8b59-47a32a843f9f - sgST - Standard Stereo - MCA Title - MCA Title Version - MCA Audio Content Kind - MCA Audio Element Kind - urn:uuid:5981fda3-e6b3-4ebe-ab52-20ee7ededf6d - - - urn:smpte:ul:060e2b34.0401010d.04020210.04010000 - 24/1 - urn:uuid:d124c2f6-943f-43d3-a4a8-f244ce07e3b2 - 2 - - - - - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 - 1 - 2 - urn:uuid:44ffc89b-b2c4-46a8-b955-dfc8d0a95abd - - - urn:uuid:30d5482e-21a5-486b-b602-6e457333e023 - - - True - urn:smpte:ul:060e2b34.04010101.0d010201.01010100 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 - + + urn:uuid:d2cfa078-e24d-4d42-825a-6eef5077085d + 2015-05-19T08:52:08.920Z + 1.3 + + + Rohde and Schwarz DVS GmbH + Clipster + 5.10.0.0 + + 5 + 10 + 0 + 0 + VersionReleased + + + 1 + 2 + 0 + 19 + VersionBeta + + Windows Server 2003 Service Pack 2 (64-bit) + 2015-05-19T08:52:08.920Z + urn:uuid:29bcbbc9-0d33-5653-ace4-685a327d3c50 + urn:uuid:40a25420-5843-47e2-be6c-a43df9b8b603 + urn:uuid:8e0ab2d2-a2fc-4a38-97dc-a0d7a56f6181 + + + + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + + + + + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.8be435ee.73e74fc1.82535d44.53714ef4 + 2015-05-19T08:52:08.920Z + 2015-05-19T08:52:08.920Z + + + Timecode track + 0 + 0 + 24/1 + 1 + + + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + 24 + False + 0 + 1 + urn:uuid:498bf72e-5f83-4925-aa21-d560fcda5d28 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + + + urn:uuid:e512b9ab-4a4c-4490-ae53-2f2db9e05090 + + + urn:uuid:79ac34f3-4de0-4cda-b026-c19b741e9288 + + + MP sound track + 0 + 0 + 48000/1 + 2 + + + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 2000 + + + 2000 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 + 2 + 0 + urn:uuid:1c308937-9fe5-443f-8cfa-a7f54441dff1 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + + + urn:uuid:766a1c4a-0fb5-4cb7-97a7-7331e2ab059f + + + urn:uuid:32a37b51-f724-4d18-a280-13e3190c4619 + + + urn:uuid:28688b88-0cfa-4a35-bdc0-45133aacded2 + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 + 2015-05-19T08:52:08.920Z + 2015-05-19T08:52:08.920Z + + + Timecode track + 0 + 0 + 24/1 + 1 + + + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + 24 + False + 0 + 1 + urn:uuid:7df609ad-c79f-489e-aabc-4a8a54a06818 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + + + urn:uuid:62380bec-4481-4c9a-a1cd-4e29c74d0e3c + + + urn:uuid:29aeff57-d36e-4e4c-8513-81b74e30907d + + + FP Sound track + 369164800 + 0 + 48000/1 + 2 + + + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 2000 + + + 2000 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + 0 + urn:uuid:68df6d2b-f5d1-4cb2-8a85-6cda2a9561a1 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + + + urn:uuid:0bc6d771-188f-44d9-9bf6-db6da92bbae4 + + + urn:uuid:b2e5ede5-8044-4cd2-acf5-ba3238021548 + + + urn:uuid:0d844838-8835-44a2-b818-e6680df11059 + + + 48000/1 + 48000/1 + 2 + 24 + True + 0 + 6 + 288000 + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + + + urn:smpte:ul:060e2b34.0401010d.03020101.00000000 + urn:uuid:b7784080-98d8-429a-826b-9c8296967b29 + chL + Left + urn:uuid:32ad3213-6cad-445d-ab17-39652619644f + + + urn:smpte:ul:060e2b34.0401010d.03020102.00000000 + urn:uuid:2fdad693-1c50-4ba3-99c6-0029092d8049 + chR + Right + urn:uuid:e5740106-a093-462b-8b59-47a32a843f9f + urn:uuid:d78a37cb-910e-4f50-b3ec-aa13557dc3eb + + + urn:smpte:ul:060e2b34.0401010d.03020220.01000000 + urn:uuid:e5740106-a093-462b-8b59-47a32a843f9f + sgST + Standard Stereo + MCA Title + MCA Title Version + MCA Audio Content Kind + MCA Audio Element Kind + urn:uuid:5981fda3-e6b3-4ebe-ab52-20ee7ededf6d + + + urn:smpte:ul:060e2b34.0401010d.04020210.04010000 + 24/1 + urn:uuid:d124c2f6-943f-43d3-a4a8-f244ce07e3b2 + 2 + + + + + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 + 1 + 2 + urn:uuid:44ffc89b-b2c4-46a8-b955-dfc8d0a95abd + + + urn:uuid:30d5482e-21a5-486b-b602-6e457333e023 + + + True + urn:smpte:ul:060e2b34.04010101.0d010201.01010100 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.641aff33.c46c4afc.b11b67bd.92a0e719 + diff --git a/src/test/resources/regxml-files/class14.xml b/src/test/resources/regxml-files/class14.xml new file mode 100644 index 0000000..cd99f8d --- /dev/null +++ b/src/test/resources/regxml-files/class14.xml @@ -0,0 +1,192 @@ + + urn:uuid:63c6d971-a3e7-44bb-b6e4-5bd231aad15f + 1978-02-10T22:34:48Z + 1.2 + 0 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.c17a69b1.444b4d5a.9a9619dc.5ef10240 + + + urn:uuid:01786ab9-fce8-4a85-8a66-5ffecfce0775 + urn:uuid:030a4f0d-cb8b-48e1-87df-ce7eb0ea2dcd + Dolby Laboratories + Dolby Atmos Encoder + + 0 + 0 + 0 + 0 + VersionUnknown + + 1.0.0.5 + urn:uuid:7d836e16-37c7-4c22-b2e0-46a717e84f49 + 2011-12-27T03:14:48Z + + 1 + 9 + 45 + 27240 + VersionReleased + + win32 + + + + + urn:uuid:2ec47950-ce93-455a-a401-257427da5742 + + + urn:uuid:ce21d73f-6905-4d60-a1e7-df54d3cc7844 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.3ea332d9.9de64f9c.b50daa84.35dcf399 + AS-DCP Material Package + 2029-07-20T11:14:16Z + 2029-07-20T11:14:16Z + + + urn:uuid:fce18a0e-1887-4eda-bcd3-24d3a56ead81 + 1 + 0 + Timecode Track + + + urn:uuid:7bed1ffb-0529-4b76-b7f6-9d5618b65299 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2 + + + urn:uuid:8e9ce1c0-46fa-4367-9370-516aa84d7901 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2 + 24 + 0 + False + + + + + 24/1 + 0 + + + urn:uuid:cd8dd55b-e4c9-4766-bd42-a1b4af7a7d91 + 2 + 0 + Dolby ATMOS Data Track + + + urn:uuid:161871f9-02be-4271-8c76-898c55fbd01a + urn:smpte:ul:060e2b34.04010101.01030202.03000000 + 2 + + + urn:uuid:964f9394-fbd3-4aee-ab77-f2780b7ce308 + urn:smpte:ul:060e2b34.04010101.01030202.03000000 + 2 + 0 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.c17a69b1.444b4d5a.9a9619dc.5ef10240 + 2 + + + + + 24/1 + 0 + + + + + urn:uuid:f937b9dd-d0d3-4a80-bc0f-6f855372ba2e + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.c17a69b1.444b4d5a.9a9619dc.5ef10240 + File Package: SMPTE 382M frame wrapping of Dolby ATMOS data + 2018-01-29T16:49:48Z + 2018-01-29T16:49:48Z + + + urn:uuid:66fe3539-62af-48dc-a9e8-9bceb6f78b3b + 1 + 0 + Timecode Track + + + urn:uuid:5d0e8f84-0ffa-4cf6-b426-0ec20318b628 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2 + + + urn:uuid:b62d7bb0-6253-4051-91a8-bfc1363245c1 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 2 + 24 + 86400 + False + + + + + 24/1 + 0 + + + urn:uuid:6f70974d-304c-4db6-90b3-3455af8cb17d + 2 + 1 + Dolby ATMOS Data Track + + + urn:uuid:3b831928-955d-4878-ba8a-a4674f0095e6 + urn:smpte:ul:060e2b34.04010101.01030202.03000000 + 2 + + + urn:uuid:84f894b2-5ef2-44a7-beb2-e833499e2c77 + urn:smpte:ul:060e2b34.04010101.01030202.03000000 + 2 + 0 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + + + + + 24/1 + 0 + + + + + urn:uuid:827a0781-3ec1-4522-8e3e-1ec0fd5cdea4 + + + urn:uuid:c6d05921-4848-4e06-906f-88bb752f0752 + urn:uuid:fcab28e0-5c84-4eb9-9b41-952876e40ea8 + 0 + 10 + 118 + 1 + + + 2 + 24/1 + 2 + urn:smpte:ul:060e2b34.04010105.0e090605.00000000 + urn:smpte:ul:060e2b34.04010105.0e090604.00000000 + + + + + + + urn:uuid:1b740c5b-1544-40c4-833c-cbe11c96f379 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.c17a69b1.444b4d5a.9a9619dc.5ef10240 + 129 + 1 + + + + + urn:smpte:ul:060e2b34.04010102.0d010201.10000000 + + urn:smpte:ul:060e2b34.04010103.0d010301.027f0100 + urn:smpte:ul:060e2b34.04010105.0e090605.00000000 + + + diff --git a/src/test/resources/regxml-files/escape-chars.xml b/src/test/resources/regxml-files/escape-chars.xml new file mode 100644 index 0000000..d33911c --- /dev/null +++ b/src/test/resources/regxml-files/escape-chars.xml @@ -0,0 +1,263 @@ + + urn:uuid:dc1102ae-c3a6-4598-9fb9-5f892bf2da5a + 2018-06-22T19:24:06Z + 1.3 + 1 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.d664fb8c.d4dd4c0c.b61e624d.1ac800ad + + + urn:uuid:99705de3-432b-4fb0-82ff-4dbab3e1a37a + urn:uuid:c41cf95a-ecf4-4cbf-9b59-87879d3a566d + HSRM + IMF-Tool + + 0 + 0 + 0 + 0 + VersionUnknown + + 1.3.217 + urn:uuid:7d836e16-37c7-4c22-b2e0-46a717e84f42 + 2018-06-22T19:24:06Z + + 2 + 7 + 19 + 27240 + VersionReleased + + unix + + + + + urn:uuid:b1f317b6-13f5-4c5a-b7fa-cc9b68e462ea + + + urn:uuid:126fe917-0d8c-4388-89de-cde6c615382b + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.436286cc.f4c74880.93c1693e.f7978a76 + AS-DCP Material Package + 2018-06-22T19:24:06Z + 2018-06-22T19:24:06Z + + + urn:uuid:1ac699e5-fe69-445b-96fe-21d0e8653f67 + 1 + 0 + Timecode Track + + + urn:uuid:32a29ac3-7055-4af0-8c0a-f620d20674a6 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 66141 + + + urn:uuid:97d775c1-0b06-4e7b-9e72-3dcd0d9f9057 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 66141 + 24 + 0 + False + + + + + 48000/1 + 0 + + + urn:uuid:6e241776-10df-460e-8b08-91df03820712 + 2 + 0 + Sound Track + + + urn:uuid:d0118f2f-8cc4-47ff-bc77-ae0ad506adc9 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 66141 + + + urn:uuid:7ae26587-97e0-4255-8180-6d7f80459905 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 66141 + 0 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.d664fb8c.d4dd4c0c.b61e624d.1ac800ad + 2 + + + + + 48000/1 + 0 + + + + + urn:uuid:6ac73493-a309-40a3-9b17-7d72efc5454d + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.d664fb8c.d4dd4c0c.b61e624d.1ac800ad + File Package: SMPTE 382M clip wrapping of wave audio + 2018-06-22T19:24:06Z + 2018-06-22T19:24:06Z + + + urn:uuid:f92d68d6-3a80-424a-808b-7792d2927871 + 1 + 0 + Timecode Track + + + urn:uuid:31a67275-0ca7-4d45-816c-f43dc64b802b + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 66141 + + + urn:uuid:d1a1d59b-801a-4225-ad6b-a829ae3c10e3 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 66141 + 24 + 86400 + False + + + + + 48000/1 + 0 + + + urn:uuid:645758b0-9942-4b78-8a6e-1354a117bcf6 + 2 + 369164801 + Sound Track + + + urn:uuid:dba55c73-fed5-4341-b6fc-a2f2d71b4fb9 + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 66141 + + + urn:uuid:7283351f-92e6-4d47-a353-faee7a02360d + urn:smpte:ul:060e2b34.04010101.01030202.02000000 + 66141 + 0 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + + + + + 48000/1 + 0 + + + + + urn:uuid:d5afd00f-01ad-4c8a-981e-19119d4ee7a5 + + + urn:uuid:136ad524-f339-4654-a4a6-d2180bfb18b4 + urn:smpte:ul:060e2b34.0401010d.03020201.00000000 + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + sg51 + 5.1 + de-DE + Default Title + Domestic + ContentKind + $#x1;$#x1;$#x2;$#xf;$#x10;$#x1f;𐀀𐐷 + + + urn:uuid:d0beab59-7125-446d-b838-9bc815d892fe + urn:smpte:ul:060e2b34.0401010d.03020101.00000000 + urn:uuid:cbd1bd6b-9ef3-46e9-8df2-430b982f3cb2 + chL + Left + 1 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + urn:uuid:16553b48-19ee-43dd-85b4-7e53d40522f0 + urn:smpte:ul:060e2b34.0401010d.03020102.00000000 + urn:uuid:e16b1c21-90a0-4c29-9386-d68ecce6418b + chR + Right + 2 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + urn:uuid:3378cbd2-1a35-4435-8d6a-b5808b7583eb + urn:smpte:ul:060e2b34.0401010d.03020103.00000000 + urn:uuid:e31c6315-cebc-4204-b718-89470a58afa5 + chC + Center + 3 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + urn:uuid:8b81d473-7286-41bd-a0a7-9a4eb00554e4 + urn:smpte:ul:060e2b34.0401010d.03020104.00000000 + urn:uuid:22b9d1f6-cdca-41ee-a593-85e8d823ef0e + chLFE + LFE + 4 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + urn:uuid:fe338e65-054f-42b8-ae4b-16ce494601b8 + urn:smpte:ul:060e2b34.0401010d.03020105.00000000 + urn:uuid:19eab655-2aa0-479d-a29c-12eb4ee87d7c + chLs + Left Surround + 5 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + urn:uuid:a4ceb808-7a09-45c6-9089-4d1d8af95346 + urn:smpte:ul:060e2b34.0401010d.03020106.00000000 + urn:uuid:a10914ca-d066-4272-acde-3add3706b144 + chRs + Right Surround + 6 + de-DE + urn:uuid:ae3c1631-b382-4bfd-b4e2-a50676587695 + + + 2 + 48000/1 + 66141 + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + 48000/1 + False + 6 + 24 + urn:smpte:ul:00000000.00000000.00000000.00000000 + 18 + 864000 + urn:smpte:ul:060e2b34.0401010d.04020210.04010000 + + + + + + + urn:uuid:d6afe7a3-cdda-4f2b-9be6-b353b5bdfcca + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.d664fb8c.d4dd4c0c.b61e624d.1ac800ad + 129 + 1 + + + + + urn:smpte:ul:060e2b34.04010101.0d010201.01010100 + + urn:smpte:ul:060e2b34.04010101.0d010301.02060200 + urn:smpte:ul:060e2b34.04010103.0d010301.027f0100 + + + diff --git a/regxmllib/src/test/resources/reference-files/indirect.xml b/src/test/resources/regxml-files/indirect.xml similarity index 99% rename from regxmllib/src/test/resources/reference-files/indirect.xml rename to src/test/resources/regxml-files/indirect.xml index 04f116e..9ea8a3f 100644 --- a/regxmllib/src/test/resources/reference-files/indirect.xml +++ b/src/test/resources/regxml-files/indirect.xml @@ -1,16 +1,16 @@ - + urn:uuid:39e564bf-93fb-4750-baed-64c720ce0474 @@ -933,10 +933,10 @@ Data: 00550048004400200032003500700000--> urn:uuid:956b7f0b-8f9b-46cd-96a1-1f5402710f80 @@ -983,10 +983,10 @@ Data: 000000010000001098022eb425c1406394bc683fe0b20e73--> urn:uuid:e873201b-87be-4fd6-bf5c-23a7bf530a47 urn:uuid:ea7bd2cd-3b8c-4e72-89cb-c8ec4bfcb490 diff --git a/regxmllib/src/test/resources/reference-files/utf8_embedded_text.xml b/src/test/resources/regxml-files/utf8_embedded_text.xml similarity index 99% rename from regxmllib/src/test/resources/reference-files/utf8_embedded_text.xml rename to src/test/resources/regxml-files/utf8_embedded_text.xml index cee6ca9..bd7c6b5 100644 --- a/regxmllib/src/test/resources/reference-files/utf8_embedded_text.xml +++ b/src/test/resources/regxml-files/utf8_embedded_text.xml @@ -1,4 +1,4 @@ - + urn:uuid:4a42952e-e2cf-4968-8d16-9aa5b091afe0 2016-02-22T14:16:40.532Z 1.3 diff --git a/regxmllib/src/test/resources/reference-files/video1.xml b/src/test/resources/regxml-files/video1.xml similarity index 95% rename from regxmllib/src/test/resources/reference-files/video1.xml rename to src/test/resources/regxml-files/video1.xml index 378c70d..2d721a7 100644 --- a/regxmllib/src/test/resources/reference-files/video1.xml +++ b/src/test/resources/regxml-files/video1.xml @@ -1,290 +1,290 @@ - - urn:uuid:14d51d6b-c05d-4f06-727e-3dd49c8b2024 - 1.3 - 1 - - - urn:uuid:b3e3907d-8f68-4458-8577-b9c892c98b0d - - - urn:uuid:2e7a14c7-8f4e-46f6-b372-0b5921aeb936 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 - - - urn:uuid:946b34c7-31fa-4e4e-a8ca-6efc19056e21 - 2 - 352389120 - 24000/1001 - 0 - Picture - - - urn:uuid:34beffef-d7f5-47d2-e1c0-62f46b0839c8 - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - 1 - - - urn:uuid:15f4db27-5182-4ab3-a3ed-72f07ea11dad - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - 0 - 1 - urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 - 0 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:06661837-22c7-4efd-ab01-32c980335004 - 1 - 0 - - - urn:uuid:5693f2f6-fac9-43b0-69ea-6af2fc4b34fb - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - urn:uuid:7ec85ff1-0366-400b-9787-169acc194642 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - 24 - 0 - False - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - 24000/1001 - 0 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - - - urn:uuid:43d44909-14fa-4248-4589-f561298eae7f - urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 - 2 - - - urn:uuid:37a7f343-a8fe-4a8a-b64a-0e7d0231c9cc - 775 - 1920 - 1080 - 0 - 0 - 1920 - 1080 - 0 - 0 - 3 - - - 9 - 1 - 1 - - - 9 - 2 - 1 - - - 9 - 2 - 1 - - - - - CompLuma - 10 - - - CompColorDifferenceU - 10 - - - CompColorDifferenceV - 10 - - - CompFill - 2 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - SignalStandard_SMPTE274M - 1920 - 1080 - 0 - 0 - 0 - 0 - 0 - urn:smpte:ul:060e2b34.04010101.04010101.01020000 - urn:smpte:ul:060e2b34.04010101.04010101.02020000 - urn:smpte:ul:060e2b34.04010106.04010101.03030000 - 1 - FullFrame - 1920 - 1080 - 1920 - 1080 - 1920 - 1080 - 16/9 - - 42 - 0 - - 10 - 2 - 1 - 64 - 940 - 877 - 24000/1001 - urn:smpte:ul:060e2b34.0401010d.04010202.03010117 - - - 2015-05-05T09:01:04.808Z - 2015-05-05T09:01:04.800Z - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:43f9050f-591d-440e-977d-e72f3c038c10 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.3d77e015.99fe4545.0620925c.f3cee008 - - - urn:uuid:06a59400-f1c5-43f4-a796-8f2e27af8f34 - 2 - 0 - 24000/1001 - 0 - - - urn:uuid:1ea37b55-84d8-4370-eaf1-33f4be590e98 - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - - - urn:uuid:b5354206-c72a-43bb-6fd2-c3935bd74d19 - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - 0 - 1 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 - 2 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - 1 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - Picture - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:19a0e9e8-d050-4c52-521d-942dbdd1a482 - 1 - 0 - - - urn:uuid:2d54e023-1d11-4e9b-fd46-87eed516140b - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - urn:uuid:dea8861b-05d2-47cc-5647-7fcda40cf66d - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - 24 - 0 - False - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - 24000/1001 - 0 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - 2015-05-05T09:01:04.808Z - 2015-05-05T09:01:04.800Z - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - - - urn:uuid:eaa03cfd-9f4a-4e31-3c1c-778e60582854 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 - 2 - 1 - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - - - urn:smpte:ul:060e2b34.04010101.0d010201.01010100 - - urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 - - - - - urn:uuid:c2c0a663-2426-4434-1245-5318ebab98dc - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - OpenCube - MXFTk Advanced - urn:uuid:3a4fe380-0d01-11e4-869f-3cd92b5c1dfc - 2.7.3.20150429 - - 2 - 7 - 3 - 0 - VersionReleased - - - 2 - 7 - 3 - 0 - VersionReleased - - Linux 2.6.32-279.el6.x86_64 x86_64 - 2015-05-05T09:01:04.808Z - - - 2015-05-05T09:01:04.808Z - urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 - + + urn:uuid:14d51d6b-c05d-4f06-727e-3dd49c8b2024 + 1.3 + 1 + + + urn:uuid:b3e3907d-8f68-4458-8577-b9c892c98b0d + + + urn:uuid:2e7a14c7-8f4e-46f6-b372-0b5921aeb936 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 + + + urn:uuid:946b34c7-31fa-4e4e-a8ca-6efc19056e21 + 2 + 352389120 + 24000/1001 + 0 + Picture + + + urn:uuid:34beffef-d7f5-47d2-e1c0-62f46b0839c8 + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + 1 + + + urn:uuid:15f4db27-5182-4ab3-a3ed-72f07ea11dad + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + 0 + 1 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:06661837-22c7-4efd-ab01-32c980335004 + 1 + 0 + + + urn:uuid:5693f2f6-fac9-43b0-69ea-6af2fc4b34fb + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + urn:uuid:7ec85ff1-0366-400b-9787-169acc194642 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + 24 + 0 + False + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + 24000/1001 + 0 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + + + urn:uuid:43d44909-14fa-4248-4589-f561298eae7f + urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 + 2 + + + urn:uuid:37a7f343-a8fe-4a8a-b64a-0e7d0231c9cc + 775 + 1920 + 1080 + 0 + 0 + 1920 + 1080 + 0 + 0 + 3 + + + 9 + 1 + 1 + + + 9 + 2 + 1 + + + 9 + 2 + 1 + + + + + CompLuma + 10 + + + CompColorDifferenceU + 10 + + + CompColorDifferenceV + 10 + + + CompFill + 2 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + SignalStandard_SMPTE274M + 1920 + 1080 + 0 + 0 + 0 + 0 + 0 + urn:smpte:ul:060e2b34.04010101.04010101.01020000 + urn:smpte:ul:060e2b34.04010101.04010101.02020000 + urn:smpte:ul:060e2b34.04010106.04010101.03030000 + 1 + FullFrame + 1920 + 1080 + 1920 + 1080 + 1920 + 1080 + 16/9 + + 42 + 0 + + 10 + 2 + 1 + 64 + 940 + 877 + 24000/1001 + urn:smpte:ul:060e2b34.0401010d.04010202.03010117 + + + 2015-05-05T09:01:04.808Z + 2015-05-05T09:01:04.800Z + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:43f9050f-591d-440e-977d-e72f3c038c10 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.3d77e015.99fe4545.0620925c.f3cee008 + + + urn:uuid:06a59400-f1c5-43f4-a796-8f2e27af8f34 + 2 + 0 + 24000/1001 + 0 + + + urn:uuid:1ea37b55-84d8-4370-eaf1-33f4be590e98 + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + + + urn:uuid:b5354206-c72a-43bb-6fd2-c3935bd74d19 + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + 0 + 1 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 + 2 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + 1 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + Picture + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:19a0e9e8-d050-4c52-521d-942dbdd1a482 + 1 + 0 + + + urn:uuid:2d54e023-1d11-4e9b-fd46-87eed516140b + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + urn:uuid:dea8861b-05d2-47cc-5647-7fcda40cf66d + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + 24 + 0 + False + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + 24000/1001 + 0 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + 2015-05-05T09:01:04.808Z + 2015-05-05T09:01:04.800Z + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + + + urn:uuid:eaa03cfd-9f4a-4e31-3c1c-778e60582854 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 + 2 + 1 + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + + + urn:smpte:ul:060e2b34.04010101.0d010201.01010100 + + urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 + + + + + urn:uuid:c2c0a663-2426-4434-1245-5318ebab98dc + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + OpenCube + MXFTk Advanced + urn:uuid:3a4fe380-0d01-11e4-869f-3cd92b5c1dfc + 2.7.3.20150429 + + 2 + 7 + 3 + 0 + VersionReleased + + + 2 + 7 + 3 + 0 + VersionReleased + + Linux 2.6.32-279.el6.x86_64 x86_64 + 2015-05-05T09:01:04.808Z + + + 2015-05-05T09:01:04.808Z + urn:uuid:ba8e2b0e-315a-4e7a-de6f-33132c75db72 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.56170a82.41c044cc.11d9568c.47d46263 + diff --git a/regxmllib/src/test/resources/reference-files/video2.xml b/src/test/resources/regxml-files/video2.xml similarity index 95% rename from regxmllib/src/test/resources/reference-files/video2.xml rename to src/test/resources/regxml-files/video2.xml index 9d3a2d1..5ebb9ac 100644 --- a/regxmllib/src/test/resources/reference-files/video2.xml +++ b/src/test/resources/regxml-files/video2.xml @@ -1,300 +1,300 @@ - - urn:uuid:68ed8c71-4a72-468b-9ed7-752caa2def1c - 2015-05-19T08:52:08.328Z - 1.3 - - - Rohde and Schwarz DVS GmbH - Clipster - 5.10.0.0 - - 5 - 10 - 0 - 0 - VersionReleased - - - 1 - 2 - 0 - 19 - VersionBeta - - Windows Server 2003 S (64-bit) - 2015-05-19T08:52:08.328Z - urn:uuid:29bcbbc9-0d33-5653-ace4-685a327d3c50 - urn:uuid:3ae949c9-2d4c-46f1-aeeb-8b9fe3070290 - urn:uuid:b790ec60-0bdb-4726-a82f-d81b64ebf744 - - - - urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 - - - - - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.9cf44ea7.c45547c1.b90f2a38.d22600f7 - 2015-05-19T08:52:08.328Z - 2015-05-19T08:52:08.328Z - - - Timecode track - 0 - 0 - 24/1 - 1 - - - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - 24 - False - 0 - 1 - urn:uuid:9a897e7a-cddc-47af-93cc-5f97d805266f - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - - - urn:uuid:13a43c94-76e0-427d-b7b9-7691b853eac1 - - - urn:uuid:ee19109a-ecc3-4deb-883a-369dbf603384 - - - MP Picture track - 0 - 0 - 24/1 - 2 - - - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - 1 - - - 1 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab - 2 - 0 - urn:uuid:0c3906da-7e7e-4e72-b590-b41d2c3b29e0 - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - - - urn:uuid:8a8659fa-dfcf-4ff2-9ef7-e150897e433d - - - urn:uuid:88b03d81-2db4-471c-bc4b-dfb11ff21694 - - - urn:uuid:2b9025eb-9bb0-404e-9287-1a1ebd11b27b - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab - 2015-05-19T08:52:08.328Z - 2015-05-19T08:52:08.328Z - - - Timecode track - 0 - 0 - 24/1 - 1 - - - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - 1 - - - 24 - False - 0 - 1 - urn:uuid:dbeb4e20-6da3-4a5c-b8c8-74eda3a20980 - urn:smpte:ul:060e2b34.04010101.01030201.01000000 - - - urn:uuid:f0d6d0ac-f159-4cc8-bb90-1101f20b72e0 - - - urn:uuid:dfd53269-9033-4c66-a394-cc5015f4bc45 - - - FP Picture track - 352389120 - 0 - 24/1 - 2 - - - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - 1 - - - 1 - urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 - 0 - 0 - urn:uuid:f9f8435e-6258-4540-a1cf-7acde882c285 - urn:smpte:ul:060e2b34.04010101.01030202.01000000 - - - urn:uuid:b2531312-e2ec-403d-b43d-9c39d76f5da0 - - - urn:uuid:0d3b1ad9-6588-435e-819a-aa7ed983433c - - - urn:uuid:a7e42682-bac3-4cdd-993a-75f1e411f0f7 - - - - - CompRed - 10 - - - CompGreen - 10 - - - CompBlue - 10 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - 0 - 1023 - ScanningDirection_LeftToRightTopToBottom - 24/1 - FullFrame - 1920 - 1080 - 1920 - 1080 - 0 - 0 - 1920 - 1080 - 0 - 0 - - 42 - 0 - - urn:smpte:ul:060e2b34.0401010d.04010202.03010113 - 16/9 - urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 - urn:smpte:ul:060e2b34.04010101.04010101.01020000 - urn:smpte:ul:060e2b34.04010106.04010101.03030000 - - - 259 - 1920 - 1080 - 0 - 0 - 1920 - 1080 - 0 - 0 - 3 - - - 9 - 1 - 1 - - - 9 - 1 - 1 - - - 9 - 1 - 1 - - - 01040001010503030000778888888888 - - - CompRed - 10 - - - CompGreen - 10 - - - CompBlue - 10 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - CompNull - 0 - - - urn:uuid:19d9993c-7306-41dc-93a9-e923423b02de - - - urn:uuid:c060a2b0-b5d7-4cc9-8348-10b330da89fc - 2 - - - - - - - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab - 1 - 2 - urn:uuid:886d0ee6-619d-4ce8-94e9-74e76f44c55e - - - urn:uuid:f291fed3-f579-461e-aeec-a71e34d1e9f4 - - - True - urn:smpte:ul:060e2b34.04010101.0d010201.01010100 - urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab - + + urn:uuid:68ed8c71-4a72-468b-9ed7-752caa2def1c + 2015-05-19T08:52:08.328Z + 1.3 + + + Rohde and Schwarz DVS GmbH + Clipster + 5.10.0.0 + + 5 + 10 + 0 + 0 + VersionReleased + + + 1 + 2 + 0 + 19 + VersionBeta + + Windows Server 2003 S (64-bit) + 2015-05-19T08:52:08.328Z + urn:uuid:29bcbbc9-0d33-5653-ace4-685a327d3c50 + urn:uuid:3ae949c9-2d4c-46f1-aeeb-8b9fe3070290 + urn:uuid:b790ec60-0bdb-4726-a82f-d81b64ebf744 + + + + urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 + + + + + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.9cf44ea7.c45547c1.b90f2a38.d22600f7 + 2015-05-19T08:52:08.328Z + 2015-05-19T08:52:08.328Z + + + Timecode track + 0 + 0 + 24/1 + 1 + + + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + 24 + False + 0 + 1 + urn:uuid:9a897e7a-cddc-47af-93cc-5f97d805266f + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + + + urn:uuid:13a43c94-76e0-427d-b7b9-7691b853eac1 + + + urn:uuid:ee19109a-ecc3-4deb-883a-369dbf603384 + + + MP Picture track + 0 + 0 + 24/1 + 2 + + + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + 1 + + + 1 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab + 2 + 0 + urn:uuid:0c3906da-7e7e-4e72-b590-b41d2c3b29e0 + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + + + urn:uuid:8a8659fa-dfcf-4ff2-9ef7-e150897e433d + + + urn:uuid:88b03d81-2db4-471c-bc4b-dfb11ff21694 + + + urn:uuid:2b9025eb-9bb0-404e-9287-1a1ebd11b27b + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab + 2015-05-19T08:52:08.328Z + 2015-05-19T08:52:08.328Z + + + Timecode track + 0 + 0 + 24/1 + 1 + + + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + 1 + + + 24 + False + 0 + 1 + urn:uuid:dbeb4e20-6da3-4a5c-b8c8-74eda3a20980 + urn:smpte:ul:060e2b34.04010101.01030201.01000000 + + + urn:uuid:f0d6d0ac-f159-4cc8-bb90-1101f20b72e0 + + + urn:uuid:dfd53269-9033-4c66-a394-cc5015f4bc45 + + + FP Picture track + 352389120 + 0 + 24/1 + 2 + + + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + 1 + + + 1 + urn:smpte:umid:00000000.00000000.00000000.00000000.00000000.00000000.00000000.00000000 + 0 + 0 + urn:uuid:f9f8435e-6258-4540-a1cf-7acde882c285 + urn:smpte:ul:060e2b34.04010101.01030202.01000000 + + + urn:uuid:b2531312-e2ec-403d-b43d-9c39d76f5da0 + + + urn:uuid:0d3b1ad9-6588-435e-819a-aa7ed983433c + + + urn:uuid:a7e42682-bac3-4cdd-993a-75f1e411f0f7 + + + + + CompRed + 10 + + + CompGreen + 10 + + + CompBlue + 10 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + 0 + 1023 + ScanningDirection_LeftToRightTopToBottom + 24/1 + FullFrame + 1920 + 1080 + 1920 + 1080 + 0 + 0 + 1920 + 1080 + 0 + 0 + + 42 + 0 + + urn:smpte:ul:060e2b34.0401010d.04010202.03010113 + 16/9 + urn:smpte:ul:060e2b34.04010107.0d010301.020c0100 + urn:smpte:ul:060e2b34.04010101.04010101.01020000 + urn:smpte:ul:060e2b34.04010106.04010101.03030000 + + + 259 + 1920 + 1080 + 0 + 0 + 1920 + 1080 + 0 + 0 + 3 + + + 9 + 1 + 1 + + + 9 + 1 + 1 + + + 9 + 1 + 1 + + + 01040001010503030000778888888888 + + + CompRed + 10 + + + CompGreen + 10 + + + CompBlue + 10 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + CompNull + 0 + + + urn:uuid:19d9993c-7306-41dc-93a9-e923423b02de + + + urn:uuid:c060a2b0-b5d7-4cc9-8348-10b330da89fc + 2 + + + + + + + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab + 1 + 2 + urn:uuid:886d0ee6-619d-4ce8-94e9-74e76f44c55e + + + urn:uuid:f291fed3-f579-461e-aeec-a71e34d1e9f4 + + + True + urn:smpte:ul:060e2b34.04010101.0d010201.01010100 + urn:smpte:umid:060a2b34.01010105.01010f20.13000000.483e324f.531f424b.b25fc8bb.39d540ab +